├── example
├── img
│ ├── ball.png
│ ├── disc.png
│ ├── grid.png
│ ├── circle.png
│ └── smokeparticle.png
├── index.html
├── sample-data
│ ├── cities.json
│ ├── orism.json
│ ├── streams.json
│ └── sample1.json
└── example2.html
├── webpack.config.js
├── package.json
├── LICENSE
├── .gitignore
└── README.md
/example/img/ball.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcanter/aframe-scatterplot/HEAD/example/img/ball.png
--------------------------------------------------------------------------------
/example/img/disc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcanter/aframe-scatterplot/HEAD/example/img/disc.png
--------------------------------------------------------------------------------
/example/img/grid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcanter/aframe-scatterplot/HEAD/example/img/grid.png
--------------------------------------------------------------------------------
/example/img/circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcanter/aframe-scatterplot/HEAD/example/img/circle.png
--------------------------------------------------------------------------------
/example/img/smokeparticle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/zcanter/aframe-scatterplot/HEAD/example/img/smokeparticle.png
--------------------------------------------------------------------------------
/webpack.config.js:
--------------------------------------------------------------------------------
1 | const path = require('path');
2 | const webpack = require('webpack');
3 |
4 | module.exports = {
5 | context: path.resolve(__dirname, './build'),
6 | entry: {
7 | app: './index.js',
8 | },
9 | output: {
10 | path: path.resolve(__dirname, './dist'),
11 | filename: 'a-scatterplot.min.js',
12 | },
13 | module: {
14 | loaders: [
15 | { test: /\.(jpe?g|gif|png|svg|woff|ttf|wav|mp3)$/, loader: "file-loader" }
16 | ]
17 | },
18 | plugins:[
19 | new webpack.DefinePlugin({
20 | 'process.env.NODE_ENV': JSON.stringify('production')
21 | })
22 | ]
23 | };
24 |
--------------------------------------------------------------------------------
/example/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | AFrame Scatterplot
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "aframe-scatterplot",
3 | "version": "1.0.3",
4 | "description": "AFrame JSON data scatterplot component",
5 | "main": "./dist/a-scatterplot.min.js",
6 | "directories": {
7 | "example": "example"
8 | },
9 | "scripts": {
10 | "test": "echo \"Error: no test specified\" && exit 1"
11 | },
12 | "repository": {
13 | "type": "git",
14 | "url": "git+https://zcanter@github.com/zcanter/aframe-scatterplot.git"
15 | },
16 | "keywords": [
17 | "aframe",
18 | "webvr",
19 | "datavis"
20 | ],
21 | "author": "Zac Canter (https://github.com/zcanter)",
22 | "license": "MIT",
23 | "bugs": {
24 | "url": "https://github.com/zcanter/aframe-scatterplot/issues"
25 | },
26 | "homepage": "https://github.com/zcanter/aframe-scatterplot#readme",
27 | "devDependencies": {
28 | "json-loader": "^0.5.4",
29 | "webpack": "^2.4.1"
30 | },
31 | "dependencies": {
32 | "load-bmfont": "^1.3.0",
33 | "object-assign": "^4.1.1",
34 | "three-bmfont-text": "^2.2.1"
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Zac Canter
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 |
6 | # Runtime data
7 | pids
8 | *.pid
9 | *.seed
10 |
11 | # Directory for instrumented libs generated by jscoverage/JSCover
12 | lib-cov
13 |
14 | # Coverage directory used by tools like istanbul
15 | coverage
16 |
17 | # nyc test coverage
18 | .nyc_output
19 |
20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21 | .grunt
22 |
23 | # node-waf configuration
24 | .lock-wscript
25 |
26 | # Compiled binary addons (http://nodejs.org/api/addons.html)
27 | build/Release
28 |
29 | # Dependency directories
30 | node_modules
31 | jspm_packages
32 |
33 | # Optional npm cache directory
34 | .npm
35 |
36 | # Optional REPL history
37 | .node_repl_history
38 |
39 | # Created by https://www.gitignore.io/api/osx,sublimetext
40 |
41 | ### OSX ###
42 | *.DS_Store
43 | .AppleDouble
44 | .LSOverride
45 |
46 | # Icon must end with two \r
47 | Icon
48 |
49 |
50 | # Thumbnails
51 | ._*
52 |
53 | # Files that might appear in the root of a volume
54 | .DocumentRevisions-V100
55 | .fseventsd
56 | .Spotlight-V100
57 | .TemporaryItems
58 | .Trashes
59 | .VolumeIcon.icns
60 | .com.apple.timemachine.donotpresent
61 |
62 | # Directories potentially created on remote AFP share
63 | .AppleDB
64 | .AppleDesktop
65 | Network Trash Folder
66 | Temporary Items
67 | .apdisk
68 |
69 | ### SublimeText ###
70 | # cache files for sublime text
71 | *.tmlanguage.cache
72 | *.tmPreferences.cache
73 | *.stTheme.cache
74 |
75 | # workspace files are user-specific
76 | *.sublime-workspace
77 |
78 | # project files should be checked into the repository, unless a significant
79 | # proportion of contributors will probably not be using SublimeText
80 | # *.sublime-project
81 |
82 | # sftp configuration file
83 | sftp-config.json
84 |
85 | # Package control specific files
86 | Package Control.last-run
87 | Package Control.ca-list
88 | Package Control.ca-bundle
89 | Package Control.system-ca-bundle
90 | Package Control.cache/
91 | Package Control.ca-certs/
92 | Package Control.merged-ca-bundle
93 | Package Control.user-ca-bundle
94 | oscrypto-ca-bundle.crt
95 | bh_unicode_properties.cache
96 |
97 | # Sublime-github package stores a github token in this file
98 | # https://packagecontrol.io/packages/sublime-github
99 | GitHub.sublime-settings
100 |
101 | # End of https://www.gitignore.io/api/osx,sublimetext
102 |
--------------------------------------------------------------------------------
/example/sample-data/cities.json:
--------------------------------------------------------------------------------
1 | [{"City": "Buenos Aires", "Area": 700, "Pop 1980": 9918, "Pop 1990": 11448, "Pop 2000": 12822, "Growth": 1.399999976, "Food": 40, "PersRoom": 1.299999952, "Water": 80, "Elec": 91, "Phones": 14, "Vehicles": 1000 }, {"City": "Dhaka", "Area": 100, "Pop 1980": 3290, "Pop 1990": 6578, "Pop 2000": 11511, "Growth": 7.199999809, "Food": 63, "PersRoom": 2.400000095, "Water": 60, "Elec": 85, "Phones": 2, "Vehicles": 600 }, {"City": "Rio de Janeiro", "Area": 650, "Pop 1980": 8789, "Pop 1990": 10948, "Pop 2000": 12162, "Growth": 2.200000048, "Food": 26, "PersRoom": 0.800000012, "Water": 86, "Elec": 98, "Phones": 8, "Vehicles": 4000 }, {"City": "Sao Paolo", "Area": 800, "Pop 1980": 12101, "Pop 1990": 18119, "Pop 2000": 22552, "Growth": 4.099999905, "Food": 50, "PersRoom": 0.800000012, "Water": 100, "Elec": 100, "Phones": 16, "Vehicles": 4000 }, {"City": "Beijing", "Area": 1680, "Pop 1980": 9029, "Pop 1990": 10867, "Pop 2000": 14366, "Growth": 1.899999976, "Food": 52, "PersRoom": 1.200000048, "Water": 88, "Elec": 90, "Phones": 2, "Vehicles": 308 }, {"City": "Shanghai", "Area": 630, "Pop 1980": 11739, "Pop 1990": 13447, "Pop 2000": 17407, "Growth": 1.399999976, "Food": 55, "PersRoom": 2, "Water": 95, "Elec": 95, "Phones": 4, "Vehicles": 148 }, {"City": "Tianjin", "Area": 400, "Pop 1980": 7268, "Pop 1990": 9249, "Pop 2000": 12508, "Growth": 2.400000095, "Food": 52, "PersRoom": 1.299999952, "Water": 80, "Elec": 84, "Phones": 4, "Vehicles": 200 }, {"City": "Cairo", "Area": 21.39999962, "Pop 1980": 6852, "Pop 1990": 8633, "Pop 2000": 10761, "Growth": 2.299999952, "Food": 47, "PersRoom": 1.5, "Water": 91, "Elec": 98, "Phones": 4, "Vehicles": 939 }, {"City": "Bombay", "Area": 60, "Pop 1980": 8067, "Pop 1990": 12223, "Pop 2000": 18142, "Growth": 4.199999809, "Food": 57, "PersRoom": 4.199999809, "Water": 92, "Elec": 78, "Phones": 5, "Vehicles": 588 }, {"City": "Calcutta", "Area": 130, "Pop 1980": 9030, "Pop 1990": 10741, "Pop 2000": 12675, "Growth": 1.799999952, "Food": 60, "PersRoom": 3, "Water": 51, "Elec": 63, "Phones": 2, "Vehicles": 500 }, {"City": "Delhi", "Area": 59.09999847, "Pop 1980": 5559, "Pop 1990": 8171, "Pop 2000": 11692, "Growth": 3.900000095, "Food": 40, "PersRoom": 3.099999905, "Water": 50, "Elec": 81, "Phones": 5, "Vehicles": 1660 }, {"City": "Jakarta", "Area": 59, "Pop 1980": 5985, "Pop 1990": 9206, "Pop 2000": 13380, "Growth": 4.400000095, "Food": 45, "PersRoom": 3.400000095, "Water": 75, "Elec": 94, "Phones": 3, "Vehicles": 1380 }, {"City": "Osaka", "Area": 200, "Pop 1980": 9990, "Pop 1990": 10482, "Pop 2000": 10601, "Growth": 0.5, "Food": 18, "PersRoom": 0.600000024, "Water": 96, "Elec": 100, "Phones": 42, "Vehicles": 4400 }, {"City": "Tokyo", "Area": 216, "Pop 1980": 21854, "Pop 1990": 25013, "Pop 2000": 27956, "Growth": 1.399999976, "Food": 18, "PersRoom": 0.899999976, "Water": 100, "Elec": 100, "Phones": 44, "Vehicles": 4400 }, {"City": "Seoul", "Area": 165, "Pop 1980": 8283, "Pop 1990": 10979, "Pop 2000": 12949, "Growth": 2.900000095, "Food": 34, "PersRoom": 2, "Water": 100, "Elec": 100, "Phones": 22, "Vehicles": 2660 }, {"City": "Mexico City", "Area": 250, "Pop 1980": 13888, "Pop 1990": 15085, "Pop 2000": 16190, "Growth": 0.800000012, "Food": 41, "PersRoom": 1.899999976, "Water": 92, "Elec": 97, "Phones": 6, "Vehicles": 2500 }, {"City": "Lagos", "Area": 40, "Pop 1980": 4385, "Pop 1990": 7742, "Pop 2000": 13480, "Growth": 5.800000191, "Food": 58, "PersRoom": 5.800000191, "Water": 47, "Elec": 53, "Phones": 1, "Vehicles": 500 }, {"City": "Karachi", "Area": 353, "Pop 1980": 5023, "Pop 1990": 7943, "Pop 2000": 11895, "Growth": 4.699999809, "Food": 43, "PersRoom": 3.299999952, "Water": 66, "Elec": 84, "Phones": 2, "Vehicles": 650 }, {"City": "Manila", "Area": 64, "Pop 1980": 5966, "Pop 1990": 8882, "Pop 2000": 12582, "Growth": 4.099999905, "Food": 38, "PersRoom": 3, "Water": 89, "Elec": 93, "Phones": 9, "Vehicles": 510 }, {"City": "Los Angeles", "Area": 1660, "Pop 1980": 9523, "Pop 1990": 11456, "Pop 2000": 13151, "Growth": 1.899999976, "Food": 12, "PersRoom": 0.5, "Water": 91, "Elec": 98, "Phones": 35, "Vehicles": 8000 }, {"City": "New York", "Area": 359, "Pop 1980": 15601, "Pop 1990": 16056, "Pop 2000": 16645, "Growth": 0.300000012, "Food": 16, "PersRoom": 0.5, "Water": 99, "Elec": 100, "Phones": 56, "Vehicles": 1780 } ]
--------------------------------------------------------------------------------
/example/example2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Example 2 for a-scatterplot
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
25 |
26 |
27 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
84 |
85 |
86 |
87 |
88 |
89 |
104 |
105 |
106 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
142 |
143 |
144 |
152 |
153 |
154 |
155 |
156 |
157 |
Preparing scene...
158 |
159 |
164 |
165 |
166 |
189 |
190 |
191 |
192 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # AFrame - Scatterplot
2 |
3 | ### Introduction
4 |
5 | An all-purpose data visualization component for the [AFrame](https://aframe.io/) WebVR Framework.
6 |
7 | Check out the example drag and drop application: https://zcanter.github.io/vr-scatterplot/
8 |
9 | There is also a full example, with orbit-cam, in ./examples/example2.html
10 |
11 | 
12 |
13 | #### Browser Installation
14 |
15 | Install and use by directly including the [browser file](dist):
16 |
17 | You must also include a link the [D3](https://d3js.org/) JavaScript data visualization framework.
18 |
19 | ```html
20 |
21 | My A-Frame Scene
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | ```
33 |
34 | #### NPM Installation
35 |
36 | Install via NPM:
37 |
38 | ```bash
39 | npm install aframe
40 | npm install d3
41 | npm install aframe-scatterplot
42 | ```
43 |
44 | Then register and use.
45 |
46 | ```js
47 | require('aframe');
48 | require('d3');
49 | require('aframe-scatterplot');
50 | ```
51 |
52 | ### Data Formatting
53 |
54 | Datasets should be formatted as follows:
55 |
56 |
57 | ```javascript
58 | [
59 | {
60 | // Data Point
61 | "Field1": 13.90738679789567,
62 | "Field2": 11.77935227940546,
63 | "Field3": 12.02052097080796,
64 | "Field4": 11.31274091176219,
65 | "Field5": 14.13415151546462,
66 | },
67 | {
68 | // Data Point
69 | "Field1": 12.29829187876160,
70 | "Field2": 10.12398967761787,
71 | "Field3": 16.81298749861520,
72 | "Field4": 13.92371645984898,
73 | "Field5": 11.35138647618786,
74 | },
75 | {...},
76 | {...},
77 | ]
78 | ```
79 |
80 | Example (Sea Surface Temperature 1km resolution):
81 |
82 | ```javascript
83 | [
84 | {
85 | "lat":-80,
86 | "lon":-180,
87 | "val":-108
88 | },
89 | {
90 | "lat":-80,
91 | "lon":-179,
92 | "val":-103
93 | },
94 | {...},
95 | {...},
96 | ]
97 | ```
98 |
99 | *How can I format my data in this way?*
100 |
101 | The easiest way to do this is to get a CSV of your dataset and use the online CSV to JSON conversion tool [convertcsv](http://www.convertcsv.com/csv-to-json.htm). If you are a programmer you can use your favorite language to do so as well. Most popular programming languages have JSON writing capabilities of some sort.
102 |
103 | *How can I get a CSV export of my data?*
104 |
105 | The easiest way to get a CSV export is to open your data in Excel or Google Sheets and export as it a CSV file. You can also do this programmatically in your favorite language.
106 |
107 | *Can I only use geospatial data?*
108 |
109 | No, you can use non-geospatial data as long as it is formatted in the style shown above. It is important to note though that if two spacial dimensions share a unit of measurement (i.e. x and y dimensions are both in kelvin) you should specify this in the relationship option (detailed in API below).
110 |
111 | *How many fields can I have?*
112 |
113 | You may have as many fields as you like, but note you can only visualize three spacial dimensions and one color mapped dimension at any given time.
114 |
115 | *How many points can my dataset have?*
116 |
117 | We have experimented with over 5 million data points with no problems.
118 |
119 | *Do I need to normalize or scale my values?*
120 |
121 | No, the a-scatterplot component will do that for you programmatically. It is totally fine for you to leave the values at their original readings.
122 |
123 | *Where can I find example data?*
124 |
125 | Example datasets can be found [here](https://github.com/zcanter/aframe-scatterplot/tree/master/example/sample-data).
126 |
127 | *I'm confused mapping my X/Y/Z axis data to Aframe's X/Y/Z space*
128 |
129 | AFrame's coordinate system starts X,Y at the lower lefthand corner, and Z values increasing toward the camera. The scatterplot component uses this axis system.
130 | Further complicating this is the fact that the title and color bar are oriented relative to the Z axis in AFrame space, not to the X axis as you normally expect in a scatterplot. This is because the plot was initially designed for use with geospatial data in which X and Y values are usually latitude and longitude.
131 |
132 | Therefore, a nice initial setting for the axes mappings is:
133 | ```
134 | X axis (left/right on screen): Your Y axis values
135 | Z axis (toward camera): your X-axis values
136 | Y axis (up/down on screen): Your Z values
137 | ```
138 | So the component attributes will be like
139 |
140 | x="y" y="z" z="x" val="z" xlabel="My Y Axis" ylabel="My Z axis" zlabel="My X axis"
141 |
142 | and add
143 |
144 | rotation="0 90 0"
145 |
146 | to pivot the whole thing so that the title and color bar are placed correctly.
147 |
148 | If your X and Y values have the scame scale, add
149 |
150 | relationship="zx"
151 |
152 | If you want to make the vertical hieght shorter than the X/Y size, set
153 |
154 | scale="1 0.5 1
155 |
156 | Setting a nice location for an orbit-controls lookat target is a bit tricky, but see example2.html for a working example.
157 |
158 | ### API
159 |
160 | | Property | Example | Description | Default Value |
161 | | ---------- | ----------- | ------------- | ------------- |
162 | | src | url(data.json) | The path to the data set | none |
163 | | title | Sea Surface Temperature | Title of the dataset | undefined
164 | | x | lat | X dimension from field name | undefined |
165 | | y | val | Y dimension from field name | undefined |
166 | | z | lon | Z dimension from field name | undefined |
167 | | s | size | Point size from field name | undefined |
168 | | val | val | Color mapped dimension from field name | undefined |
169 | | colorpreset | jet | Name of the color map preset | jet |
170 | | fillval | -32768, 4506 | Number (or numbers) representing fill values/ignored values separated by comma | none |
171 | | relationship | xz | Dimensions that share units of measurements | none |
172 | | pointSize | 3.5 | Size of the rendered data point | 1 |
173 | | pointcolor | "rgb(255,0,0)" | Color all the points with the same color. If specified, colorpreset is ignored. This should be a string that is parsable by the THREE.Color() function | [] |
174 | | pointsprite | dist/img/ball.png | URL of the image to use to render each point. If you do not specify point sizes, by default this component will use the THREE.PointMaterial to render the points as pixels, not sprites. If you specify point sizes or specify this sprite | dist/img/ball.png |
175 | | raw | [{lat: -79, lon: 180, val: 103},...] | The raw data in a JS object array | none |
176 | | xfill | -45, 63 | Fill or ignored values in X dimension | none|
177 | | yfill | -78 | Fill or ignored values in Y dimension | none|
178 | | zfill | 12 | Fill or ignored values in Z dimension | none|
179 | | xLimit | 0.7 | Limit of relative X dimension width in 3D space | 1|
180 | | yLimit | 0.5 | Limit of relative Y dimension width in 3D space | 1|
181 | | zLimit | 0.2 | Limit of relative Z dimension width in 3D space | 1|
182 | | xFlip | true | Invert the X shape | false |
183 | | yFlip | true | Invert the Y shape | false |
184 | | zFlip | true | Invert the Z shape | false |
185 | | xlabel | "aframe X / my Y" | label along the X axis (see discussion about Axes) | none |
186 | | ylabel | "aframe Y / my Z" | label along the Y axis (see discussion about Axes) | none |
187 | | zlabel | "aframe Z / my X" | label along the Z axis (see discussion about Axes) | none |
188 | | numdecimalplaces | 1 | Number of decimal points to show in axis numbering and color bar | 4 |
189 | | showcolorbar | false | Show the color bar? | true|
190 | | nochrome | true | Turn off rendering of axes, tics, title, and color bar? Useful if you want to create a second scatterplot directly on top of another one. | false |
191 | | showTicks | false | Show tick marks and labels? | true |
192 | | showTickLabels | false | Show tick mark labels? | true |
193 | | textColor | #F00 | Color for text | #000 |
194 | | ycage | true | Draw vertical frame around plot | false |
195 | | showFloor | true | Draw a floor on the graph | false |
196 | | floorMaterialParams | | Parameters passed to the foor material | "color: #fff; opacity:0.5; transparent:true;" |
197 |
198 |
199 |
200 |
201 | ### Questions or Issues?
202 |
203 | Feel free to open a GitHub Issue or to contact me directly at zrcanter [-at-] gmail
204 |
205 | ### Special Thanks
206 |
207 | Thank you to the NASA-JPL Instrument Data Systems VR working group for helping in the creation of this tool. Also thanks to [Dan Moran](https://github.com/morandd) for his awesome additions to this project! Check out his [AFrame-Heatmap](https://github.com/morandd/aframe-heatmap3d/) visualizer as well!
208 |
--------------------------------------------------------------------------------
/example/sample-data/orism.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "Row": 36,
4 | "Col": 24,
5 | "Lat": 41.088,
6 | "Lon": -119.023,
7 | "Elev": 1544,
8 | "TJan1x": -0.6,
9 | "TJul1x": 15.8,
10 | "PJan1x": 72,
11 | "PJul1x": 23,
12 | "TJan2x": 3.3,
13 | "TJul2x": 18.7,
14 | "PJan2x": 76,
15 | "PJul2x": 34
16 | },
17 | {
18 | "Row": 36,
19 | "Col": 25,
20 | "Lat": 41.217,
21 | "Lon": -118.304,
22 | "Elev": 1515,
23 | "TJan1x": -0.8,
24 | "TJul1x": 16.7,
25 | "PJan1x": 71,
26 | "PJul1x": 14,
27 | "TJan2x": 3.2,
28 | "TJul2x": 19.6,
29 | "PJan2x": 76,
30 | "PJul2x": 27
31 | },
32 | {
33 | "Row": 36,
34 | "Col": 26,
35 | "Lat": 41.34,
36 | "Lon": -117.581,
37 | "Elev": 1565,
38 | "TJan1x": -1.3,
39 | "TJul1x": 16.5,
40 | "PJan1x": 69,
41 | "PJul1x": 12,
42 | "TJan2x": 2.6,
43 | "TJul2x": 19.4,
44 | "PJan2x": 75,
45 | "PJul2x": 19
46 | },
47 | {
48 | "Row": 36,
49 | "Col": 27,
50 | "Lat": 41.459,
51 | "Lon": -116.855,
52 | "Elev": 1675,
53 | "TJan1x": -2.3,
54 | "TJul1x": 15.1,
55 | "PJan1x": 73,
56 | "PJul1x": 18,
57 | "TJan2x": 1.7,
58 | "TJul2x": 18.1,
59 | "PJan2x": 72,
60 | "PJul2x": 26
61 | },
62 | {
63 | "Row": 36,
64 | "Col": 28,
65 | "Lat": 41.574,
66 | "Lon": -116.127,
67 | "Elev": 1780,
68 | "TJan1x": -3.3,
69 | "TJul1x": 14.4,
70 | "PJan1x": 71,
71 | "PJul1x": 60,
72 | "TJan2x": 0.9,
73 | "TJul2x": 17.4,
74 | "PJan2x": 69,
75 | "PJul2x": 53
76 | },
77 | {
78 | "Row": 37,
79 | "Col": 20,
80 | "Lat": 41.061,
81 | "Lon": -122.07,
82 | "Elev": 1165,
83 | "TJan1x": 1.8,
84 | "TJul1x": 16.6,
85 | "PJan1x": 163,
86 | "PJul1x": 33,
87 | "TJan2x": 5.5,
88 | "TJul2x": 18.8,
89 | "PJan2x": 175,
90 | "PJul2x": 45
91 | },
92 | {
93 | "Row": 37,
94 | "Col": 21,
95 | "Lat": 41.21,
96 | "Lon": -121.357,
97 | "Elev": 1405,
98 | "TJan1x": 0.3,
99 | "TJul1x": 15.3,
100 | "PJan1x": 130,
101 | "PJul1x": 44,
102 | "TJan2x": 4.3,
103 | "TJul2x": 17.5,
104 | "PJan2x": 120,
105 | "PJul2x": 83
106 | },
107 | {
108 | "Row": 37,
109 | "Col": 22,
110 | "Lat": 41.355,
111 | "Lon": -120.641,
112 | "Elev": 1584,
113 | "TJan1x": -0.9,
114 | "TJul1x": 14.4,
115 | "PJan1x": 89,
116 | "PJul1x": 46,
117 | "TJan2x": 3.4,
118 | "TJul2x": 17.1,
119 | "PJan2x": 82,
120 | "PJul2x": 70
121 | },
122 | {
123 | "Row": 37,
124 | "Col": 23,
125 | "Lat": 41.494,
126 | "Lon": -119.922,
127 | "Elev": 1655,
128 | "TJan1x": -1.6,
129 | "TJul1x": 14.1,
130 | "PJan1x": 80,
131 | "PJul1x": 37,
132 | "TJan2x": 2.8,
133 | "TJul2x": 16.8,
134 | "PJan2x": 80,
135 | "PJul2x": 65
136 | },
137 | {
138 | "Row": 37,
139 | "Col": 24,
140 | "Lat": 41.629,
141 | "Lon": -119.199,
142 | "Elev": 1630,
143 | "TJan1x": -1.5,
144 | "TJul1x": 14.6,
145 | "PJan1x": 79,
146 | "PJul1x": 41,
147 | "TJan2x": 2.7,
148 | "TJul2x": 17.4,
149 | "PJan2x": 81,
150 | "PJul2x": 49
151 | },
152 | {
153 | "Row": 37,
154 | "Col": 25,
155 | "Lat": 41.759,
156 | "Lon": -118.473,
157 | "Elev": 1575,
158 | "TJan1x": -1.3,
159 | "TJul1x": 15.7,
160 | "PJan1x": 76,
161 | "PJul1x": 13,
162 | "TJan2x": 2.8,
163 | "TJul2x": 18.5,
164 | "PJan2x": 76,
165 | "PJul2x": 40
166 | },
167 | {
168 | "Row": 37,
169 | "Col": 26,
170 | "Lat": 41.884,
171 | "Lon": -117.744,
172 | "Elev": 1570,
173 | "TJan1x": -1.4,
174 | "TJul1x": 15.6,
175 | "PJan1x": 78,
176 | "PJul1x": 13,
177 | "TJan2x": 2.6,
178 | "TJul2x": 18.5,
179 | "PJan2x": 75,
180 | "PJul2x": 31
181 | },
182 | {
183 | "Row": 37,
184 | "Col": 27,
185 | "Lat": 42.005,
186 | "Lon": -117.012,
187 | "Elev": 1611,
188 | "TJan1x": -2,
189 | "TJul1x": 15.1,
190 | "PJan1x": 83,
191 | "PJul1x": 17,
192 | "TJan2x": 2.1,
193 | "TJul2x": 18,
194 | "PJan2x": 71,
195 | "PJul2x": 41
196 | },
197 | {
198 | "Row": 37,
199 | "Col": 28,
200 | "Lat": 42.12,
201 | "Lon": -116.277,
202 | "Elev": 1629,
203 | "TJan1x": -2.3,
204 | "TJul1x": 15.2,
205 | "PJan1x": 76,
206 | "PJul1x": 33,
207 | "TJan2x": 1.9,
208 | "TJul2x": 18.1,
209 | "PJan2x": 77,
210 | "PJul2x": 42
211 | },
212 | {
213 | "Row": 38,
214 | "Col": 17,
215 | "Lat": 41.116,
216 | "Lon": -124.406,
217 | "Elev": 203,
218 | "TJan1x": 11.6,
219 | "TJul1x": 18.6,
220 | "PJan1x": 189,
221 | "PJul1x": 6,
222 | "TJan2x": 15.5,
223 | "TJul2x": 21.7,
224 | "PJan2x": 268,
225 | "PJul2x": 3
226 | },
227 | {
228 | "Row": 38,
229 | "Col": 18,
230 | "Lat": 41.281,
231 | "Lon": -123.699,
232 | "Elev": 641,
233 | "TJan1x": 5.7,
234 | "TJul1x": 17.1,
235 | "PJan1x": 197,
236 | "PJul1x": 17,
237 | "TJan2x": 9.4,
238 | "TJul2x": 19.7,
239 | "PJan2x": 263,
240 | "PJul2x": 35
241 | },
242 | {
243 | "Row": 38,
244 | "Col": 19,
245 | "Lat": 41.441,
246 | "Lon": -122.987,
247 | "Elev": 1013,
248 | "TJan1x": 3.4,
249 | "TJul1x": 15.9,
250 | "PJan1x": 172,
251 | "PJul1x": 30,
252 | "TJan2x": 7,
253 | "TJul2x": 18.1,
254 | "PJan2x": 198,
255 | "PJul2x": 81
256 | },
257 | {
258 | "Row": 38,
259 | "Col": 20,
260 | "Lat": 41.597,
261 | "Lon": -122.273,
262 | "Elev": 1240,
263 | "TJan1x": 1.3,
264 | "TJul1x": 15.1,
265 | "PJan1x": 150,
266 | "PJul1x": 41,
267 | "TJan2x": 5.2,
268 | "TJul2x": 17.3,
269 | "PJan2x": 158,
270 | "PJul2x": 95
271 | },
272 | {
273 | "Row": 38,
274 | "Col": 21,
275 | "Lat": 41.747,
276 | "Lon": -121.554,
277 | "Elev": 1412,
278 | "TJan1x": -0.1,
279 | "TJul1x": 14.5,
280 | "PJan1x": 117,
281 | "PJul1x": 35,
282 | "TJan2x": 4.1,
283 | "TJul2x": 16.9,
284 | "PJan2x": 119,
285 | "PJul2x": 101
286 | },
287 | {
288 | "Row": 38,
289 | "Col": 22,
290 | "Lat": 41.893,
291 | "Lon": -120.832,
292 | "Elev": 1558,
293 | "TJan1x": -0.9,
294 | "TJul1x": 14.2,
295 | "PJan1x": 92,
296 | "PJul1x": 36,
297 | "TJan2x": 3.5,
298 | "TJul2x": 16.9,
299 | "PJan2x": 89,
300 | "PJul2x": 101
301 | },
302 | {
303 | "Row": 38,
304 | "Col": 23,
305 | "Lat": 42.035,
306 | "Lon": -120.107,
307 | "Elev": 1640,
308 | "TJan1x": -1.6,
309 | "TJul1x": 13.7,
310 | "PJan1x": 79,
311 | "PJul1x": 34,
312 | "TJan2x": 2.9,
313 | "TJul2x": 16.4,
314 | "PJan2x": 71,
315 | "PJul2x": 94
316 | },
317 | {
318 | "Row": 38,
319 | "Col": 24,
320 | "Lat": 42.171,
321 | "Lon": -119.378,
322 | "Elev": 1637,
323 | "TJan1x": -1.7,
324 | "TJul1x": 13.9,
325 | "PJan1x": 76,
326 | "PJul1x": 27,
327 | "TJan2x": 2.7,
328 | "TJul2x": 16.6,
329 | "PJan2x": 71,
330 | "PJul2x": 66
331 | },
332 | {
333 | "Row": 38,
334 | "Col": 25,
335 | "Lat": 42.302,
336 | "Lon": -118.646,
337 | "Elev": 1578,
338 | "TJan1x": -1.5,
339 | "TJul1x": 15,
340 | "PJan1x": 75,
341 | "PJul1x": 17,
342 | "TJan2x": 2.8,
343 | "TJul2x": 17.6,
344 | "PJan2x": 77,
345 | "PJul2x": 54
346 | },
347 | {
348 | "Row": 38,
349 | "Col": 26,
350 | "Lat": 42.428,
351 | "Lon": -117.91,
352 | "Elev": 1521,
353 | "TJan1x": -1.2,
354 | "TJul1x": 15.2,
355 | "PJan1x": 75,
356 | "PJul1x": 15,
357 | "TJan2x": 2.9,
358 | "TJul2x": 17.9,
359 | "PJan2x": 78,
360 | "PJul2x": 49
361 | },
362 | {
363 | "Row": 38,
364 | "Col": 27,
365 | "Lat": 42.55,
366 | "Lon": -117.172,
367 | "Elev": 1480,
368 | "TJan1x": -1.1,
369 | "TJul1x": 15.8,
370 | "PJan1x": 85,
371 | "PJul1x": 16,
372 | "TJan2x": 3,
373 | "TJul2x": 18.5,
374 | "PJan2x": 84,
375 | "PJul2x": 42
376 | },
377 | {
378 | "Row": 38,
379 | "Col": 28,
380 | "Lat": 42.666,
381 | "Lon": -116.43,
382 | "Elev": 1426,
383 | "TJan1x": -1,
384 | "TJul1x": 16.4,
385 | "PJan1x": 82,
386 | "PJul1x": 17,
387 | "TJan2x": 3.1,
388 | "TJul2x": 19.2,
389 | "PJan2x": 98,
390 | "PJul2x": 32
391 | },
392 | {
393 | "Row": 39,
394 | "Col": 18,
395 | "Lat": 41.814,
396 | "Lon": -123.917,
397 | "Elev": 521,
398 | "TJan1x": 6.5,
399 | "TJul1x": 17.3,
400 | "PJan1x": 178,
401 | "PJul1x": 23,
402 | "TJan2x": 10.2,
403 | "TJul2x": 20.1,
404 | "PJan2x": 246,
405 | "PJul2x": 39
406 | },
407 | {
408 | "Row": 39,
409 | "Col": 19,
410 | "Lat": 41.976,
411 | "Lon": -123.2,
412 | "Elev": 905,
413 | "TJan1x": 4.1,
414 | "TJul1x": 15.9,
415 | "PJan1x": 156,
416 | "PJul1x": 27,
417 | "TJan2x": 8,
418 | "TJul2x": 18.5,
419 | "PJan2x": 192,
420 | "PJul2x": 59
421 | },
422 | {
423 | "Row": 39,
424 | "Col": 20,
425 | "Lat": 42.133,
426 | "Lon": -122.479,
427 | "Elev": 1179,
428 | "TJan1x": 1.6,
429 | "TJul1x": 14.6,
430 | "PJan1x": 134,
431 | "PJul1x": 39,
432 | "TJan2x": 5.6,
433 | "TJul2x": 17.1,
434 | "PJan2x": 154,
435 | "PJul2x": 71
436 | },
437 | {
438 | "Row": 39,
439 | "Col": 21,
440 | "Lat": 42.285,
441 | "Lon": -121.755,
442 | "Elev": 1394,
443 | "TJan1x": 0,
444 | "TJul1x": 13.9,
445 | "PJan1x": 117,
446 | "PJul1x": 44,
447 | "TJan2x": 4.1,
448 | "TJul2x": 16.4,
449 | "PJan2x": 128,
450 | "PJul2x": 122
451 | },
452 | {
453 | "Row": 39,
454 | "Col": 22,
455 | "Lat": 42.432,
456 | "Lon": -121.027,
457 | "Elev": 1535,
458 | "TJan1x": -1.2,
459 | "TJul1x": 13.1,
460 | "PJan1x": 98,
461 | "PJul1x": 43,
462 | "TJan2x": 3.1,
463 | "TJul2x": 15.7,
464 | "PJan2x": 98,
465 | "PJul2x": 141
466 | },
467 | {
468 | "Row": 39,
469 | "Col": 23,
470 | "Lat": 42.575,
471 | "Lon": -120.295,
472 | "Elev": 1578,
473 | "TJan1x": -1.8,
474 | "TJul1x": 13.2,
475 | "PJan1x": 77,
476 | "PJul1x": 34,
477 | "TJan2x": 2.6,
478 | "TJul2x": 15.8,
479 | "PJan2x": 69,
480 | "PJul2x": 124
481 | },
482 | {
483 | "Row": 39,
484 | "Col": 24,
485 | "Lat": 42.712,
486 | "Lon": -119.56,
487 | "Elev": 1558,
488 | "TJan1x": -1.5,
489 | "TJul1x": 14,
490 | "PJan1x": 66,
491 | "PJul1x": 21,
492 | "TJan2x": 3,
493 | "TJul2x": 16.7,
494 | "PJan2x": 59,
495 | "PJul2x": 69
496 | },
497 | {
498 | "Row": 39,
499 | "Col": 25,
500 | "Lat": 42.845,
501 | "Lon": -118.821,
502 | "Elev": 1504,
503 | "TJan1x": -1.2,
504 | "TJul1x": 15,
505 | "PJan1x": 68,
506 | "PJul1x": 14,
507 | "TJan2x": 3.2,
508 | "TJul2x": 17.6,
509 | "PJan2x": 65,
510 | "PJul2x": 57
511 | },
512 | {
513 | "Row": 39,
514 | "Col": 26,
515 | "Lat": 42.972,
516 | "Lon": -118.08,
517 | "Elev": 1420,
518 | "TJan1x": -0.9,
519 | "TJul1x": 15.6,
520 | "PJan1x": 70,
521 | "PJul1x": 19,
522 | "TJan2x": 3.5,
523 | "TJul2x": 18.2,
524 | "PJan2x": 75,
525 | "PJul2x": 49
526 | },
527 | {
528 | "Row": 39,
529 | "Col": 27,
530 | "Lat": 43.095,
531 | "Lon": -117.335,
532 | "Elev": 1321,
533 | "TJan1x": -0.5,
534 | "TJul1x": 16.5,
535 | "PJan1x": 84,
536 | "PJul1x": 26,
537 | "TJan2x": 3.8,
538 | "TJul2x": 19.3,
539 | "PJan2x": 91,
540 | "PJul2x": 35
541 | },
542 | {
543 | "Row": 39,
544 | "Col": 28,
545 | "Lat": 43.212,
546 | "Lon": -116.587,
547 | "Elev": 1265,
548 | "TJan1x": -0.4,
549 | "TJul1x": 17.4,
550 | "PJan1x": 86,
551 | "PJul1x": 9,
552 | "TJan2x": 3.6,
553 | "TJul2x": 20.2,
554 | "PJan2x": 91,
555 | "PJul2x": 19
556 | },
557 | {
558 | "Row": 40,
559 | "Col": 18,
560 | "Lat": 42.347,
561 | "Lon": -124.139,
562 | "Elev": 375,
563 | "TJan1x": 7.3,
564 | "TJul1x": 17.6,
565 | "PJan1x": 202,
566 | "PJul1x": 27,
567 | "TJan2x": 11.2,
568 | "TJul2x": 20.6,
569 | "PJan2x": 258,
570 | "PJul2x": 49
571 | },
572 | {
573 | "Row": 40,
574 | "Col": 19,
575 | "Lat": 42.51,
576 | "Lon": -123.416,
577 | "Elev": 706,
578 | "TJan1x": 5.2,
579 | "TJul1x": 16.4,
580 | "PJan1x": 177,
581 | "PJul1x": 21,
582 | "TJan2x": 9,
583 | "TJul2x": 19.2,
584 | "PJan2x": 213,
585 | "PJul2x": 37
586 | },
587 | {
588 | "Row": 40,
589 | "Col": 20,
590 | "Lat": 42.668,
591 | "Lon": -122.69,
592 | "Elev": 1027,
593 | "TJan1x": 2.5,
594 | "TJul1x": 14.8,
595 | "PJan1x": 157,
596 | "PJul1x": 42,
597 | "TJan2x": 6.4,
598 | "TJul2x": 17.5,
599 | "PJan2x": 181,
600 | "PJul2x": 58
601 | },
602 | {
603 | "Row": 40,
604 | "Col": 21,
605 | "Lat": 42.822,
606 | "Lon": -121.959,
607 | "Elev": 1327,
608 | "TJan1x": 0.3,
609 | "TJul1x": 13.6,
610 | "PJan1x": 132,
611 | "PJul1x": 55,
612 | "TJan2x": 4.6,
613 | "TJul2x": 16.2,
614 | "PJan2x": 148,
615 | "PJul2x": 133
616 | },
617 | {
618 | "Row": 40,
619 | "Col": 22,
620 | "Lat": 42.971,
621 | "Lon": -121.225,
622 | "Elev": 1490,
623 | "TJan1x": -1.2,
624 | "TJul1x": 12.6,
625 | "PJan1x": 102,
626 | "PJul1x": 91,
627 | "TJan2x": 3.1,
628 | "TJul2x": 15.5,
629 | "PJan2x": 103,
630 | "PJul2x": 143
631 | },
632 | {
633 | "Row": 40,
634 | "Col": 23,
635 | "Lat": 43.115,
636 | "Lon": -120.487,
637 | "Elev": 1507,
638 | "TJan1x": -1,
639 | "TJul1x": 13.6,
640 | "PJan1x": 82,
641 | "PJul1x": 43,
642 | "TJan2x": 3.5,
643 | "TJul2x": 16.3,
644 | "PJan2x": 69,
645 | "PJul2x": 88
646 | },
647 | {
648 | "Row": 40,
649 | "Col": 24,
650 | "Lat": 43.254,
651 | "Lon": -119.745,
652 | "Elev": 1478,
653 | "TJan1x": -1.3,
654 | "TJul1x": 13.8,
655 | "PJan1x": 68,
656 | "PJul1x": 22,
657 | "TJan2x": 3.3,
658 | "TJul2x": 16.6,
659 | "PJan2x": 56,
660 | "PJul2x": 56
661 | },
662 | {
663 | "Row": 40,
664 | "Col": 25,
665 | "Lat": 43.387,
666 | "Lon": -119,
667 | "Elev": 1442,
668 | "TJan1x": -1.3,
669 | "TJul1x": 14.5,
670 | "PJan1x": 63,
671 | "PJul1x": 10,
672 | "TJan2x": 3.2,
673 | "TJul2x": 17.3,
674 | "PJan2x": 51,
675 | "PJul2x": 51
676 | },
677 | {
678 | "Row": 40,
679 | "Col": 26,
680 | "Lat": 43.516,
681 | "Lon": -118.252,
682 | "Elev": 1363,
683 | "TJan1x": -0.8,
684 | "TJul1x": 15.5,
685 | "PJan1x": 74,
686 | "PJul1x": 13,
687 | "TJan2x": 3.6,
688 | "TJul2x": 18.1,
689 | "PJan2x": 67,
690 | "PJul2x": 51
691 | },
692 | {
693 | "Row": 40,
694 | "Col": 27,
695 | "Lat": 43.64,
696 | "Lon": -117.5,
697 | "Elev": 1234,
698 | "TJan1x": -0.2,
699 | "TJul1x": 16.9,
700 | "PJan1x": 78,
701 | "PJul1x": 12,
702 | "TJan2x": 4,
703 | "TJul2x": 19.6,
704 | "PJan2x": 85,
705 | "PJul2x": 34
706 | },
707 | {
708 | "Row": 40,
709 | "Col": 28,
710 | "Lat": 43.758,
711 | "Lon": -116.746,
712 | "Elev": 1212,
713 | "TJan1x": -0.7,
714 | "TJul1x": 17.4,
715 | "PJan1x": 85,
716 | "PJul1x": 5,
717 | "TJan2x": 3.4,
718 | "TJul2x": 20.1,
719 | "PJan2x": 100,
720 | "PJul2x": 21
721 | },
722 | {
723 | "Row": 41,
724 | "Col": 18,
725 | "Lat": 42.879,
726 | "Lon": -124.365,
727 | "Elev": 209,
728 | "TJan1x": 8.1,
729 | "TJul1x": 18,
730 | "PJan1x": 202,
731 | "PJul1x": 25,
732 | "TJan2x": 12,
733 | "TJul2x": 21.2,
734 | "PJan2x": 256,
735 | "PJul2x": 31
736 | },
737 | {
738 | "Row": 41,
739 | "Col": 19,
740 | "Lat": 43.044,
741 | "Lon": -123.637,
742 | "Elev": 483,
743 | "TJan1x": 6.6,
744 | "TJul1x": 17.2,
745 | "PJan1x": 208,
746 | "PJul1x": 31,
747 | "TJan2x": 10.7,
748 | "TJul2x": 20,
749 | "PJan2x": 254,
750 | "PJul2x": 34
751 | },
752 | {
753 | "Row": 41,
754 | "Col": 20,
755 | "Lat": 43.204,
756 | "Lon": -122.904,
757 | "Elev": 814,
758 | "TJan1x": 3.9,
759 | "TJul1x": 15.8,
760 | "PJan1x": 175,
761 | "PJul1x": 46,
762 | "TJan2x": 7.8,
763 | "TJul2x": 18.5,
764 | "PJan2x": 200,
765 | "PJul2x": 60
766 | },
767 | {
768 | "Row": 41,
769 | "Col": 21,
770 | "Lat": 43.359,
771 | "Lon": -122.167,
772 | "Elev": 1171,
773 | "TJan1x": 1.4,
774 | "TJul1x": 14,
775 | "PJan1x": 150,
776 | "PJul1x": 70,
777 | "TJan2x": 5.3,
778 | "TJul2x": 16.6,
779 | "PJan2x": 157,
780 | "PJul2x": 118
781 | },
782 | {
783 | "Row": 41,
784 | "Col": 22,
785 | "Lat": 43.509,
786 | "Lon": -121.427,
787 | "Elev": 1379,
788 | "TJan1x": -0.5,
789 | "TJul1x": 12.7,
790 | "PJan1x": 115,
791 | "PJul1x": 67,
792 | "TJan2x": 3.6,
793 | "TJul2x": 15.4,
794 | "PJan2x": 103,
795 | "PJul2x": 112
796 | },
797 | {
798 | "Row": 41,
799 | "Col": 23,
800 | "Lat": 43.655,
801 | "Lon": -120.682,
802 | "Elev": 1414,
803 | "TJan1x": -0.7,
804 | "TJul1x": 13.4,
805 | "PJan1x": 89,
806 | "PJul1x": 50,
807 | "TJan2x": 3.7,
808 | "TJul2x": 16.1,
809 | "PJan2x": 67,
810 | "PJul2x": 66
811 | },
812 | {
813 | "Row": 41,
814 | "Col": 24,
815 | "Lat": 43.795,
816 | "Lon": -119.934,
817 | "Elev": 1414,
818 | "TJan1x": -1.2,
819 | "TJul1x": 13.8,
820 | "PJan1x": 81,
821 | "PJul1x": 33,
822 | "TJan2x": 3.3,
823 | "TJul2x": 16.5,
824 | "PJan2x": 69,
825 | "PJul2x": 52
826 | },
827 | {
828 | "Row": 41,
829 | "Col": 25,
830 | "Lat": 43.93,
831 | "Lon": -119.183,
832 | "Elev": 1427,
833 | "TJan1x": -1.1,
834 | "TJul1x": 14.2,
835 | "PJan1x": 76,
836 | "PJul1x": 27,
837 | "TJan2x": 3.4,
838 | "TJul2x": 16.9,
839 | "PJan2x": 63,
840 | "PJul2x": 54
841 | },
842 | {
843 | "Row": 41,
844 | "Col": 26,
845 | "Lat": 44.06,
846 | "Lon": -118.428,
847 | "Elev": 1393,
848 | "TJan1x": -1.6,
849 | "TJul1x": 14.2,
850 | "PJan1x": 83,
851 | "PJul1x": 25,
852 | "TJan2x": 2.7,
853 | "TJul2x": 16.8,
854 | "PJan2x": 72,
855 | "PJul2x": 82
856 | },
857 | {
858 | "Row": 41,
859 | "Col": 27,
860 | "Lat": 44.185,
861 | "Lon": -117.669,
862 | "Elev": 1284,
863 | "TJan1x": -0.9,
864 | "TJul1x": 15.9,
865 | "PJan1x": 84,
866 | "PJul1x": 14,
867 | "TJan2x": 3.3,
868 | "TJul2x": 18.6,
869 | "PJan2x": 84,
870 | "PJul2x": 64
871 | },
872 | {
873 | "Row": 41,
874 | "Col": 28,
875 | "Lat": 44.305,
876 | "Lon": -116.908,
877 | "Elev": 1286,
878 | "TJan1x": -1.7,
879 | "TJul1x": 16.3,
880 | "PJan1x": 89,
881 | "PJul1x": 9,
882 | "TJan2x": 2.5,
883 | "TJul2x": 18.9,
884 | "PJan2x": 108,
885 | "PJul2x": 46
886 | },
887 | {
888 | "Row": 41,
889 | "Col": 29,
890 | "Lat": 44.419,
891 | "Lon": -116.143,
892 | "Elev": 1577,
893 | "TJan1x": -4.2,
894 | "TJul1x": 14.4,
895 | "PJan1x": 120,
896 | "PJul1x": 25,
897 | "TJan2x": 0.1,
898 | "TJul2x": 17.1,
899 | "PJan2x": 153,
900 | "PJul2x": 76
901 | },
902 | {
903 | "Row": 42,
904 | "Col": 19,
905 | "Lat": 43.578,
906 | "Lon": -123.861,
907 | "Elev": 279,
908 | "TJan1x": 7.1,
909 | "TJul1x": 17.9,
910 | "PJan1x": 178,
911 | "PJul1x": 21,
912 | "TJan2x": 10.9,
913 | "TJul2x": 20.7,
914 | "PJan2x": 230,
915 | "PJul2x": 44
916 | },
917 | {
918 | "Row": 42,
919 | "Col": 20,
920 | "Lat": 43.739,
921 | "Lon": -123.122,
922 | "Elev": 566,
923 | "TJan1x": 5.2,
924 | "TJul1x": 17.1,
925 | "PJan1x": 165,
926 | "PJul1x": 28,
927 | "TJan2x": 9.2,
928 | "TJul2x": 19.6,
929 | "PJan2x": 200,
930 | "PJul2x": 36
931 | },
932 | {
933 | "Row": 42,
934 | "Col": 21,
935 | "Lat": 43.896,
936 | "Lon": -122.379,
937 | "Elev": 924,
938 | "TJan1x": 2.8,
939 | "TJul1x": 15.5,
940 | "PJan1x": 150,
941 | "PJul1x": 43,
942 | "TJan2x": 6.9,
943 | "TJul2x": 18,
944 | "PJan2x": 166,
945 | "PJul2x": 79
946 | },
947 | {
948 | "Row": 42,
949 | "Col": 22,
950 | "Lat": 44.048,
951 | "Lon": -121.632,
952 | "Elev": 1175,
953 | "TJan1x": 0.8,
954 | "TJul1x": 13.9,
955 | "PJan1x": 129,
956 | "PJul1x": 42,
957 | "TJan2x": 4.8,
958 | "TJul2x": 16.4,
959 | "PJan2x": 116,
960 | "PJul2x": 110
961 | },
962 | {
963 | "Row": 42,
964 | "Col": 23,
965 | "Lat": 44.194,
966 | "Lon": -120.882,
967 | "Elev": 1241,
968 | "TJan1x": 0.7,
969 | "TJul1x": 14.3,
970 | "PJan1x": 96,
971 | "PJul1x": 40,
972 | "TJan2x": 5.1,
973 | "TJul2x": 17,
974 | "PJan2x": 77,
975 | "PJul2x": 52
976 | },
977 | {
978 | "Row": 42,
979 | "Col": 24,
980 | "Lat": 44.336,
981 | "Lon": -120.127,
982 | "Elev": 1264,
983 | "TJan1x": -0.1,
984 | "TJul1x": 14.3,
985 | "PJan1x": 91,
986 | "PJul1x": 31,
987 | "TJan2x": 4.3,
988 | "TJul2x": 17,
989 | "PJan2x": 78,
990 | "PJul2x": 51
991 | },
992 | {
993 | "Row": 42,
994 | "Col": 25,
995 | "Lat": 44.472,
996 | "Lon": -119.369,
997 | "Elev": 1326,
998 | "TJan1x": -1.2,
999 | "TJul1x": 13.7,
1000 | "PJan1x": 98,
1001 | "PJul1x": 50,
1002 | "TJan2x": 3.1,
1003 | "TJul2x": 16.4,
1004 | "PJan2x": 82,
1005 | "PJul2x": 72
1006 | },
1007 | {
1008 | "Row": 42,
1009 | "Col": 26,
1010 | "Lat": 44.604,
1011 | "Lon": -118.607,
1012 | "Elev": 1366,
1013 | "TJan1x": -1.7,
1014 | "TJul1x": 13.8,
1015 | "PJan1x": 95,
1016 | "PJul1x": 61,
1017 | "TJan2x": 2.6,
1018 | "TJul2x": 16.2,
1019 | "PJan2x": 84,
1020 | "PJul2x": 106
1021 | },
1022 | {
1023 | "Row": 42,
1024 | "Col": 27,
1025 | "Lat": 44.73,
1026 | "Lon": -117.842,
1027 | "Elev": 1337,
1028 | "TJan1x": -1.3,
1029 | "TJul1x": 15,
1030 | "PJan1x": 91,
1031 | "PJul1x": 29,
1032 | "TJan2x": 3,
1033 | "TJul2x": 17.5,
1034 | "PJan2x": 94,
1035 | "PJul2x": 86
1036 | },
1037 | {
1038 | "Row": 42,
1039 | "Col": 28,
1040 | "Lat": 44.851,
1041 | "Lon": -117.073,
1042 | "Elev": 1364,
1043 | "TJan1x": -2.3,
1044 | "TJul1x": 15,
1045 | "PJan1x": 91,
1046 | "PJul1x": 26,
1047 | "TJan2x": 2,
1048 | "TJul2x": 17.6,
1049 | "PJan2x": 117,
1050 | "PJul2x": 89
1051 | },
1052 | {
1053 | "Row": 42,
1054 | "Col": 29,
1055 | "Lat": 44.966,
1056 | "Lon": -116.301,
1057 | "Elev": 1568,
1058 | "TJan1x": -3.8,
1059 | "TJul1x": 14,
1060 | "PJan1x": 117,
1061 | "PJul1x": 51,
1062 | "TJan2x": 0.5,
1063 | "TJul2x": 16.5,
1064 | "PJan2x": 141,
1065 | "PJul2x": 98
1066 | },
1067 | {
1068 | "Row": 43,
1069 | "Col": 19,
1070 | "Lat": 44.111,
1071 | "Lon": -124.09,
1072 | "Elev": 155,
1073 | "TJan1x": 9.9,
1074 | "TJul1x": 17.9,
1075 | "PJan1x": 200,
1076 | "PJul1x": 18,
1077 | "TJan2x": 14,
1078 | "TJul2x": 20.8,
1079 | "PJan2x": 286,
1080 | "PJul2x": 47
1081 | },
1082 | {
1083 | "Row": 43,
1084 | "Col": 20,
1085 | "Lat": 44.275,
1086 | "Lon": -123.344,
1087 | "Elev": 359,
1088 | "TJan1x": 6.2,
1089 | "TJul1x": 17.9,
1090 | "PJan1x": 177,
1091 | "PJul1x": 17,
1092 | "TJan2x": 10.3,
1093 | "TJul2x": 20.7,
1094 | "PJan2x": 233,
1095 | "PJul2x": 30
1096 | },
1097 | {
1098 | "Row": 43,
1099 | "Col": 21,
1100 | "Lat": 44.433,
1101 | "Lon": -122.595,
1102 | "Elev": 658,
1103 | "TJan1x": 4.3,
1104 | "TJul1x": 16.9,
1105 | "PJan1x": 152,
1106 | "PJul1x": 23,
1107 | "TJan2x": 8.3,
1108 | "TJul2x": 19.3,
1109 | "PJan2x": 185,
1110 | "PJul2x": 62
1111 | },
1112 | {
1113 | "Row": 43,
1114 | "Col": 22,
1115 | "Lat": 44.586,
1116 | "Lon": -121.842,
1117 | "Elev": 918,
1118 | "TJan1x": 2.4,
1119 | "TJul1x": 15.4,
1120 | "PJan1x": 140,
1121 | "PJul1x": 31,
1122 | "TJan2x": 6.3,
1123 | "TJul2x": 17.9,
1124 | "PJan2x": 131,
1125 | "PJul2x": 74
1126 | },
1127 | {
1128 | "Row": 43,
1129 | "Col": 23,
1130 | "Lat": 44.734,
1131 | "Lon": -121.085,
1132 | "Elev": 995,
1133 | "TJan1x": 1.5,
1134 | "TJul1x": 15.1,
1135 | "PJan1x": 112,
1136 | "PJul1x": 28,
1137 | "TJan2x": 5.6,
1138 | "TJul2x": 17.7,
1139 | "PJan2x": 92,
1140 | "PJul2x": 76
1141 | },
1142 | {
1143 | "Row": 43,
1144 | "Col": 24,
1145 | "Lat": 44.877,
1146 | "Lon": -120.323,
1147 | "Elev": 990,
1148 | "TJan1x": 1.5,
1149 | "TJul1x": 16.2,
1150 | "PJan1x": 93,
1151 | "PJul1x": 20,
1152 | "TJan2x": 5.8,
1153 | "TJul2x": 18.8,
1154 | "PJan2x": 86,
1155 | "PJul2x": 50
1156 | },
1157 | {
1158 | "Row": 43,
1159 | "Col": 25,
1160 | "Lat": 45.015,
1161 | "Lon": -119.558,
1162 | "Elev": 1033,
1163 | "TJan1x": 1.3,
1164 | "TJul1x": 16.3,
1165 | "PJan1x": 104,
1166 | "PJul1x": 23,
1167 | "TJan2x": 5.5,
1168 | "TJul2x": 19,
1169 | "PJan2x": 95,
1170 | "PJul2x": 46
1171 | },
1172 | {
1173 | "Row": 43,
1174 | "Col": 26,
1175 | "Lat": 45.147,
1176 | "Lon": -118.789,
1177 | "Elev": 1113,
1178 | "TJan1x": 0,
1179 | "TJul1x": 15.3,
1180 | "PJan1x": 109,
1181 | "PJul1x": 42,
1182 | "TJan2x": 4.1,
1183 | "TJul2x": 17.9,
1184 | "PJan2x": 102,
1185 | "PJul2x": 90
1186 | },
1187 | {
1188 | "Row": 43,
1189 | "Col": 27,
1190 | "Lat": 45.275,
1191 | "Lon": -118.017,
1192 | "Elev": 1183,
1193 | "TJan1x": -0.7,
1194 | "TJul1x": 15.1,
1195 | "PJan1x": 113,
1196 | "PJul1x": 45,
1197 | "TJan2x": 3.4,
1198 | "TJul2x": 17.8,
1199 | "PJan2x": 113,
1200 | "PJul2x": 90
1201 | },
1202 | {
1203 | "Row": 43,
1204 | "Col": 28,
1205 | "Lat": 45.397,
1206 | "Lon": -117.242,
1207 | "Elev": 1254,
1208 | "TJan1x": -1.8,
1209 | "TJul1x": 15.1,
1210 | "PJan1x": 114,
1211 | "PJul1x": 45,
1212 | "TJan2x": 2.4,
1213 | "TJul2x": 17.5,
1214 | "PJan2x": 128,
1215 | "PJul2x": 82
1216 | },
1217 | {
1218 | "Row": 43,
1219 | "Col": 29,
1220 | "Lat": 45.514,
1221 | "Lon": -116.463,
1222 | "Elev": 1376,
1223 | "TJan1x": -2.6,
1224 | "TJul1x": 14.5,
1225 | "PJan1x": 129,
1226 | "PJul1x": 40,
1227 | "TJan2x": 1.6,
1228 | "TJul2x": 16.8,
1229 | "PJan2x": 136,
1230 | "PJul2x": 156
1231 | },
1232 | {
1233 | "Row": 44,
1234 | "Col": 19,
1235 | "Lat": 44.645,
1236 | "Lon": -124.322,
1237 | "Elev": 82,
1238 | "TJan1x": 10.3,
1239 | "TJul1x": 18.4,
1240 | "PJan1x": 199,
1241 | "PJul1x": 15,
1242 | "TJan2x": 14.6,
1243 | "TJul2x": 21.4,
1244 | "PJan2x": 309,
1245 | "PJul2x": 28
1246 | },
1247 | {
1248 | "Row": 44,
1249 | "Col": 20,
1250 | "Lat": 44.809,
1251 | "Lon": -123.571,
1252 | "Elev": 226,
1253 | "TJan1x": 6.9,
1254 | "TJul1x": 18.5,
1255 | "PJan1x": 202,
1256 | "PJul1x": 15,
1257 | "TJan2x": 11,
1258 | "TJul2x": 21.3,
1259 | "PJan2x": 290,
1260 | "PJul2x": 39
1261 | },
1262 | {
1263 | "Row": 44,
1264 | "Col": 21,
1265 | "Lat": 44.969,
1266 | "Lon": -122.815,
1267 | "Elev": 440,
1268 | "TJan1x": 5.5,
1269 | "TJul1x": 18.1,
1270 | "PJan1x": 157,
1271 | "PJul1x": 14,
1272 | "TJan2x": 9.6,
1273 | "TJul2x": 20.8,
1274 | "PJan2x": 214,
1275 | "PJul2x": 31
1276 | },
1277 | {
1278 | "Row": 44,
1279 | "Col": 22,
1280 | "Lat": 45.124,
1281 | "Lon": -122.055,
1282 | "Elev": 683,
1283 | "TJan1x": 3.5,
1284 | "TJul1x": 16.9,
1285 | "PJan1x": 137,
1286 | "PJul1x": 19,
1287 | "TJan2x": 7.5,
1288 | "TJul2x": 19.5,
1289 | "PJan2x": 152,
1290 | "PJul2x": 51
1291 | },
1292 | {
1293 | "Row": 44,
1294 | "Col": 23,
1295 | "Lat": 45.273,
1296 | "Lon": -121.291,
1297 | "Elev": 783,
1298 | "TJan1x": 2.6,
1299 | "TJul1x": 16.6,
1300 | "PJan1x": 120,
1301 | "PJul1x": 17,
1302 | "TJan2x": 6.6,
1303 | "TJul2x": 19.1,
1304 | "PJan2x": 105,
1305 | "PJul2x": 43
1306 | },
1307 | {
1308 | "Row": 44,
1309 | "Col": 24,
1310 | "Lat": 45.417,
1311 | "Lon": -120.523,
1312 | "Elev": 727,
1313 | "TJan1x": 2.9,
1314 | "TJul1x": 17.9,
1315 | "PJan1x": 108,
1316 | "PJul1x": 30,
1317 | "TJan2x": 7,
1318 | "TJul2x": 20.6,
1319 | "PJan2x": 93,
1320 | "PJul2x": 26
1321 | },
1322 | {
1323 | "Row": 44,
1324 | "Col": 25,
1325 | "Lat": 45.557,
1326 | "Lon": -119.751,
1327 | "Elev": 673,
1328 | "TJan1x": 3.1,
1329 | "TJul1x": 18.5,
1330 | "PJan1x": 108,
1331 | "PJul1x": 27,
1332 | "TJan2x": 7.3,
1333 | "TJul2x": 21.4,
1334 | "PJan2x": 98,
1335 | "PJul2x": 23
1336 | },
1337 | {
1338 | "Row": 44,
1339 | "Col": 26,
1340 | "Lat": 45.69,
1341 | "Lon": -118.976,
1342 | "Elev": 717,
1343 | "TJan1x": 2.1,
1344 | "TJul1x": 18.3,
1345 | "PJan1x": 103,
1346 | "PJul1x": 15,
1347 | "TJan2x": 5.9,
1348 | "TJul2x": 21,
1349 | "PJan2x": 96,
1350 | "PJul2x": 27
1351 | },
1352 | {
1353 | "Row": 44,
1354 | "Col": 27,
1355 | "Lat": 45.819,
1356 | "Lon": -118.196,
1357 | "Elev": 838,
1358 | "TJan1x": 1.3,
1359 | "TJul1x": 17.5,
1360 | "PJan1x": 120,
1361 | "PJul1x": 23,
1362 | "TJan2x": 5.1,
1363 | "TJul2x": 20.3,
1364 | "PJan2x": 114,
1365 | "PJul2x": 46
1366 | },
1367 | {
1368 | "Row": 44,
1369 | "Col": 28,
1370 | "Lat": 45.942,
1371 | "Lon": -117.413,
1372 | "Elev": 953,
1373 | "TJan1x": 0.1,
1374 | "TJul1x": 17,
1375 | "PJan1x": 136,
1376 | "PJul1x": 35,
1377 | "TJan2x": 3.9,
1378 | "TJul2x": 19.6,
1379 | "PJan2x": 136,
1380 | "PJul2x": 95
1381 | },
1382 | {
1383 | "Row": 44,
1384 | "Col": 29,
1385 | "Lat": 46.06,
1386 | "Lon": -116.627,
1387 | "Elev": 1064,
1388 | "TJan1x": -0.6,
1389 | "TJul1x": 16.6,
1390 | "PJan1x": 144,
1391 | "PJul1x": 24,
1392 | "TJan2x": 3.3,
1393 | "TJul2x": 19.3,
1394 | "PJan2x": 138,
1395 | "PJul2x": 81
1396 | },
1397 | {
1398 | "Row": 45,
1399 | "Col": 20,
1400 | "Lat": 45.344,
1401 | "Lon": -123.802,
1402 | "Elev": 125,
1403 | "TJan1x": 7.3,
1404 | "TJul1x": 18.8,
1405 | "PJan1x": 201,
1406 | "PJul1x": 13,
1407 | "TJan2x": 11.4,
1408 | "TJul2x": 21.7,
1409 | "PJan2x": 305,
1410 | "PJul2x": 35
1411 | },
1412 | {
1413 | "Row": 45,
1414 | "Col": 21,
1415 | "Lat": 45.505,
1416 | "Lon": -123.039,
1417 | "Elev": 313,
1418 | "TJan1x": 6,
1419 | "TJul1x": 18.3,
1420 | "PJan1x": 196,
1421 | "PJul1x": 18,
1422 | "TJan2x": 9.9,
1423 | "TJul2x": 21.1,
1424 | "PJan2x": 284,
1425 | "PJul2x": 35
1426 | },
1427 | {
1428 | "Row": 45,
1429 | "Col": 22,
1430 | "Lat": 45.661,
1431 | "Lon": -122.273,
1432 | "Elev": 551,
1433 | "TJan1x": 4,
1434 | "TJul1x": 17.4,
1435 | "PJan1x": 164,
1436 | "PJul1x": 16,
1437 | "TJan2x": 7.8,
1438 | "TJul2x": 20,
1439 | "PJan2x": 195,
1440 | "PJul2x": 47
1441 | },
1442 | {
1443 | "Row": 45,
1444 | "Col": 23,
1445 | "Lat": 45.812,
1446 | "Lon": -121.502,
1447 | "Elev": 709,
1448 | "TJan1x": 2.7,
1449 | "TJul1x": 16.8,
1450 | "PJan1x": 126,
1451 | "PJul1x": 20,
1452 | "TJan2x": 6.5,
1453 | "TJul2x": 19.3,
1454 | "PJan2x": 129,
1455 | "PJul2x": 40
1456 | },
1457 | {
1458 | "Row": 45,
1459 | "Col": 24,
1460 | "Lat": 45.958,
1461 | "Lon": -120.727,
1462 | "Elev": 643,
1463 | "TJan1x": 3.1,
1464 | "TJul1x": 18.4,
1465 | "PJan1x": 106,
1466 | "PJul1x": 18,
1467 | "TJan2x": 7,
1468 | "TJul2x": 21,
1469 | "PJan2x": 96,
1470 | "PJul2x": 24
1471 | },
1472 | {
1473 | "Row": 45,
1474 | "Col": 25,
1475 | "Lat": 46.098,
1476 | "Lon": -119.948,
1477 | "Elev": 482,
1478 | "TJan1x": 3.8,
1479 | "TJul1x": 20,
1480 | "PJan1x": 115,
1481 | "PJul1x": 16,
1482 | "TJan2x": 7.7,
1483 | "TJul2x": 22.8,
1484 | "PJan2x": 97,
1485 | "PJul2x": 17
1486 | },
1487 | {
1488 | "Row": 45,
1489 | "Col": 26,
1490 | "Lat": 46.234,
1491 | "Lon": -119.165,
1492 | "Elev": 435,
1493 | "TJan1x": 4,
1494 | "TJul1x": 20.9,
1495 | "PJan1x": 100,
1496 | "PJul1x": 16,
1497 | "TJan2x": 7.8,
1498 | "TJul2x": 23.8,
1499 | "PJan2x": 109,
1500 | "PJul2x": 17
1501 | },
1502 | {
1503 | "Row": 45,
1504 | "Col": 27,
1505 | "Lat": 46.363,
1506 | "Lon": -118.379,
1507 | "Elev": 531,
1508 | "TJan1x": 3.2,
1509 | "TJul1x": 20.3,
1510 | "PJan1x": 113,
1511 | "PJul1x": 25,
1512 | "TJan2x": 7.2,
1513 | "TJul2x": 23.2,
1514 | "PJan2x": 123,
1515 | "PJul2x": 31
1516 | },
1517 | {
1518 | "Row": 45,
1519 | "Col": 28,
1520 | "Lat": 46.488,
1521 | "Lon": -117.589,
1522 | "Elev": 674,
1523 | "TJan1x": 2.2,
1524 | "TJul1x": 19.6,
1525 | "PJan1x": 138,
1526 | "PJul1x": 15,
1527 | "TJan2x": 6.1,
1528 | "TJul2x": 22.4,
1529 | "PJan2x": 151,
1530 | "PJul2x": 52
1531 | },
1532 | {
1533 | "Row": 45,
1534 | "Col": 29,
1535 | "Lat": 46.607,
1536 | "Lon": -116.795,
1537 | "Elev": 836,
1538 | "TJan1x": 0.4,
1539 | "TJul1x": 17.9,
1540 | "PJan1x": 162,
1541 | "PJul1x": 21,
1542 | "TJan2x": 4.2,
1543 | "TJul2x": 20.7,
1544 | "PJan2x": 166,
1545 | "PJul2x": 66
1546 | },
1547 | {
1548 | "Row": 46,
1549 | "Col": 21,
1550 | "Lat": 46.041,
1551 | "Lon": -123.268,
1552 | "Elev": 249,
1553 | "TJan1x": 6.1,
1554 | "TJul1x": 18.6,
1555 | "PJan1x": 219,
1556 | "PJul1x": 16,
1557 | "TJan2x": 10,
1558 | "TJul2x": 21.2,
1559 | "PJan2x": 312,
1560 | "PJul2x": 35
1561 | },
1562 | {
1563 | "Row": 46,
1564 | "Col": 22,
1565 | "Lat": 46.198,
1566 | "Lon": -122.495,
1567 | "Elev": 493,
1568 | "TJan1x": 4.5,
1569 | "TJul1x": 17.8,
1570 | "PJan1x": 196,
1571 | "PJul1x": 19,
1572 | "TJan2x": 8.3,
1573 | "TJul2x": 20.2,
1574 | "PJan2x": 246,
1575 | "PJul2x": 50
1576 | },
1577 | {
1578 | "Row": 46,
1579 | "Col": 23,
1580 | "Lat": 46.351,
1581 | "Lon": -121.717,
1582 | "Elev": 714,
1583 | "TJan1x": 2.5,
1584 | "TJul1x": 16.5,
1585 | "PJan1x": 155,
1586 | "PJul1x": 24,
1587 | "TJan2x": 6.3,
1588 | "TJul2x": 19,
1589 | "PJan2x": 171,
1590 | "PJul2x": 52
1591 | },
1592 | {
1593 | "Row": 46,
1594 | "Col": 24,
1595 | "Lat": 46.498,
1596 | "Lon": -120.935,
1597 | "Elev": 706,
1598 | "TJan1x": 2.7,
1599 | "TJul1x": 17.9,
1600 | "PJan1x": 106,
1601 | "PJul1x": 20,
1602 | "TJan2x": 6.5,
1603 | "TJul2x": 20.3,
1604 | "PJan2x": 129,
1605 | "PJul2x": 43
1606 | },
1607 | {
1608 | "Row": 46,
1609 | "Col": 25,
1610 | "Lat": 46.64,
1611 | "Lon": -120.149,
1612 | "Elev": 509,
1613 | "TJan1x": 3.4,
1614 | "TJul1x": 19.8,
1615 | "PJan1x": 107,
1616 | "PJul1x": 11,
1617 | "TJan2x": 7.3,
1618 | "TJul2x": 22.6,
1619 | "PJan2x": 124,
1620 | "PJul2x": 25
1621 | },
1622 | {
1623 | "Row": 46,
1624 | "Col": 26,
1625 | "Lat": 46.776,
1626 | "Lon": -119.359,
1627 | "Elev": 373,
1628 | "TJan1x": 4,
1629 | "TJul1x": 21.2,
1630 | "PJan1x": 104,
1631 | "PJul1x": 9,
1632 | "TJan2x": 7.7,
1633 | "TJul2x": 24.2,
1634 | "PJan2x": 114,
1635 | "PJul2x": 25
1636 | },
1637 | {
1638 | "Row": 46,
1639 | "Col": 27,
1640 | "Lat": 46.907,
1641 | "Lon": -118.565,
1642 | "Elev": 405,
1643 | "TJan1x": 3.4,
1644 | "TJul1x": 21.2,
1645 | "PJan1x": 119,
1646 | "PJul1x": 23,
1647 | "TJan2x": 7.2,
1648 | "TJul2x": 24.2,
1649 | "PJan2x": 140,
1650 | "PJul2x": 30
1651 | },
1652 | {
1653 | "Row": 47,
1654 | "Col": 20,
1655 | "Lat": 46.411,
1656 | "Lon": -124.277,
1657 | "Elev": 35,
1658 | "TJan1x": 9.4,
1659 | "TJul1x": 18.7,
1660 | "PJan1x": 198,
1661 | "PJul1x": 14,
1662 | "TJan2x": 13.6,
1663 | "TJul2x": 21.6,
1664 | "PJan2x": 333,
1665 | "PJul2x": 34
1666 | },
1667 | {
1668 | "Row": 47,
1669 | "Col": 21,
1670 | "Lat": 46.576,
1671 | "Lon": -123.501,
1672 | "Elev": 184,
1673 | "TJan1x": 6.3,
1674 | "TJul1x": 19,
1675 | "PJan1x": 251,
1676 | "PJul1x": 22,
1677 | "TJan2x": 10.3,
1678 | "TJul2x": 21.7,
1679 | "PJan2x": 336,
1680 | "PJul2x": 44
1681 | },
1682 | {
1683 | "Row": 47,
1684 | "Col": 22,
1685 | "Lat": 46.735,
1686 | "Lon": -122.721,
1687 | "Elev": 377,
1688 | "TJan1x": 4.9,
1689 | "TJul1x": 18.2,
1690 | "PJan1x": 209,
1691 | "PJul1x": 24,
1692 | "TJan2x": 8.8,
1693 | "TJul2x": 20.9,
1694 | "PJan2x": 255,
1695 | "PJul2x": 59
1696 | },
1697 | {
1698 | "Row": 47,
1699 | "Col": 23,
1700 | "Lat": 46.889,
1701 | "Lon": -121.936,
1702 | "Elev": 613,
1703 | "TJan1x": 2.9,
1704 | "TJul1x": 16.9,
1705 | "PJan1x": 171,
1706 | "PJul1x": 26,
1707 | "TJan2x": 6.8,
1708 | "TJul2x": 19.7,
1709 | "PJan2x": 206,
1710 | "PJul2x": 49
1711 | }
1712 | ]
--------------------------------------------------------------------------------
/example/sample-data/streams.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "Stream": "N.F. Umatilla R.",
4 | "Health": "H",
5 | "DA": 1.7937904,
6 | "ReachLen": 4.162803,
7 | "Pools": 0.974972,
8 | "DeepPools": 0.9214416,
9 | "LargePools": 0.8141785,
10 | "SmLWD": 0.23850858,
11 | "LrgLWD": 0.56070472,
12 | "PoolDepth": 0.462397998,
13 | "PoolArea": 2.899591,
14 | "PRratio": -0.65757732,
15 | "BFWDratio": 1.2955671
16 | },
17 | {
18 | "Stream": "N.F. Umatilla R.",
19 | "Health": "H",
20 | "DA": 1.5991186,
21 | "ReachLen": 4.271679,
22 | "Pools": 1.4194601,
23 | "DeepPools": 0.9222342,
24 | "LargePools": 0.9601654,
25 | "SmLWD": 0.4819951,
26 | "LrgLWD": 0.44941428,
27 | "PoolDepth": 0.281033367,
28 | "PoolArea": 2.596872,
29 | "PRratio": -0.09151498,
30 | "BFWDratio": 1.2909246
31 | },
32 | {
33 | "Stream": "Pot Ck.",
34 | "Health": "H",
35 | "DA": 1.3666097,
36 | "ReachLen": 4.244129,
37 | "Pools": 1.5301997,
38 | "DeepPools": 0.8827116,
39 | "LargePools": 0.9842834,
40 | "SmLWD": 0.75952173,
41 | "LrgLWD": 0.87630024,
42 | "PoolDepth": 0.240549248,
43 | "PoolArea": 2.603956,
44 | "PRratio": -0.22914799,
45 | "BFWDratio": 1.3051363
46 | },
47 | {
48 | "Stream": "Pot Ck.",
49 | "Health": "H",
50 | "DA": 1.0413927,
51 | "ReachLen": 4.078638,
52 | "Pools": 1.6839471,
53 | "DeepPools": 0.5661267,
54 | "LargePools": 0.849405,
55 | "SmLWD": 0.8977935,
56 | "LrgLWD": 0.80715066,
57 | "PoolDepth": 0.117271296,
58 | "PoolArea": 2.225981,
59 | "PRratio": -0.15490196,
60 | "BFWDratio": 1.2518815
61 | },
62 | {
63 | "Stream": "Umatilla River",
64 | "Health": "H",
65 | "DA": 1.6654872,
66 | "ReachLen": 3.82112,
67 | "Pools": 1.3201463,
68 | "DeepPools": 0.9451856,
69 | "LargePools": 0.9406866,
70 | "SmLWD": 0.30772549,
71 | "LrgLWD": 0.36834061,
72 | "PoolDepth": 0.460897843,
73 | "PoolArea": 2.932032,
74 | "PRratio": -0.10237291,
75 | "BFWDratio": 1.0681859
76 | },
77 | {
78 | "Stream": "Shimmiehorn Ck.",
79 | "Health": "H",
80 | "DA": 1.2509077,
81 | "ReachLen": 4.372415,
82 | "Pools": 1.2227165,
83 | "DeepPools": 0.8405793,
84 | "LargePools": 0.8282738,
85 | "SmLWD": 0.34646257,
86 | "LrgLWD": 0.46739707,
87 | "PoolDepth": 0.31386722,
88 | "PoolArea": 2.419113,
89 | "PRratio": -0.07572071,
90 | "BFWDratio": 1.0086002
91 | },
92 | {
93 | "Stream": "Ryan Ck.",
94 | "Health": "H",
95 | "DA": 1.2237555,
96 | "ReachLen": 4.176583,
97 | "Pools": 1.563125,
98 | "DeepPools": 0.7771765,
99 | "LargePools": 0.9410331,
100 | "SmLWD": 0.69509471,
101 | "LrgLWD": 0.46739707,
102 | "PoolDepth": 0.164352856,
103 | "PoolArea": 2.343842,
104 | "PRratio": -0.20760831,
105 | "BFWDratio": 1.1031193
106 | },
107 | {
108 | "Stream": "Ryan Ck.",
109 | "Health": "H",
110 | "DA": 0.9074114,
111 | "ReachLen": 3.89878,
112 | "Pools": 1.3289909,
113 | "DeepPools": 0.3667623,
114 | "LargePools": 0,
115 | "SmLWD": 0.38318063,
116 | "LrgLWD": 0.46739707,
117 | "PoolDepth": 0.056904851,
118 | "PoolArea": 1.648555,
119 | "PRratio": -0.22914799,
120 | "BFWDratio": 0.9390198
121 | },
122 | {
123 | "Stream": "Lookinglass Ck.",
124 | "Health": "H",
125 | "DA": 1.6258267,
126 | "ReachLen": 4.536243,
127 | "Pools": 0.6915235,
128 | "DeepPools": 0.6607687,
129 | "LargePools": 0.5074239,
130 | "SmLWD": 0.40080576,
131 | "LrgLWD": 0.45850619,
132 | "PoolDepth": 0.418301291,
133 | "PoolArea": 2.617137,
134 | "PRratio": -0.537602,
135 | "BFWDratio": 1.1972806
136 | },
137 | {
138 | "Stream": "N.F. Meacham Ck.",
139 | "Health": "H",
140 | "DA": 1.8824107,
141 | "ReachLen": 3.977998,
142 | "Pools": 1.161368,
143 | "DeepPools": 0.9631035,
144 | "LargePools": 0.9230838,
145 | "SmLWD": 0.25282551,
146 | "LrgLWD": 0.43059492,
147 | "PoolDepth": 0.474216264,
148 | "PoolArea": 3.032578,
149 | "PRratio": -0.07058107,
150 | "BFWDratio": 1.1958997
151 | },
152 | {
153 | "Stream": "Mottet Ck.",
154 | "Health": "H",
155 | "DA": 1.4696748,
156 | "ReachLen": 3.866583,
157 | "Pools": 1.6785184,
158 | "DeepPools": 0.9824552,
159 | "LargePools": 0.9611672,
160 | "SmLWD": 0.6286708,
161 | "LrgLWD": 0.71196669,
162 | "PoolDepth": 0.361727836,
163 | "PoolArea": 2.317708,
164 | "PRratio": -0.01322827,
165 | "BFWDratio": 1.0530784
166 | },
167 | {
168 | "Stream": "Mottet Ck.",
169 | "Health": "H",
170 | "DA": 1.386499,
171 | "ReachLen": 3.701309,
172 | "Pools": 1.6693169,
173 | "DeepPools": 0.9857347,
174 | "LargePools": 0.8684244,
175 | "SmLWD": 0.84771543,
176 | "LrgLWD": 0.89209044,
177 | "PoolDepth": 0.283301229,
178 | "PoolArea": 2.252489,
179 | "PRratio": -0.05551733,
180 | "BFWDratio": 1.1003705
181 | },
182 | {
183 | "Stream": "Mottet Ck.",
184 | "Health": "H",
185 | "DA": 1.1199154,
186 | "ReachLen": 4.308799,
187 | "Pools": 1.6444386,
188 | "DeepPools": 0.8444833,
189 | "LargePools": 0.9744586,
190 | "SmLWD": 0.74980326,
191 | "LrgLWD": 0.64555322,
192 | "PoolDepth": 0.195899652,
193 | "PoolArea": 2.471614,
194 | "PRratio": -0.11350927,
195 | "BFWDratio": 0.9731279
196 | },
197 | {
198 | "Stream": "Mottet Ck.",
199 | "Health": "H",
200 | "DA": 0.382017,
201 | "ReachLen": 4.125384,
202 | "Pools": 1.845098,
203 | "DeepPools": 0.2854186,
204 | "LargePools": 0.6463095,
205 | "SmLWD": 0.936743,
206 | "LrgLWD": 0.54667532,
207 | "PoolDepth": 0.004321374,
208 | "PoolArea": 1.982135,
209 | "PRratio": -0.03151705,
210 | "BFWDratio": 0.8864907
211 | },
212 | {
213 | "Stream": "Little Lookinglass Ck.",
214 | "Health": "H",
215 | "DA": 1.4243916,
216 | "ReachLen": 4.160439,
217 | "Pools": 1.5250448,
218 | "DeepPools": 0.8728264,
219 | "LargePools": 0.9645476,
220 | "SmLWD": 0.51142662,
221 | "LrgLWD": 0.67594464,
222 | "PoolDepth": 0.255272505,
223 | "PoolArea": 2.483887,
224 | "PRratio": -0.09691001,
225 | "BFWDratio": 1.0374265
226 | },
227 | {
228 | "Stream": "Meacham Ck.",
229 | "Health": "U",
230 | "DA": 2.0533858,
231 | "ReachLen": 4.528608,
232 | "Pools": 0.6532125,
233 | "DeepPools": 0.4890949,
234 | "LargePools": 0.6247479,
235 | "SmLWD": 0.16335901,
236 | "LrgLWD": 0,
237 | "PoolDepth": 0.28780173,
238 | "PoolArea": 2.960994,
239 | "PRratio": -0.23657201,
240 | "BFWDratio": 1.3692159
241 | },
242 | {
243 | "Stream": "Little Phillips Ck.",
244 | "Health": "U",
245 | "DA": 1.4352071,
246 | "ReachLen": 3.857755,
247 | "Pools": 0.8633229,
248 | "DeepPools": 0.743536,
249 | "LargePools": 0.7609988,
250 | "SmLWD": 0.01571277,
251 | "LrgLWD": 0,
252 | "PoolDepth": 0.127104798,
253 | "PoolArea": 2.117371,
254 | "PRratio": -0.31875876,
255 | "BFWDratio": 1.2988531
256 | },
257 | {
258 | "Stream": "Little Phillips Ck.",
259 | "Health": "U",
260 | "DA": 1.2683439,
261 | "ReachLen": 4.242243,
262 | "Pools": 1.30103,
263 | "DeepPools": 0,
264 | "LargePools": 0,
265 | "SmLWD": 0.01571277,
266 | "LrgLWD": 0,
267 | "PoolDepth": -0.008773924,
268 | "PoolArea": 2.188197,
269 | "PRratio": -0.43179828,
270 | "BFWDratio": 1.5692568
271 | },
272 | {
273 | "Stream": "Little Phillips Ck.",
274 | "Health": "U",
275 | "DA": 0.9459607,
276 | "ReachLen": 4.160978,
277 | "Pools": 1.0934217,
278 | "DeepPools": 0,
279 | "LargePools": 0,
280 | "SmLWD": 0,
281 | "LrgLWD": 0.12845951,
282 | "PoolDepth": 0.033423755,
283 | "PoolArea": 1.933031,
284 | "PRratio": -0.49485002,
285 | "BFWDratio": 1.2472365
286 | },
287 | {
288 | "Stream": "Little Phillips Ck.",
289 | "Health": "U",
290 | "DA": 0.7041505,
291 | "ReachLen": 3.791691,
292 | "Pools": 1.4756712,
293 | "DeepPools": 0.4114408,
294 | "LargePools": 0,
295 | "SmLWD": 0.0491533,
296 | "LrgLWD": 0.07971948,
297 | "PoolDepth": 0.064457989,
298 | "PoolArea": 1.902384,
299 | "PRratio": -0.18708664,
300 | "BFWDratio": 1.0047512
301 | },
302 | {
303 | "Stream": "Phillips Ck.",
304 | "Health": "U",
305 | "DA": 1.7220578,
306 | "ReachLen": 4.175686,
307 | "Pools": 1.1818436,
308 | "DeepPools": 0.8281832,
309 | "LargePools": 0.8974218,
310 | "SmLWD": 0.03235379,
311 | "LrgLWD": 0.07971948,
312 | "PoolDepth": 0.238046103,
313 | "PoolArea": 2.628981,
314 | "PRratio": -0.35654732,
315 | "BFWDratio": 1.4265113
316 | },
317 | {
318 | "Stream": "Phillips Ck.",
319 | "Health": "U",
320 | "DA": 1.5036545,
321 | "ReachLen": 4.317081,
322 | "Pools": 1.3783979,
323 | "DeepPools": 0.8741653,
324 | "LargePools": 0.9408409,
325 | "SmLWD": 0.25282551,
326 | "LrgLWD": 0.46739707,
327 | "PoolDepth": 0.240549248,
328 | "PoolArea": 2.688073,
329 | "PRratio": -0.04095861,
330 | "BFWDratio": 1.6570559
331 | },
332 | {
333 | "Stream": "Phillips Ck.",
334 | "Health": "U",
335 | "DA": 0.9872192,
336 | "ReachLen": 4.339352,
337 | "Pools": 1.3180633,
338 | "DeepPools": 0,
339 | "LargePools": 0.3325248,
340 | "SmLWD": 0.22395307,
341 | "LrgLWD": 0.41086774,
342 | "PoolDepth": -0.040958608,
343 | "PoolArea": 1.888516,
344 | "PRratio": -0.14874165,
345 | "BFWDratio": 1.2878017
346 | },
347 | {
348 | "Stream": "Jarboe Ck.",
349 | "Health": "U",
350 | "DA": 1.2455127,
351 | "ReachLen": 4.168439,
352 | "Pools": 1.456366,
353 | "DeepPools": 0.9894147,
354 | "LargePools": 0.9810996,
355 | "SmLWD": 0.9600982,
356 | "LrgLWD": 0.51690482,
357 | "PoolDepth": 0.344392274,
358 | "PoolArea": 2.722255,
359 | "PRratio": 0.07188201,
360 | "BFWDratio": 1.0569049
361 | },
362 | {
363 | "Stream": "N.F. Meacham Ck.",
364 | "Health": "U",
365 | "DA": 2.0258382,
366 | "ReachLen": 4.295083,
367 | "Pools": 0.9731279,
368 | "DeepPools": 0.8077187,
369 | "LargePools": 0.7924158,
370 | "SmLWD": 0.19412729,
371 | "LrgLWD": 0.29502078,
372 | "PoolDepth": 0.409933123,
373 | "PoolArea": 3.281985,
374 | "PRratio": -0.13076828,
375 | "BFWDratio": 1.3384565
376 | },
377 | {
378 | "Stream": "N.F. Desolation Ck.",
379 | "Health": "H",
380 | "DA": 1.4810124,
381 | "ReachLen": 3.801815,
382 | "Pools": 0.3996737,
383 | "DeepPools": 0.5532425,
384 | "LargePools": 0.4833095,
385 | "SmLWD": 0.42244877,
386 | "LrgLWD": 0.12403495,
387 | "PoolDepth": 0.419955748,
388 | "PoolArea": 2.687975,
389 | "PRratio": -0.60205999,
390 | "BFWDratio": 0.9731279
391 | },
392 | {
393 | "Stream": "N.F. Desolation Ck.",
394 | "Health": "H",
395 | "DA": 1.3388547,
396 | "ReachLen": 4.213996,
397 | "Pools": 0.9925535,
398 | "DeepPools": 0.8872958,
399 | "LargePools": 0.7642329,
400 | "SmLWD": 0.36873104,
401 | "LrgLWD": 0.39014935,
402 | "PoolDepth": 0.631443769,
403 | "PoolArea": 3.062958,
404 | "PRratio": 0.16731733,
405 | "BFWDratio": 0.8864907
406 | },
407 | {
408 | "Stream": "N.F. Desolation Ck.",
409 | "Health": "H",
410 | "DA": 0.8876173,
411 | "ReachLen": 4.137607,
412 | "Pools": 0.3673559,
413 | "DeepPools": 0.5347882,
414 | "LargePools": 0.533748,
415 | "SmLWD": 0.81493986,
416 | "LrgLWD": 0.48962436,
417 | "PoolDepth": 0.318063335,
418 | "PoolArea": 2.564453,
419 | "PRratio": -0.56863624,
420 | "BFWDratio": 1.2479733
421 | },
422 | {
423 | "Stream": "S.F. Cable Ck.",
424 | "Health": "H",
425 | "DA": 1.2335038,
426 | "ReachLen": 4.278936,
427 | "Pools": 0.8567289,
428 | "DeepPools": 0.5893117,
429 | "LargePools": 0.5743868,
430 | "SmLWD": 0.92273329,
431 | "LrgLWD": 0.73374071,
432 | "PoolDepth": 0.257678575,
433 | "PoolArea": 2.370717,
434 | "PRratio": -0.31875876,
435 | "BFWDratio": 1.0606978
436 | },
437 | {
438 | "Stream": "S.F. Cable Ck.",
439 | "Health": "H",
440 | "DA": 1.0038912,
441 | "ReachLen": 4.324694,
442 | "Pools": 1.0689276,
443 | "DeepPools": 0.863095,
444 | "LargePools": 0.6974434,
445 | "SmLWD": 0.81009727,
446 | "LrgLWD": 0.51535257,
447 | "PoolDepth": 0.305351369,
448 | "PoolArea": 2.266114,
449 | "PRratio": 0.07554696,
450 | "BFWDratio": 0.9444827
451 | },
452 | {
453 | "Stream": "N.F. Cable Ck.",
454 | "Health": "H",
455 | "DA": 1.6137361,
456 | "ReachLen": 4.044853,
457 | "Pools": 0.9395193,
458 | "DeepPools": 0.8262411,
459 | "LargePools": 0.825646,
460 | "SmLWD": 0.52922549,
461 | "LrgLWD": 0.34768197,
462 | "PoolDepth": 0.445604203,
463 | "PoolArea": 2.782207,
464 | "PRratio": 0.23299611,
465 | "BFWDratio": 1.1238516
466 | },
467 | {
468 | "Stream": "N.F. Cable Ck.",
469 | "Health": "H",
470 | "DA": 1.5092025,
471 | "ReachLen": 3.722634,
472 | "Pools": 1.1682027,
473 | "DeepPools": 0.4425085,
474 | "LargePools": 0.6601567,
475 | "SmLWD": 0.40196373,
476 | "LrgLWD": 0.0904347,
477 | "PoolDepth": 0.240549248,
478 | "PoolArea": 2.462608,
479 | "PRratio": -0.40893539,
480 | "BFWDratio": 1.0293838
481 | },
482 | {
483 | "Stream": "N.F. Cable Ck.",
484 | "Health": "H",
485 | "DA": 1.3975924,
486 | "ReachLen": 3.500785,
487 | "Pools": 0.7715875,
488 | "DeepPools": 0.9853301,
489 | "LargePools": 0.9849426,
490 | "SmLWD": 0.38555852,
491 | "LrgLWD": 0.21172452,
492 | "PoolDepth": 0.271841607,
493 | "PoolArea": 2.477396,
494 | "PRratio": 0.02938378,
495 | "BFWDratio": 0.8325089
496 | },
497 | {
498 | "Stream": "N.F. Cable Ck.",
499 | "Health": "H",
500 | "DA": 1.2435341,
501 | "ReachLen": 3.868762,
502 | "Pools": 1.2966652,
503 | "DeepPools": 0,
504 | "LargePools": 0,
505 | "SmLWD": 0.38318063,
506 | "LrgLWD": 0.32094436,
507 | "PoolDepth": 0.136720567,
508 | "PoolArea": 1.971786,
509 | "PRratio": -0.50863831,
510 | "BFWDratio": 1.071882
511 | },
512 | {
513 | "Stream": "Indian Ck.",
514 | "Health": "H",
515 | "DA": 1.6314438,
516 | "ReachLen": 4.001388,
517 | "Pools": 0.5728716,
518 | "DeepPools": 0.7074494,
519 | "LargePools": 0.3086465,
520 | "SmLWD": 0.2902955,
521 | "LrgLWD": 0.46739707,
522 | "PoolDepth": 0.79518459,
523 | "PoolArea": 2.169851,
524 | "PRratio": -0.79588002,
525 | "BFWDratio": 0.80618
526 | },
527 | {
528 | "Stream": "Indian Ck.",
529 | "Health": "H",
530 | "DA": 1.3732799,
531 | "ReachLen": 3.625724,
532 | "Pools": 0.7143298,
533 | "DeepPools": 0.7491859,
534 | "LargePools": 0.3385166,
535 | "SmLWD": 0.46871892,
536 | "LrgLWD": 0.49784961,
537 | "PoolDepth": 0.426511261,
538 | "PoolArea": 2.197281,
539 | "PRratio": -0.60205999,
540 | "BFWDratio": 0.9294189
541 | },
542 | {
543 | "Stream": "Indian Ck.",
544 | "Health": "H",
545 | "DA": 1.114611,
546 | "ReachLen": 4.620261,
547 | "Pools": 0.8286599,
548 | "DeepPools": 0.6274502,
549 | "LargePools": 0.1747719,
550 | "SmLWD": 0.49099911,
551 | "LrgLWD": 0.49947401,
552 | "PoolDepth": 0.303196057,
553 | "PoolArea": 2.098159,
554 | "PRratio": -0.65757732,
555 | "BFWDratio": 0.8260748
556 | },
557 | {
558 | "Stream": "Indian Ck.",
559 | "Health": "H",
560 | "DA": 0.3344538,
561 | "ReachLen": 4.185032,
562 | "Pools": 0.7937904,
563 | "DeepPools": 0,
564 | "LargePools": 0,
565 | "SmLWD": 0.57893517,
566 | "LrgLWD": 0.35236259,
567 | "PoolDepth": 0.158362492,
568 | "PoolArea": 1.768416,
569 | "PRratio": -0.63827216,
570 | "BFWDratio": 0.6901961
571 | },
572 | {
573 | "Stream": "Oriental Ck.",
574 | "Health": "H",
575 | "DA": 1.0136797,
576 | "ReachLen": 4.023664,
577 | "Pools": 1.1755118,
578 | "DeepPools": 0.5291248,
579 | "LargePools": 0.6601567,
580 | "SmLWD": 0.72213636,
581 | "LrgLWD": 0.75370681,
582 | "PoolDepth": 0.178976947,
583 | "PoolArea": 2.261215,
584 | "PRratio": -0.37675071,
585 | "BFWDratio": 0.9138139
586 | },
587 | {
588 | "Stream": "Junkens Ck.",
589 | "Health": "H",
590 | "DA": 1.0538464,
591 | "ReachLen": 3.676876,
592 | "Pools": 0.8750613,
593 | "DeepPools": 0.6214131,
594 | "LargePools": 0.6287743,
595 | "SmLWD": 0.59830394,
596 | "LrgLWD": 0.39437682,
597 | "PoolDepth": 0.292256071,
598 | "PoolArea": 2.33666,
599 | "PRratio": -0.48148606,
600 | "BFWDratio": 1.0253059
601 | },
602 | {
603 | "Stream": "Junkens Ck.",
604 | "Health": "H",
605 | "DA": 0.9299296,
606 | "ReachLen": 3.926754,
607 | "Pools": 0.9370161,
608 | "DeepPools": 0.7856486,
609 | "LargePools": 0.719561,
610 | "SmLWD": 0.45617515,
611 | "LrgLWD": 0.23433876,
612 | "PoolDepth": 0.350248018,
613 | "PoolArea": 2.390723,
614 | "PRratio": -0.24412514,
615 | "BFWDratio": 0.90309
616 | },
617 | {
618 | "Stream": "Junkens Ck.",
619 | "Health": "H",
620 | "DA": 0.5646661,
621 | "ReachLen": 4.500785,
622 | "Pools": 0.6541765,
623 | "DeepPools": 0.2621815,
624 | "LargePools": 0.3262695,
625 | "SmLWD": 0.71433825,
626 | "LrgLWD": 0.41086774,
627 | "PoolDepth": 0.220108088,
628 | "PoolArea": 2.270981,
629 | "PRratio": -0.4202164,
630 | "BFWDratio": 0.9684829
631 | },
632 | {
633 | "Stream": "Hidaway Ck.",
634 | "Health": "H",
635 | "DA": 1.0457141,
636 | "ReachLen": 4.470822,
637 | "Pools": 0.6928469,
638 | "DeepPools": 0.1925856,
639 | "LargePools": 0.2493127,
640 | "SmLWD": 0.44658207,
641 | "LrgLWD": 0.21504387,
642 | "PoolDepth": 0.167317335,
643 | "PoolArea": 2.16711,
644 | "PRratio": -0.88605665,
645 | "BFWDratio": 1.3469395
646 | },
647 | {
648 | "Stream": "Little Kelsay Ck.",
649 | "Health": "H",
650 | "DA": 0.5502284,
651 | "ReachLen": 4.278936,
652 | "Pools": 0.924796,
653 | "DeepPools": 0.5893117,
654 | "LargePools": 0.3580503,
655 | "SmLWD": 0.66348627,
656 | "LrgLWD": 0.16143961,
657 | "PoolDepth": 0.238046103,
658 | "PoolArea": 2.084862,
659 | "PRratio": 0.06445799,
660 | "BFWDratio": 0.7993405
661 | },
662 | {
663 | "Stream": "Line Ck.",
664 | "Health": "H",
665 | "DA": 0.1303338,
666 | "ReachLen": 4.120574,
667 | "Pools": 1.0413927,
668 | "DeepPools": 0,
669 | "LargePools": 0,
670 | "SmLWD": 0.60378769,
671 | "LrgLWD": 0.40680628,
672 | "PoolDepth": -0.055517328,
673 | "PoolArea": 1.567732,
674 | "PRratio": 0.06069784,
675 | "BFWDratio": 0.4329693
676 | },
677 | {
678 | "Stream": "Little Indian Ck.",
679 | "Health": "H",
680 | "DA": 1.0934217,
681 | "ReachLen": 3.625724,
682 | "Pools": 1.1634596,
683 | "DeepPools": 0.4889228,
684 | "LargePools": 0,
685 | "SmLWD": 0.25282551,
686 | "LrgLWD": 0.30297348,
687 | "PoolDepth": 0.176091259,
688 | "PoolArea": 1.877371,
689 | "PRratio": -0.46852108,
690 | "BFWDratio": 0.8241258
691 | },
692 | {
693 | "Stream": "Little Indian Ck.",
694 | "Health": "H",
695 | "DA": 0.9912261,
696 | "ReachLen": 3.500785,
697 | "Pools": 0.7151674,
698 | "DeepPools": 0.5532425,
699 | "LargePools": 0.3939817,
700 | "SmLWD": 0.31825671,
701 | "LrgLWD": 0.40476047,
702 | "PoolDepth": 0.274157849,
703 | "PoolArea": 2.532436,
704 | "PRratio": -0.92081875,
705 | "BFWDratio": 0.4771213
706 | },
707 | {
708 | "Stream": "Little Indian Ck.",
709 | "Health": "H",
710 | "DA": 0.7032914,
711 | "ReachLen": 4.278936,
712 | "Pools": 0.6334685,
713 | "DeepPools": 0.2398307,
714 | "LargePools": 0,
715 | "SmLWD": 0.3564485,
716 | "LrgLWD": 0.36834061,
717 | "PoolDepth": 0.123851641,
718 | "PoolArea": 1.745075,
719 | "PRratio": -0.95860731,
720 | "BFWDratio": 0.4183013
721 | },
722 | {
723 | "Stream": "Pearson Ck.",
724 | "Health": "H",
725 | "DA": 1.7213159,
726 | "ReachLen": 4.366087,
727 | "Pools": 0.8260748,
728 | "DeepPools": 0.6269166,
729 | "LargePools": 0.4833095,
730 | "SmLWD": 0.06426177,
731 | "LrgLWD": 0.25564448,
732 | "PoolDepth": 0.356025857,
733 | "PoolArea": 2.424359,
734 | "PRratio": -0.45593196,
735 | "BFWDratio": 1.6127839
736 | },
737 | {
738 | "Stream": "Pearson Ck.",
739 | "Health": "H",
740 | "DA": 1.400538,
741 | "ReachLen": 4.579966,
742 | "Pools": 0.820858,
743 | "DeepPools": 0.6214131,
744 | "LargePools": 0.4415059,
745 | "SmLWD": 0.27246957,
746 | "LrgLWD": 0.33574322,
747 | "PoolDepth": 0.346352974,
748 | "PoolArea": 2.418086,
749 | "PRratio": -0.61978876,
750 | "BFWDratio": 1.2355284
751 | },
752 | {
753 | "Stream": "Pearson Ck.",
754 | "Health": "H",
755 | "DA": 0.6414741,
756 | "ReachLen": 3.953083,
757 | "Pools": 0.8188854,
758 | "DeepPools": 0,
759 | "LargePools": 0,
760 | "SmLWD": 0.26410764,
761 | "LrgLWD": 0.24055056,
762 | "PoolDepth": 0.079181246,
763 | "PoolArea": 1.774955,
764 | "PRratio": -1,
765 | "BFWDratio": 0.7993405
766 | },
767 | {
768 | "Stream": "Hidaway Ck.",
769 | "Health": "U",
770 | "DA": 1.8120439,
771 | "ReachLen": 4.515026,
772 | "Pools": 0.6211763,
773 | "DeepPools": 0.4957281,
774 | "LargePools": 0.5698529,
775 | "SmLWD": 0.18804839,
776 | "LrgLWD": 0.21504387,
777 | "PoolDepth": 0.245512668,
778 | "PoolArea": 2.576088,
779 | "PRratio": -0.49485002,
780 | "BFWDratio": 2.1130404
781 | },
782 | {
783 | "Stream": "Hidaway Ck.",
784 | "Health": "U",
785 | "DA": 1.6666116,
786 | "ReachLen": 4.044853,
787 | "Pools": 0.9242793,
788 | "DeepPools": 0.6382126,
789 | "LargePools": 0.8135186,
790 | "SmLWD": 0.50759757,
791 | "LrgLWD": 0.41086774,
792 | "PoolDepth": 0.269512944,
793 | "PoolArea": 2.547541,
794 | "PRratio": -0.49485002,
795 | "BFWDratio": 1.9676884
796 | },
797 | {
798 | "Stream": "Hidaway Ck.",
799 | "Health": "U",
800 | "DA": 1.5963771,
801 | "ReachLen": 3.953083,
802 | "Pools": 1.0519239,
803 | "DeepPools": 0.4759129,
804 | "LargePools": 0.8497178,
805 | "SmLWD": 0.60765988,
806 | "LrgLWD": 0.59477899,
807 | "PoolDepth": 0.222716471,
808 | "PoolArea": 2.488551,
809 | "PRratio": -0.537602,
810 | "BFWDratio": 1.8974621
811 | },
812 | {
813 | "Stream": "Hidaway Ck.",
814 | "Health": "U",
815 | "DA": 1.4625477,
816 | "ReachLen": 4.254113,
817 | "Pools": 1.3953264,
818 | "DeepPools": 0.9837805,
819 | "LargePools": 0.9734992,
820 | "SmLWD": 0.32992851,
821 | "LrgLWD": 0.59602473,
822 | "PoolDepth": 0.352182518,
823 | "PoolArea": 2.446024,
824 | "PRratio": -0.07572071,
825 | "BFWDratio": 1.7636526
826 | },
827 | {
828 | "Stream": "Indian Ck.",
829 | "Health": "U",
830 | "DA": 1.7209032,
831 | "ReachLen": 4.044853,
832 | "Pools": 0.372912,
833 | "DeepPools": 0.5182455,
834 | "LargePools": 0.2921605,
835 | "SmLWD": 0.05419477,
836 | "LrgLWD": 0.12403495,
837 | "PoolDepth": 0.350248018,
838 | "PoolArea": 2.288696,
839 | "PRratio": -0.85387196,
840 | "BFWDratio": 1.1731863
841 | },
842 | {
843 | "Stream": "Kelsay Ck.",
844 | "Health": "U",
845 | "DA": 1.4204509,
846 | "ReachLen": 4.153998,
847 | "Pools": 0.5526682,
848 | "DeepPools": 0.2760967,
849 | "LargePools": 0.6058175,
850 | "SmLWD": 0.76047284,
851 | "LrgLWD": 0.77398463,
852 | "PoolDepth": 0.201397124,
853 | "PoolArea": 2.417688,
854 | "PRratio": -0.46852108,
855 | "BFWDratio": 0.908485
856 | },
857 | {
858 | "Stream": "Kelsay Ck.",
859 | "Health": "U",
860 | "DA": 1.1089031,
861 | "ReachLen": 4.548709,
862 | "Pools": 0.7371926,
863 | "DeepPools": 0.8683193,
864 | "LargePools": 0.726556,
865 | "SmLWD": 0.61830655,
866 | "LrgLWD": 0.45670414,
867 | "PoolDepth": 0.350248018,
868 | "PoolArea": 2.553956,
869 | "PRratio": 0.13987909,
870 | "BFWDratio": 0.8195439
871 | },
872 | {
873 | "Stream": "Sponge Ck.",
874 | "Health": "U",
875 | "DA": 0.6424645,
876 | "ReachLen": 4.324694,
877 | "Pools": 0.9599948,
878 | "DeepPools": 0.4425085,
879 | "LargePools": 0.3001049,
880 | "SmLWD": 0.58304389,
881 | "LrgLWD": 0.0904347,
882 | "PoolDepth": 0.212187604,
883 | "PoolArea": 2.056714,
884 | "PRratio": -0.23657201,
885 | "BFWDratio": 1
886 | },
887 | {
888 | "Stream": "Beeman Ck.",
889 | "Health": "U",
890 | "DA": 0.6693169,
891 | "ReachLen": 3.953083,
892 | "Pools": 0.9822712,
893 | "DeepPools": 0.5665244,
894 | "LargePools": 0.2236966,
895 | "SmLWD": 0.67777178,
896 | "LrgLWD": 0.46563461,
897 | "PoolDepth": 0.220108088,
898 | "PoolArea": 1.905904,
899 | "PRratio": -0.52287875,
900 | "BFWDratio": 0.8750613
901 | },
902 | {
903 | "Stream": "Beeman Ck.",
904 | "Health": "U",
905 | "DA": 0.3404441,
906 | "ReachLen": 4.302418,
907 | "Pools": 0.4345689,
908 | "DeepPools": 0.3275087,
909 | "LargePools": 0.141606,
910 | "SmLWD": 0.67264727,
911 | "LrgLWD": 0.39226847,
912 | "PoolDepth": 0.235528447,
913 | "PoolArea": 1.850462,
914 | "PRratio": -0.50863831,
915 | "BFWDratio": 0.8808136
916 | },
917 | {
918 | "Stream": "Potamus Ck.",
919 | "Health": "H",
920 | "DA": 1.839855,
921 | "ReachLen": 4.541367,
922 | "Pools": 0.9876663,
923 | "DeepPools": 0.7097638,
924 | "LargePools": 0.7486188,
925 | "SmLWD": 0.47078244,
926 | "LrgLWD": 0.28140514,
927 | "PoolDepth": 0.305351369,
928 | "PoolArea": 2.589447,
929 | "PRratio": -0.16749109,
930 | "BFWDratio": 1.237795
931 | },
932 | {
933 | "Stream": "Potamus Ck.",
934 | "Health": "H",
935 | "DA": 1.3933997,
936 | "ReachLen": 4.463639,
937 | "Pools": 0.6570559,
938 | "DeepPools": 0.4234469,
939 | "LargePools": 0.4322088,
940 | "SmLWD": 0.37599503,
941 | "LrgLWD": 0.37938821,
942 | "PoolDepth": 0.260071388,
943 | "PoolArea": 2.492928,
944 | "PRratio": -0.4202164,
945 | "BFWDratio": 1.222196
946 | },
947 | {
948 | "Stream": "Potamus Ck.",
949 | "Health": "H",
950 | "DA": 0.6866363,
951 | "ReachLen": 4.093632,
952 | "Pools": 0.4742163,
953 | "DeepPools": 0,
954 | "LargePools": 0.2747333,
955 | "SmLWD": 0.05587435,
956 | "LrgLWD": 0,
957 | "PoolDepth": 0.136720567,
958 | "PoolArea": 2.129883,
959 | "PRratio": -0.40893539,
960 | "BFWDratio": 0.8750613
961 | },
962 | {
963 | "Stream": "Shaw Ck.",
964 | "Health": "H",
965 | "DA": 0.9116902,
966 | "ReachLen": 3.93293,
967 | "Pools": 0.9938769,
968 | "DeepPools": 0.3531941,
969 | "LargePools": 0.3358997,
970 | "SmLWD": 0.94884048,
971 | "LrgLWD": 0.96071828,
972 | "PoolDepth": 0.170261715,
973 | "PoolArea": 2.194875,
974 | "PRratio": -0.50863831,
975 | "BFWDratio": 1.2127202
976 | },
977 | {
978 | "Stream": "Ditch Ck.",
979 | "Health": "H",
980 | "DA": 1.6689447,
981 | "ReachLen": 4.26977,
982 | "Pools": 0.9153998,
983 | "DeepPools": 0.5166809,
984 | "LargePools": 0.7309036,
985 | "SmLWD": 0.55518857,
986 | "LrgLWD": 0.66715256,
987 | "PoolDepth": 0.227886705,
988 | "PoolArea": 2.834522,
989 | "PRratio": -0.74472749,
990 | "BFWDratio": 1.9699747
991 | },
992 | {
993 | "Stream": "Ditch Ck.",
994 | "Health": "H",
995 | "DA": 1.5721743,
996 | "ReachLen": 4.277426,
997 | "Pools": 0.892651,
998 | "DeepPools": 0.3369188,
999 | "LargePools": 0.7374493,
1000 | "SmLWD": 0.38910919,
1001 | "LrgLWD": 0.53945298,
1002 | "PoolDepth": 0.209515015,
1003 | "PoolArea": 2.554477,
1004 | "PRratio": -0.82390874,
1005 | "BFWDratio": 1.8731462
1006 | },
1007 | {
1008 | "Stream": "Brush Ck.",
1009 | "Health": "H",
1010 | "DA": 0.6444386,
1011 | "ReachLen": 3.506911,
1012 | "Pools": 1.1699682,
1013 | "DeepPools": 0,
1014 | "LargePools": 0.3910265,
1015 | "SmLWD": 0.95005573,
1016 | "LrgLWD": 0.99656001,
1017 | "PoolDepth": 0.053078443,
1018 | "PoolArea": 2.014689,
1019 | "PRratio": -0.32790214,
1020 | "BFWDratio": 1.0413927
1021 | },
1022 | {
1023 | "Stream": "Willow Ck.",
1024 | "Health": "H",
1025 | "DA": 0.9907827,
1026 | "ReachLen": 4.192372,
1027 | "Pools": 0.9106244,
1028 | "DeepPools": 0,
1029 | "LargePools": 0.3028703,
1030 | "SmLWD": 0.83010289,
1031 | "LrgLWD": 0.93737025,
1032 | "PoolDepth": 0.079181246,
1033 | "PoolArea": 2.051808,
1034 | "PRratio": -0.35654732,
1035 | "BFWDratio": 1.2918127
1036 | },
1037 | {
1038 | "Stream": "Willow Ck.",
1039 | "Health": "H",
1040 | "DA": 0.5263393,
1041 | "ReachLen": 4.144294,
1042 | "Pools": 0.5327544,
1043 | "DeepPools": 0.3892382,
1044 | "LargePools": 0.1745099,
1045 | "SmLWD": 0.73396889,
1046 | "LrgLWD": 0.80823353,
1047 | "PoolDepth": 0.201397124,
1048 | "PoolArea": 2.22417,
1049 | "PRratio": 0.11058971,
1050 | "BFWDratio": 0.8273693
1051 | },
1052 | {
1053 | "Stream": "Henry Ck.",
1054 | "Health": "U",
1055 | "DA": 1.2392995,
1056 | "ReachLen": 3.63809,
1057 | "Pools": 0.7831887,
1058 | "DeepPools": 0.6431838,
1059 | "LargePools": 0.3334086,
1060 | "SmLWD": 0.47181131,
1061 | "LrgLWD": 0.6313708,
1062 | "PoolDepth": 0.225309282,
1063 | "PoolArea": 2.11059,
1064 | "PRratio": -0.55284197,
1065 | "BFWDratio": 1.5404546
1066 | },
1067 | {
1068 | "Stream": "Henry Ck.",
1069 | "Health": "U",
1070 | "DA": 0.9595184,
1071 | "ReachLen": 3.812646,
1072 | "Pools": 0.8129134,
1073 | "DeepPools": 0.4023928,
1074 | "LargePools": 0.2679033,
1075 | "SmLWD": 0.2902955,
1076 | "LrgLWD": 0.41488961,
1077 | "PoolDepth": 0.173186268,
1078 | "PoolArea": 1.992774,
1079 | "PRratio": 0.30103,
1080 | "BFWDratio": 1.2603099
1081 | },
1082 | {
1083 | "Stream": "Henry Ck.",
1084 | "Health": "U",
1085 | "DA": 0.673942,
1086 | "ReachLen": 4.022593,
1087 | "Pools": 0.3996737,
1088 | "DeepPools": 0,
1089 | "LargePools": 0,
1090 | "SmLWD": 0.43023407,
1091 | "LrgLWD": 0.68633378,
1092 | "PoolDepth": 0.041392685,
1093 | "PoolArea": 1.748188,
1094 | "PRratio": -0.4436975,
1095 | "BFWDratio": 0.9754318
1096 | },
1097 | {
1098 | "Stream": "Davis Ck.",
1099 | "Health": "U",
1100 | "DA": 0.6253125,
1101 | "ReachLen": 3.861952,
1102 | "Pools": 1.1616674,
1103 | "DeepPools": 0.3816927,
1104 | "LargePools": 0.2516319,
1105 | "SmLWD": 0.28211759,
1106 | "LrgLWD": 0.49621839,
1107 | "PoolDepth": 0.123851641,
1108 | "PoolArea": 1.823474,
1109 | "PRratio": -0.20065945,
1110 | "BFWDratio": 0.9258276
1111 | },
1112 | {
1113 | "Stream": "Davis Ck.",
1114 | "Health": "U",
1115 | "DA": 0.2695129,
1116 | "ReachLen": 3.963929,
1117 | "Pools": 0.6037937,
1118 | "DeepPools": 0,
1119 | "LargePools": 0,
1120 | "SmLWD": 0.74226107,
1121 | "LrgLWD": 0.68071465,
1122 | "PoolDepth": 0.025305865,
1123 | "PoolArea": 1.595827,
1124 | "PRratio": -0.49485002,
1125 | "BFWDratio": 0.5717088
1126 | },
1127 | {
1128 | "Stream": "Big Wall Ck.",
1129 | "Health": "U",
1130 | "DA": 1.9743735,
1131 | "ReachLen": 4.161608,
1132 | "Pools": 1.1519824,
1133 | "DeepPools": 0.9153068,
1134 | "LargePools": 0.8700886,
1135 | "SmLWD": 0.18346453,
1136 | "LrgLWD": 0.40270448,
1137 | "PoolDepth": 0.356025857,
1138 | "PoolArea": 2.549665,
1139 | "PRratio": -0.08092191,
1140 | "BFWDratio": 2.2754035
1141 | },
1142 | {
1143 | "Stream": "Big Wall Ck.",
1144 | "Health": "U",
1145 | "DA": 1.045323,
1146 | "ReachLen": 4.061415,
1147 | "Pools": 0.6608655,
1148 | "DeepPools": 0.4253662,
1149 | "LargePools": 0.3561345,
1150 | "SmLWD": 0.25989466,
1151 | "LrgLWD": 0.46915178,
1152 | "PoolDepth": 0.227886705,
1153 | "PoolArea": 2.308137,
1154 | "PRratio": -0.34678749,
1155 | "BFWDratio": 1.346353
1156 | },
1157 | {
1158 | "Stream": "Wheeler Ck.",
1159 | "Health": "U",
1160 | "DA": 0.876795,
1161 | "ReachLen": 3.665393,
1162 | "Pools": 0.9604708,
1163 | "DeepPools": 0,
1164 | "LargePools": 0,
1165 | "SmLWD": 0.67840678,
1166 | "LrgLWD": 0.68447329,
1167 | "PoolDepth": -0.040958608,
1168 | "PoolArea": 1.824451,
1169 | "PRratio": -0.4436975,
1170 | "BFWDratio": 1.1775365
1171 | },
1172 | {
1173 | "Stream": "Wheeler Ck.",
1174 | "Health": "U",
1175 | "DA": 0.7839036,
1176 | "ReachLen": 3.613207,
1177 | "Pools": 1.1095785,
1178 | "DeepPools": 0.495223,
1179 | "LargePools": 0,
1180 | "SmLWD": 0.67777178,
1181 | "LrgLWD": 0.77590995,
1182 | "PoolDepth": 0.155336037,
1183 | "PoolArea": 1.780317,
1184 | "PRratio": -0.11350927,
1185 | "BFWDratio": 1.0852906
1186 | },
1187 | {
1188 | "Stream": "Wheeler Ck.",
1189 | "Health": "U",
1190 | "DA": 0.463893,
1191 | "ReachLen": 3.959804,
1192 | "Pools": 0.665581,
1193 | "DeepPools": 0,
1194 | "LargePools": 0,
1195 | "SmLWD": 0.45511715,
1196 | "LrgLWD": 0.49784961,
1197 | "PoolDepth": -0.070581074,
1198 | "PoolArea": 1.818754,
1199 | "PRratio": -0.39794001,
1200 | "BFWDratio": 0.764923
1201 | },
1202 | {
1203 | "Stream": "Squaw Ck.",
1204 | "Health": "U",
1205 | "DA": 0.4031205,
1206 | "ReachLen": 3.907949,
1207 | "Pools": 0.6599162,
1208 | "DeepPools": 0.3631021,
1209 | "LargePools": 0,
1210 | "SmLWD": 0.29300271,
1211 | "LrgLWD": 0.46739707,
1212 | "PoolDepth": 0.1430148,
1213 | "PoolArea": 1.898999,
1214 | "PRratio": -0.4202164,
1215 | "BFWDratio": 0.8014037
1216 | },
1217 | {
1218 | "Stream": "Shaw Ck.",
1219 | "Health": "U",
1220 | "DA": 0.5010593,
1221 | "ReachLen": 4.200467,
1222 | "Pools": 0.7774268,
1223 | "DeepPools": 0.2621815,
1224 | "LargePools": 0,
1225 | "SmLWD": 0.98659162,
1226 | "LrgLWD": 0.96671567,
1227 | "PoolDepth": 0.127104798,
1228 | "PoolArea": 1.907304,
1229 | "PRratio": -0.39794001,
1230 | "BFWDratio": 0.8020893
1231 | },
1232 | {
1233 | "Stream": "Keating Ck.",
1234 | "Health": "U",
1235 | "DA": 0.1172713,
1236 | "ReachLen": 4.034909,
1237 | "Pools": 0.5908418,
1238 | "DeepPools": 0,
1239 | "LargePools": 0.2011792,
1240 | "SmLWD": 0.42912802,
1241 | "LrgLWD": 0.36834061,
1242 | "PoolDepth": 0.041392685,
1243 | "PoolArea": 1.852053,
1244 | "PRratio": -0.60205999,
1245 | "BFWDratio": 0.9025468
1246 | },
1247 | {
1248 | "Stream": "Bacon Ck.",
1249 | "Health": "U",
1250 | "DA": 1.1637575,
1251 | "ReachLen": 3.801198,
1252 | "Pools": 1.2003032,
1253 | "DeepPools": 0.5535197,
1254 | "LargePools": 0.8169474,
1255 | "SmLWD": 0.41115167,
1256 | "LrgLWD": 0.54667532,
1257 | "PoolDepth": 0.245512668,
1258 | "PoolArea": 2.447561,
1259 | "PRratio": -0.30103,
1260 | "BFWDratio": 1.1376705
1261 | },
1262 | {
1263 | "Stream": "Bacon Ck.",
1264 | "Health": "U",
1265 | "DA": 0.9068735,
1266 | "ReachLen": 4.264558,
1267 | "Pools": 0.8561244,
1268 | "DeepPools": 0.4132177,
1269 | "LargePools": 0.4911419,
1270 | "SmLWD": 0.24998119,
1271 | "LrgLWD": 0.29233453,
1272 | "PoolDepth": 0.204119983,
1273 | "PoolArea": 2.267641,
1274 | "PRratio": -0.39794001,
1275 | "BFWDratio": 0.7611758
1276 | },
1277 | {
1278 | "Stream": "Colvin Ck.",
1279 | "Health": "U",
1280 | "DA": 0.5415792,
1281 | "ReachLen": 4.051461,
1282 | "Pools": 0.5742628,
1283 | "DeepPools": 0,
1284 | "LargePools": 0,
1285 | "SmLWD": 0.43463793,
1286 | "LrgLWD": 0.63799696,
1287 | "PoolDepth": 0.100370545,
1288 | "PoolArea": 2.069113,
1289 | "PRratio": -0.27572413,
1290 | "BFWDratio": 0.8432328
1291 | },
1292 | {
1293 | "Stream": "Gilbert Ck.",
1294 | "Health": "U",
1295 | "DA": 1.2345173,
1296 | "ReachLen": 4.234492,
1297 | "Pools": 0.810367,
1298 | "DeepPools": 0.5349358,
1299 | "LargePools": 0.4152468,
1300 | "SmLWD": 0.53014471,
1301 | "LrgLWD": 0.62913072,
1302 | "PoolDepth": 0.260071388,
1303 | "PoolArea": 2.274273,
1304 | "PRratio": -0.52287875,
1305 | "BFWDratio": 1.5354207
1306 | },
1307 | {
1308 | "Stream": "Lovlett Ck.",
1309 | "Health": "U",
1310 | "DA": 0.8597386,
1311 | "ReachLen": 4.017659,
1312 | "Pools": 0.9837165,
1313 | "DeepPools": 0.3217625,
1314 | "LargePools": 0.2058023,
1315 | "SmLWD": 0.31169202,
1316 | "LrgLWD": 0.39014935,
1317 | "PoolDepth": 0.240549248,
1318 | "PoolArea": 2.032981,
1319 | "PRratio": -0.27572413,
1320 | "BFWDratio": 1.2662317
1321 | },
1322 | {
1323 | "Stream": "Tucannon R.",
1324 | "Health": "H",
1325 | "DA": 1.9036325,
1326 | "ReachLen": 4.169792,
1327 | "Pools": 0.8802418,
1328 | "DeepPools": 0.9451266,
1329 | "LargePools": 0.8786046,
1330 | "SmLWD": 0.52553122,
1331 | "LrgLWD": 0.95421976,
1332 | "PoolDepth": 0.492760389,
1333 | "PoolArea": 2.982312,
1334 | "PRratio": -0.24412514,
1335 | "BFWDratio": 2.2046625
1336 | },
1337 | {
1338 | "Stream": "Tucannon R.",
1339 | "Health": "H",
1340 | "DA": 1.7059492,
1341 | "ReachLen": 4.375846,
1342 | "Pools": 0.8656961,
1343 | "DeepPools": 0.6856092,
1344 | "LargePools": 0.3177347,
1345 | "SmLWD": 0.37959759,
1346 | "LrgLWD": 0.93901839,
1347 | "PoolDepth": 0.397940009,
1348 | "PoolArea": 2.220317,
1349 | "PRratio": -0.36653154,
1350 | "BFWDratio": 2.0069365
1351 | },
1352 | {
1353 | "Stream": "Tucannon R.",
1354 | "Health": "H",
1355 | "DA": 1.3322364,
1356 | "ReachLen": 4.324694,
1357 | "Pools": 0.9595184,
1358 | "DeepPools": 0.5291248,
1359 | "LargePools": 0.1375427,
1360 | "SmLWD": 0.48701605,
1361 | "LrgLWD": 0.95725922,
1362 | "PoolDepth": 0.344392274,
1363 | "PoolArea": 1.992465,
1364 | "PRratio": -0.33724217,
1365 | "BFWDratio": 1.6332664
1366 | },
1367 | {
1368 | "Stream": "Asotin NF",
1369 | "Health": "H",
1370 | "DA": 1.959709,
1371 | "ReachLen": 4.375846,
1372 | "Pools": 0.7824726,
1373 | "DeepPools": 0.7646006,
1374 | "LargePools": 0.67737,
1375 | "SmLWD": 0.32476393,
1376 | "LrgLWD": 0.41288358,
1377 | "PoolDepth": 0.396199347,
1378 | "PoolArea": 2.651782,
1379 | "PRratio": -0.30980392,
1380 | "BFWDratio": 1.3789427
1381 | },
1382 | {
1383 | "Stream": "Asotin NF",
1384 | "Health": "H",
1385 | "DA": 1.6843965,
1386 | "ReachLen": 4.421604,
1387 | "Pools": 0.9982593,
1388 | "DeepPools": 0.4801942,
1389 | "LargePools": 0.3311946,
1390 | "SmLWD": 0.7537363,
1391 | "LrgLWD": 0.68818186,
1392 | "PoolDepth": 0.225309282,
1393 | "PoolArea": 2.152839,
1394 | "PRratio": -0.08092191,
1395 | "BFWDratio": 0.7209857
1396 | },
1397 | {
1398 | "Stream": "Bear Ck.",
1399 | "Health": "H",
1400 | "DA": 0.9795484,
1401 | "ReachLen": 4.199755,
1402 | "Pools": 1.0546131,
1403 | "DeepPools": 0.3667623,
1404 | "LargePools": 0.1620966,
1405 | "SmLWD": 0.23126066,
1406 | "LrgLWD": 0.88728099,
1407 | "PoolDepth": 0.28780173,
1408 | "PoolArea": 2.043716,
1409 | "PRratio": -0.20065945,
1410 | "BFWDratio": 1.2805784
1411 | },
1412 | {
1413 | "Stream": "Charley3 Ck.",
1414 | "Health": "H",
1415 | "DA": 1.4665711,
1416 | "ReachLen": 4.493486,
1417 | "Pools": 0.7109631,
1418 | "DeepPools": 0.5570995,
1419 | "LargePools": 0.4362397,
1420 | "SmLWD": 0.55256847,
1421 | "LrgLWD": 0.8300063,
1422 | "PoolDepth": 0.178976947,
1423 | "PoolArea": 2.168969,
1424 | "PRratio": -0.22184875,
1425 | "BFWDratio": 0.7109631
1426 | },
1427 | {
1428 | "Stream": "Panjab Ck.",
1429 | "Health": "H",
1430 | "DA": 1.77459,
1431 | "ReachLen": 4.001388,
1432 | "Pools": 0.666518,
1433 | "DeepPools": 0.7074494,
1434 | "LargePools": 0.6992422,
1435 | "SmLWD": 0.95249592,
1436 | "LrgLWD": 0.6106236,
1437 | "PoolDepth": 0.359835482,
1438 | "PoolArea": 2.86262,
1439 | "PRratio": -0.50863831,
1440 | "BFWDratio": 1.0711453
1441 | },
1442 | {
1443 | "Stream": "Panjab Ck.",
1444 | "Health": "H",
1445 | "DA": 1.3870337,
1446 | "ReachLen": 3.764027,
1447 | "Pools": 1.0132587,
1448 | "DeepPools": 0.4236608,
1449 | "LargePools": 0.576168,
1450 | "SmLWD": 0.99582882,
1451 | "LrgLWD": 0.91965227,
1452 | "PoolDepth": 0.178976947,
1453 | "PoolArea": 2.232996,
1454 | "PRratio": -0.23657201,
1455 | "BFWDratio": 0.5965971
1456 | },
1457 | {
1458 | "Stream": "Panjab Ck.",
1459 | "Health": "H",
1460 | "DA": 0.7041505,
1461 | "ReachLen": 4.199755,
1462 | "Pools": 1.388634,
1463 | "DeepPools": 0.2621815,
1464 | "LargePools": 0,
1465 | "SmLWD": 0.90545136,
1466 | "LrgLWD": 0.85082421,
1467 | "PoolDepth": 0.086359831,
1468 | "PoolArea": 1.866701,
1469 | "PRratio": -0.06550155,
1470 | "BFWDratio": 0.5797836
1471 | },
1472 | {
1473 | "Stream": "Wenatchee3",
1474 | "Health": "H",
1475 | "DA": 1.6098078,
1476 | "ReachLen": 4.266702,
1477 | "Pools": 0.8750613,
1478 | "DeepPools": 0.8548871,
1479 | "LargePools": 0.8661693,
1480 | "SmLWD": 0.22101333,
1481 | "LrgLWD": 0.3569909,
1482 | "PoolDepth": 0.416640507,
1483 | "PoolArea": 2.87531,
1484 | "PRratio": -0.13076828,
1485 | "BFWDratio": 1.0722499
1486 | },
1487 | {
1488 | "Stream": "Wenatchee3",
1489 | "Health": "H",
1490 | "DA": 1.2750809,
1491 | "ReachLen": 4.023664,
1492 | "Pools": 1.064458,
1493 | "DeepPools": 0.9467898,
1494 | "LargePools": 0.9054844,
1495 | "SmLWD": 0.49495242,
1496 | "LrgLWD": 0.6560336,
1497 | "PoolDepth": 0.463892989,
1498 | "PoolArea": 2.929347,
1499 | "PRratio": -0.01322827,
1500 | "BFWDratio": 0.9329808
1501 | },
1502 | {
1503 | "Stream": "Meadow Ck.",
1504 | "Health": "H",
1505 | "DA": 1.3386557,
1506 | "ReachLen": 3.836577,
1507 | "Pools": 1.0141003,
1508 | "DeepPools": 0.5347882,
1509 | "LargePools": 0.7154685,
1510 | "SmLWD": 0.98078443,
1511 | "LrgLWD": 0.88666423,
1512 | "PoolDepth": 0.222716471,
1513 | "PoolArea": 2.593175,
1514 | "PRratio": -0.1739252,
1515 | "BFWDratio": 0.9390198
1516 | },
1517 | {
1518 | "Stream": "Meadow Ck.",
1519 | "Health": "H",
1520 | "DA": 1.0191163,
1521 | "ReachLen": 4.266702,
1522 | "Pools": 1.0338257,
1523 | "DeepPools": 0,
1524 | "LargePools": 0.4899416,
1525 | "SmLWD": 0.96695478,
1526 | "LrgLWD": 0.86230695,
1527 | "PoolDepth": 0.021189299,
1528 | "PoolArea": 2.472244,
1529 | "PRratio": -0.18708664,
1530 | "BFWDratio": 1.3199384
1531 | },
1532 | {
1533 | "Stream": "Meadow Ck.",
1534 | "Health": "H",
1535 | "DA": 0.3201463,
1536 | "ReachLen": 3.953083,
1537 | "Pools": 0.4456042,
1538 | "DeepPools": 0,
1539 | "LargePools": 0,
1540 | "SmLWD": 0.97783831,
1541 | "LrgLWD": 0.84957981,
1542 | "PoolDepth": -0.070581074,
1543 | "PoolArea": 1.402261,
1544 | "PRratio": -0.537602,
1545 | "BFWDratio": 0.6201361
1546 | },
1547 | {
1548 | "Stream": "Cougar Ck.",
1549 | "Health": "H",
1550 | "DA": 0.6946052,
1551 | "ReachLen": 4.169792,
1552 | "Pools": 1.4789991,
1553 | "DeepPools": 0,
1554 | "LargePools": 0,
1555 | "SmLWD": 0.72377991,
1556 | "LrgLWD": 0.81355079,
1557 | "PoolDepth": 0.017033339,
1558 | "PoolArea": 2.030721,
1559 | "PRratio": -0.12493874,
1560 | "BFWDratio": 0.808211
1561 | },
1562 | {
1563 | "Stream": "Sheep Ck.",
1564 | "Health": "H",
1565 | "DA": 0.8987252,
1566 | "ReachLen": 3.421604,
1567 | "Pools": 1.1283993,
1568 | "DeepPools": 0.7646006,
1569 | "LargePools": 0.7087536,
1570 | "SmLWD": 0.8189418,
1571 | "LrgLWD": 0.99713584,
1572 | "PoolDepth": 0.409933123,
1573 | "PoolArea": 2.239825,
1574 | "PRratio": -0.38721614,
1575 | "BFWDratio": 1.1997552
1576 | },
1577 | {
1578 | "Stream": "Cummings Ck.",
1579 | "Health": "H",
1580 | "DA": 1.6509871,
1581 | "ReachLen": 4.266702,
1582 | "Pools": 0.6551384,
1583 | "DeepPools": 0.3406509,
1584 | "LargePools": 0.3996953,
1585 | "SmLWD": 0.40196373,
1586 | "LrgLWD": 0.53059585,
1587 | "PoolDepth": 0.184691431,
1588 | "PoolArea": 2.444217,
1589 | "PRratio": -0.56863624,
1590 | "BFWDratio": 1.0199467
1591 | },
1592 | {
1593 | "Stream": "Cummings Ck.",
1594 | "Health": "H",
1595 | "DA": 1.5006481,
1596 | "ReachLen": 4.153998,
1597 | "Pools": 0.845098,
1598 | "DeepPools": 0.8389105,
1599 | "LargePools": 0.5809621,
1600 | "SmLWD": 0.34897247,
1601 | "LrgLWD": 0.69812899,
1602 | "PoolDepth": 0.326335861,
1603 | "PoolArea": 2.319418,
1604 | "PRratio": -0.4202164,
1605 | "BFWDratio": 1.0670709
1606 | },
1607 | {
1608 | "Stream": "Cummings Ck.",
1609 | "Health": "H",
1610 | "DA": 1.2792105,
1611 | "ReachLen": 4.044853,
1612 | "Pools": 0.9552065,
1613 | "DeepPools": 0.312113,
1614 | "LargePools": 0.3634639,
1615 | "SmLWD": 0.65948358,
1616 | "LrgLWD": 0.82223077,
1617 | "PoolDepth": 0.117271296,
1618 | "PoolArea": 2.147429,
1619 | "PRratio": -0.31875876,
1620 | "BFWDratio": 1.228657
1621 | },
1622 | {
1623 | "Stream": "Jim Ck.",
1624 | "Health": "U",
1625 | "DA": 0.5682017,
1626 | "ReachLen": 3.801815,
1627 | "Pools": 1.2909246,
1628 | "DeepPools": 0,
1629 | "LargePools": 0,
1630 | "SmLWD": 0.30904998,
1631 | "LrgLWD": 0.36834061,
1632 | "PoolDepth": -0.045757491,
1633 | "PoolArea": 1.542327,
1634 | "PRratio": -0.19382003,
1635 | "BFWDratio": 0.9503649
1636 | },
1637 | {
1638 | "Stream": "Charley3 Ck.",
1639 | "Health": "U",
1640 | "DA": 1.6942541,
1641 | "ReachLen": 4.44691,
1642 | "Pools": 0.7730547,
1643 | "DeepPools": 0.2786414,
1644 | "LargePools": 0.2571592,
1645 | "SmLWD": 0.24426396,
1646 | "LrgLWD": 0.30297348,
1647 | "PoolDepth": 0.209515015,
1648 | "PoolArea": 2.076313,
1649 | "PRratio": -0.46852108,
1650 | "BFWDratio": 0.8318698
1651 | },
1652 | {
1653 | "Stream": "Hixon Ck.",
1654 | "Health": "U",
1655 | "DA": 0.608526,
1656 | "ReachLen": 3.722634,
1657 | "Pools": 1.146748,
1658 | "DeepPools": 0.6948659,
1659 | "LargePools": 0.5274436,
1660 | "SmLWD": 0.18193189,
1661 | "LrgLWD": 0.29502078,
1662 | "PoolDepth": 0.198657087,
1663 | "PoolArea": 2.306639,
1664 | "PRratio": -0.1739252,
1665 | "BFWDratio": 1.5607433
1666 | },
1667 | {
1668 | "Stream": "Pataha Ck.",
1669 | "Health": "U",
1670 | "DA": 0.647383,
1671 | "ReachLen": 4.120574,
1672 | "Pools": 1.4281348,
1673 | "DeepPools": 0,
1674 | "LargePools": 0,
1675 | "SmLWD": 0.84372326,
1676 | "LrgLWD": 0.62800472,
1677 | "PoolDepth": -0.065501549,
1678 | "PoolArea": 1.662852,
1679 | "PRratio": -0.04095861,
1680 | "BFWDratio": 0.6803355
1681 | },
1682 | {
1683 | "Stream": "Tumalum Ck.",
1684 | "Health": "U",
1685 | "DA": 1.3378584,
1686 | "ReachLen": 4.241148,
1687 | "Pools": 1.1205739,
1688 | "DeepPools": 0,
1689 | "LargePools": 0.5538727,
1690 | "SmLWD": 0.02066971,
1691 | "LrgLWD": 0.1981211,
1692 | "PoolDepth": 0.164352856,
1693 | "PoolArea": 2.333306,
1694 | "PRratio": -0.55284197,
1695 | "BFWDratio": 1.1283993
1696 | },
1697 | {
1698 | "Stream": "Tumalum Ck.",
1699 | "Health": "U",
1700 | "DA": 1.1105897,
1701 | "ReachLen": 4.153998,
1702 | "Pools": 1.1065309,
1703 | "DeepPools": 0.2760967,
1704 | "LargePools": 0.776254,
1705 | "SmLWD": 0.31563775,
1706 | "LrgLWD": 0.41488961,
1707 | "PoolDepth": 0.164352856,
1708 | "PoolArea": 2.328522,
1709 | "PRratio": -0.07572071,
1710 | "BFWDratio": 0.8948697
1711 | },
1712 | {
1713 | "Stream": "Cummings Ck.",
1714 | "Health": "U",
1715 | "DA": 0.6283889,
1716 | "ReachLen": 4.065057,
1717 | "Pools": 1.0161974,
1718 | "DeepPools": 0,
1719 | "LargePools": 0,
1720 | "SmLWD": 0.90354397,
1721 | "LrgLWD": 0.92917561,
1722 | "PoolDepth": 0.004321374,
1723 | "PoolArea": 1.759063,
1724 | "PRratio": -0.39794001,
1725 | "BFWDratio": 1.0161974
1726 | },
1727 | {
1728 | "Stream": "George Ck.",
1729 | "Health": "U",
1730 | "DA": 0.8915375,
1731 | "ReachLen": 4.241148,
1732 | "Pools": 1.2848817,
1733 | "DeepPools": 0,
1734 | "LargePools": 0,
1735 | "SmLWD": 0.78522075,
1736 | "LrgLWD": 0.76610115,
1737 | "PoolDepth": 0.093421685,
1738 | "PoolArea": 1.819017,
1739 | "PRratio": -0.13076828,
1740 | "BFWDratio": 0.9726656
1741 | },
1742 | {
1743 | "Stream": "Coombs2 Ck.",
1744 | "Health": "U",
1745 | "DA": 1.1007151,
1746 | "ReachLen": 3.764027,
1747 | "Pools": 1.2562365,
1748 | "DeepPools": 0.4236608,
1749 | "LargePools": 0.7591328,
1750 | "SmLWD": 0.26829926,
1751 | "LrgLWD": 0.38587833,
1752 | "PoolDepth": 0.187520721,
1753 | "PoolArea": 2.441617,
1754 | "PRratio": -0.04095861,
1755 | "BFWDratio": 1.1455072
1756 | },
1757 | {
1758 | "Stream": "Coombs2 Ck.",
1759 | "Health": "U",
1760 | "DA": 0.8444772,
1761 | "ReachLen": 3.801815,
1762 | "Pools": 1.0951694,
1763 | "DeepPools": 0.4069515,
1764 | "LargePools": 0.4833095,
1765 | "SmLWD": 0.79234579,
1766 | "LrgLWD": 0.73756895,
1767 | "PoolDepth": 0.217483944,
1768 | "PoolArea": 2.045831,
1769 | "PRratio": -0.16749109,
1770 | "BFWDratio": 1.0733517
1771 | },
1772 | {
1773 | "Stream": "Charley3 Ck.",
1774 | "Health": "U",
1775 | "DA": 1.2360331,
1776 | "ReachLen": 4.356102,
1777 | "Pools": 1.0511525,
1778 | "DeepPools": 0,
1779 | "LargePools": 0.1320851,
1780 | "SmLWD": 0.8405819,
1781 | "LrgLWD": 0.86268585,
1782 | "PoolDepth": 0.033423755,
1783 | "PoolArea": 1.761627,
1784 | "PRratio": -0.25181197,
1785 | "BFWDratio": 0.6928469
1786 | },
1787 | {
1788 | "Stream": "Pataha Ck.",
1789 | "Health": "U",
1790 | "DA": 1.4163076,
1791 | "ReachLen": 3.836577,
1792 | "Pools": 1.5878232,
1793 | "DeepPools": 0.6306297,
1794 | "LargePools": 0.9213689,
1795 | "SmLWD": 0.93309719,
1796 | "LrgLWD": 0.82809708,
1797 | "PoolDepth": 0.133538908,
1798 | "PoolArea": 2.383492,
1799 | "PRratio": 0.02530587,
1800 | "BFWDratio": 0.7151674
1801 | }
1802 | ]
--------------------------------------------------------------------------------
/example/sample-data/sample1.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "Sample1": 13.90738679789567,
4 | "Sample2": 11.77935227940546,
5 | "Sample3": 12.02052097080796,
6 | "Sample4": 11.31274091176219
7 | },
8 | {
9 | "Sample1": 10.44981008242258,
10 | "Sample2": 12.41693875422233,
11 | "Sample3": 10.62069234106177,
12 | "Sample4": 11.56777550168893
13 | },
14 | {
15 | "Sample1": 13.08273873402593,
16 | "Sample2": 12.60509399009072,
17 | "Sample3": 11.68665535790524,
18 | "Sample4": 11.64303759603629
19 | },
20 | {
21 | "Sample1": 12.25415446131369,
22 | "Sample2": 12.51008705758248,
23 | "Sample3": 11.35119613818368,
24 | "Sample4": 11.605034823033
25 | },
26 | {
27 | "Sample1": 7.233891103415624,
28 | "Sample2": 7.539516279791267,
29 | "Sample3": 9.318700851585273,
30 | "Sample4": 9.616806511916508
31 | },
32 | {
33 | "Sample1": 7.204399164260235,
34 | "Sample2": 5.336644528671218,
35 | "Sample3": 9.30676079524706,
36 | "Sample4": 8.735657811468487
37 | },
38 | {
39 | "Sample1": 13.40186742564384,
40 | "Sample2": 12.33968897747015,
41 | "Sample3": 11.81585725734569,
42 | "Sample4": 11.53687559098806
43 | },
44 | {
45 | "Sample1": 12.97483074910678,
46 | "Sample2": 10.8723331079027,
47 | "Sample3": 11.64296791461813,
48 | "Sample4": 10.94993324316108
49 | },
50 | {
51 | "Sample1": 12.90447827173348,
52 | "Sample2": 10.87642245949317,
53 | "Sample3": 11.61448513025647,
54 | "Sample4": 10.95156898379727
55 | },
56 | {
57 | "Sample1": 10.06280043151188,
58 | "Sample2": 15.39537982778956,
59 | "Sample3": 10.46400827186716,
60 | "Sample4": 12.75915193111582
61 | },
62 | {
63 | "Sample1": 12.36272895632277,
64 | "Sample2": 17.25857893690515,
65 | "Sample3": 11.39515342361246,
66 | "Sample4": 13.50443157476206
67 | },
68 | {
69 | "Sample1": 8.71839204945468,
70 | "Sample2": 13.15448929331649,
71 | "Sample3": 9.919713380346025,
72 | "Sample4": 11.8627957173266
73 | },
74 | {
75 | "Sample1": 12.25997670559095,
76 | "Sample2": 13.67218879875831,
77 | "Sample3": 11.3535533221016,
78 | "Sample4": 12.06987551950332
79 | },
80 | {
81 | "Sample1": 7.051955731149074,
82 | "Sample2": 12.03502175742258,
83 | "Sample3": 9.24504280613323,
84 | "Sample4": 11.41500870296903
85 | },
86 | {
87 | "Sample1": 12.7751289420107,
88 | "Sample2": 12.56030305031065,
89 | "Sample3": 11.56211698057114,
90 | "Sample4": 11.62512122012426
91 | },
92 | {
93 | "Sample1": 6.637319713831208,
94 | "Sample2": 9.220704736918613,
95 | "Sample3": 9.077173973211016,
96 | "Sample4": 10.28928189476744
97 | },
98 | {
99 | "Sample1": 7.481173794098553,
100 | "Sample2": 12.30241772909968,
101 | "Sample3": 9.418815301254476,
102 | "Sample4": 11.52196709163987
103 | },
104 | {
105 | "Sample1": 17.30717050527443,
106 | "Sample2": 11.42081933934884,
107 | "Sample3": 13.3969516215686,
108 | "Sample4": 11.16932773573954
109 | },
110 | {
111 | "Sample1": 12.05585255417274,
112 | "Sample2": 11.00172137474418,
113 | "Sample3": 11.27091196525212,
114 | "Sample4": 11.00168854989767
115 | },
116 | {
117 | "Sample1": 8.683949288887758,
118 | "Sample2": 12.9449880868449,
119 | "Sample3": 9.90576894286954,
120 | "Sample4": 11.77899523473796
121 | },
122 | {
123 | "Sample1": 10.29034520702276,
124 | "Sample2": 14.7217794459843,
125 | "Sample3": 10.55613166276225,
126 | "Sample4": 12.48971177839372
127 | },
128 | {
129 | "Sample1": 7.855475878006226,
130 | "Sample2": 8.337131158924644,
131 | "Sample3": 9.570354606480254,
132 | "Sample4": 9.935852463569857
133 | },
134 | {
135 | "Sample1": 16.19835295836256,
136 | "Sample2": 15.47491213328122,
137 | "Sample3": 12.9480376349646,
138 | "Sample4": 12.79096485331248
139 | },
140 | {
141 | "Sample1": 8.402911615477699,
142 | "Sample2": 11.15630011502597,
143 | "Sample3": 9.791988508290567,
144 | "Sample4": 11.06352004601039
145 | },
146 | {
147 | "Sample1": 7.364873150481865,
148 | "Sample2": 9.664500966949705,
149 | "Sample3": 9.371730020438003,
150 | "Sample4": 10.46680038677988
151 | },
152 | {
153 | "Sample1": 15.0497395755204,
154 | "Sample2": 10.89168893439244,
155 | "Sample3": 12.4830119738949,
156 | "Sample4": 10.95767557375698
157 | },
158 | {
159 | "Sample1": 14.85275800179291,
160 | "Sample2": 8.401607910600921,
161 | "Sample3": 12.40326234890401,
162 | "Sample4": 9.961643164240368
163 | },
164 | {
165 | "Sample1": 7.739073503085144,
166 | "Sample2": 12.03654555357087,
167 | "Sample3": 9.52322813890087,
168 | "Sample4": 11.41561822142834
169 | },
170 | {
171 | "Sample1": 14.18778864626257,
172 | "Sample2": 15.88126592656449,
173 | "Sample3": 12.13404398634112,
174 | "Sample4": 12.9535063706258
175 | },
176 | {
177 | "Sample1": 15.94155570634496,
178 | "Sample2": 12.25482624159996,
179 | "Sample3": 12.84407113617205,
180 | "Sample4": 11.50293049663998
181 | },
182 | {
183 | "Sample1": 8.79679698325046,
184 | "Sample2": 9.573681156443525,
185 | "Sample3": 9.951456268522454,
186 | "Sample4": 10.43047246257741
187 | },
188 | {
189 | "Sample1": 14.22632942140702,
190 | "Sample2": 14.88849374818799,
191 | "Sample3": 12.14964753903118,
192 | "Sample4": 12.5563974992752
193 | },
194 | {
195 | "Sample1": 13.30428323466719,
196 | "Sample2": 12.28216691102709,
197 | "Sample3": 11.77634948771951,
198 | "Sample4": 11.51386676441084
199 | },
200 | {
201 | "Sample1": 8.042159058593347,
202 | "Sample2": 11.54363743689265,
203 | "Sample3": 9.64593484153577,
204 | "Sample4": 11.21845497475706
205 | },
206 | {
207 | "Sample1": 11.51964984723296,
208 | "Sample2": 11.3213647699985,
209 | "Sample3": 11.05382584908217,
210 | "Sample4": 11.1295459079994
211 | },
212 | {
213 | "Sample1": 10.17790025825684,
214 | "Sample2": 7.02866925434776,
215 | "Sample3": 10.51060739200682,
216 | "Sample4": 9.412467701739104
217 | },
218 | {
219 | "Sample1": 8.181234757456519,
220 | "Sample2": 8.971286183293829,
221 | "Sample3": 9.702240792492518,
222 | "Sample4": 10.18951447331753
223 | },
224 | {
225 | "Sample1": 8.329430566650883,
226 | "Sample2": 8.919410188157167,
227 | "Sample3": 9.762239095810076,
228 | "Sample4": 10.16876407526287
229 | },
230 | {
231 | "Sample1": 10.31651051494867,
232 | "Sample2": 11.98621029681748,
233 | "Sample3": 10.56672490483752,
234 | "Sample4": 11.395484118727
235 | },
236 | {
237 | "Sample1": 12.34992272946875,
238 | "Sample2": 8.817222103737018,
239 | "Sample3": 11.38996871638411,
240 | "Sample4": 10.12788884149481
241 | },
242 | {
243 | "Sample1": 8.839849746996494,
244 | "Sample2": 6.440800733863822,
245 | "Sample3": 9.968886537245545,
246 | "Sample4": 9.17732029354553
247 | },
248 | {
249 | "Sample1": 11.05449785674213,
250 | "Sample2": 13.98362728349512,
251 | "Sample3": 10.86550520515876,
252 | "Sample4": 12.19445091339805
253 | },
254 | {
255 | "Sample1": 11.77195249689261,
256 | "Sample2": 10.55314009383288,
257 | "Sample3": 11.15597267080673,
258 | "Sample4": 10.82225603753315
259 | },
260 | {
261 | "Sample1": 9.139467722785549,
262 | "Sample2": 13.07669048470281,
263 | "Sample3": 10.09018936145164,
264 | "Sample4": 11.83167619388112
265 | },
266 | {
267 | "Sample1": 9.578830805483078,
268 | "Sample2": 12.68047678461996,
269 | "Sample3": 10.26806915201744,
270 | "Sample4": 11.67319071384798
271 | },
272 | {
273 | "Sample1": 14.14684138285604,
274 | "Sample2": 8.490728540811684,
275 | "Sample3": 12.11746614690528,
276 | "Sample4": 9.997291416324675
277 | },
278 | {
279 | "Sample1": 10.44477032891628,
280 | "Sample2": 12.06374974224458,
281 | "Sample3": 10.61865195502684,
282 | "Sample4": 11.42649989689783
283 | },
284 | {
285 | "Sample1": 4.319600584676148,
286 | "Sample2": 11.09307916705647,
287 | "Sample3": 8.138826147642167,
288 | "Sample4": 11.03823166682259
289 | },
290 | {
291 | "Sample1": 10.63274740772976,
292 | "Sample2": 11.08570718138773,
293 | "Sample3": 10.69475603551812,
294 | "Sample4": 11.03528287255509
295 | },
296 | {
297 | "Sample1": 10.1062272000257,
298 | "Sample2": 14.40335351780255,
299 | "Sample3": 10.48158995952458,
300 | "Sample4": 12.36234140712102
301 | },
302 | {
303 | "Sample1": 9.866832003571805,
304 | "Sample2": 10.79846934570936,
305 | "Sample3": 10.38466882735701,
306 | "Sample4": 10.92038773828375
307 | },
308 | {
309 | "Sample1": 15.25005769279712,
310 | "Sample2": 11.65712857976026,
311 | "Sample3": 12.56411242623365,
312 | "Sample4": 11.2638514319041
313 | },
314 | {
315 | "Sample1": 12.5267819756973,
316 | "Sample2": 11.78085050301185,
317 | "Sample3": 11.46157165007988,
318 | "Sample4": 11.31334020120474
319 | },
320 | {
321 | "Sample1": 12.59882751537422,
322 | "Sample2": 8.894790996346599,
323 | "Sample3": 11.49073988476689,
324 | "Sample4": 10.15891639853864
325 | },
326 | {
327 | "Sample1": 9.507601398691717,
328 | "Sample2": 10.31126151896589,
329 | "Sample3": 10.23923133550272,
330 | "Sample4": 10.72550460758636
331 | },
332 | {
333 | "Sample1": 9.987188781676918,
334 | "Sample2": 11.46862410111517,
335 | "Sample3": 10.43339626788539,
336 | "Sample4": 11.18844964044607
337 | },
338 | {
339 | "Sample1": 14.13221960107744,
340 | "Sample2": 8.853693333866493,
341 | "Sample3": 12.11154639719735,
342 | "Sample4": 10.1424773335466
343 | },
344 | {
345 | "Sample1": 3.371069511264888,
346 | "Sample2": 7.626147468355216,
347 | "Sample3": 7.754805470147729,
348 | "Sample4": 9.651458987342089
349 | },
350 | {
351 | "Sample1": 13.52283172344763,
352 | "Sample2": 10.27898009883292,
353 | "Sample3": 11.86483065726625,
354 | "Sample4": 10.71259203953317
355 | },
356 | {
357 | "Sample1": 13.22663030883544,
358 | "Sample2": 10.17127306228975,
359 | "Sample3": 11.74491105620868,
360 | "Sample4": 10.6695092249159
361 | },
362 | {
363 | "Sample1": 10.57984895054493,
364 | "Sample2": 13.96067839101705,
365 | "Sample3": 10.67333965609107,
366 | "Sample4": 12.18527135640682
367 | },
368 | {
369 | "Sample1": 8.126191333478145,
370 | "Sample2": 10.25706543840536,
371 | "Sample3": 9.67995600545674,
372 | "Sample4": 10.70382617536214
373 | },
374 | {
375 | "Sample1": 13.68968726980748,
376 | "Sample2": 8.531240159165183,
377 | "Sample3": 11.93238351004352,
378 | "Sample4": 10.01349606366607
379 | },
380 | {
381 | "Sample1": 9.289323287052081,
382 | "Sample2": 9.323854618525626,
383 | "Sample3": 10.15085963038546,
384 | "Sample4": 10.33054184741025
385 | },
386 | {
387 | "Sample1": 8.313152306937607,
388 | "Sample2": 10.57892512968315,
389 | "Sample3": 9.75564870726219,
390 | "Sample4": 10.83257005187326
391 | },
392 | {
393 | "Sample1": 12.97736807009995,
394 | "Sample2": 10.33185067735026,
395 | "Sample3": 11.64399517008095,
396 | "Sample4": 10.7337402709401
397 | },
398 | {
399 | "Sample1": 8.62010354931608,
400 | "Sample2": 13.89170874219422,
401 | "Sample3": 9.879920465310153,
402 | "Sample4": 12.15768349687769
403 | },
404 | {
405 | "Sample1": 9.866972433849396,
406 | "Sample2": 12.67373489861354,
407 | "Sample3": 10.3847256817204,
408 | "Sample4": 11.67049395944542
409 | },
410 | {
411 | "Sample1": 13.43947034865178,
412 | "Sample2": 11.44461939893287,
413 | "Sample3": 11.83108111281449,
414 | "Sample4": 11.17884775957315
415 | },
416 | {
417 | "Sample1": 7.692890550114838,
418 | "Sample2": 10.96852756629854,
419 | "Sample3": 9.50453058709103,
420 | "Sample4": 10.98841102651942
421 | },
422 | {
423 | "Sample1": 15.22071184910461,
424 | "Sample2": 9.839965805086557,
425 | "Sample3": 12.55223151785612,
426 | "Sample4": 10.53698632203462
427 | },
428 | {
429 | "Sample1": 8.385949169617458,
430 | "Sample2": 11.49552392297978,
431 | "Sample3": 9.785121121302616,
432 | "Sample4": 11.19920956919191
433 | },
434 | {
435 | "Sample1": 10.88915055057127,
436 | "Sample2": 14.544061693322,
437 | "Sample3": 10.79856297593979,
438 | "Sample4": 12.4186246773288
439 | },
440 | {
441 | "Sample1": 9.327176517024071,
442 | "Sample2": 9.763087283834118,
443 | "Sample3": 10.1661848247061,
444 | "Sample4": 10.50623491353365
445 | },
446 | {
447 | "Sample1": 6.263501013014663,
448 | "Sample2": 10.60021594156059,
449 | "Sample3": 8.925830369641565,
450 | "Sample4": 10.84108637662424
451 | },
452 | {
453 | "Sample1": 13.25781693324072,
454 | "Sample2": 16.42988142383755,
455 | "Sample3": 11.75753721993552,
456 | "Sample4": 13.17295256953502
457 | },
458 | {
459 | "Sample1": 9.482986518999432,
460 | "Sample2": 11.00970597402588,
461 | "Sample3": 10.22926579716576,
462 | "Sample4": 11.00488238961035
463 | },
464 | {
465 | "Sample1": 7.327889484648342,
466 | "Sample2": 9.088099043061897,
467 | "Sample3": 9.356756876375847,
468 | "Sample4": 10.23623961722476
469 | },
470 | {
471 | "Sample1": 15.03672047708325,
472 | "Sample2": 11.60571247369137,
473 | "Sample3": 12.47774108383937,
474 | "Sample4": 11.24328498947655
475 | },
476 | {
477 | "Sample1": 12.24502942608986,
478 | "Sample2": 7.086246993385427,
479 | "Sample3": 11.34750179193922,
480 | "Sample4": 9.435498797354173
481 | },
482 | {
483 | "Sample1": 8.07672921237454,
484 | "Sample2": 7.8548032244496,
485 | "Sample3": 9.659930855212366,
486 | "Sample4": 9.74292128977984
487 | },
488 | {
489 | "Sample1": 9.18640380667313,
490 | "Sample2": 12.90709967828194,
491 | "Sample3": 10.10919182456402,
492 | "Sample4": 11.76383987131278
493 | },
494 | {
495 | "Sample1": 12.52474675047713,
496 | "Sample2": 13.72905103023871,
497 | "Sample3": 11.46074767225795,
498 | "Sample4": 12.09262041209548
499 | },
500 | {
501 | "Sample1": 8.239838021625689,
502 | "Sample2": 11.79518401248584,
503 | "Sample3": 9.725966810374773,
504 | "Sample4": 11.31907360499433
505 | },
506 | {
507 | "Sample1": 10.58443443444469,
508 | "Sample2": 10.80692910740832,
509 | "Sample3": 10.67519612730554,
510 | "Sample4": 10.92377164296333
511 | },
512 | {
513 | "Sample1": 9.359418343335204,
514 | "Sample2": 11.51996472671038,
515 | "Sample3": 10.17923819568227,
516 | "Sample4": 11.20898589068415
517 | },
518 | {
519 | "Sample1": 12.11560668653732,
520 | "Sample2": 11.5867672751653,
521 | "Sample3": 11.29510392167503,
522 | "Sample4": 11.23570691006612
523 | },
524 | {
525 | "Sample1": 15.09719590636458,
526 | "Sample2": 10.4759692865097,
527 | "Sample3": 12.5022250633055,
528 | "Sample4": 10.79138771460388
529 | },
530 | {
531 | "Sample1": 11.88686616092139,
532 | "Sample2": 10.19694387349252,
533 | "Sample3": 11.20249642142567,
534 | "Sample4": 10.67977754939701
535 | },
536 | {
537 | "Sample1": 14.55932833158156,
538 | "Sample2": 10.34530510040184,
539 | "Sample3": 12.28446491157148,
540 | "Sample4": 10.73912204016073
541 | },
542 | {
543 | "Sample1": 12.5535593496612,
544 | "Sample2": 13.30249567371044,
545 | "Sample3": 11.47241269217052,
546 | "Sample4": 11.92199826948418
547 | },
548 | {
549 | "Sample1": 12.70874709816789,
550 | "Sample2": 9.86491744788106,
551 | "Sample3": 11.53524174014894,
552 | "Sample4": 10.54696697915242
553 | },
554 | {
555 | "Sample1": 12.291105330608,
556 | "Sample2": 8.816938301703619,
557 | "Sample3": 11.36615600429474,
558 | "Sample4": 10.12777532068145
559 | },
560 | {
561 | "Sample1": 7.617221063380054,
562 | "Sample2": 11.41599513446244,
563 | "Sample3": 9.473895167360347,
564 | "Sample4": 11.16739805378498
565 | },
566 | {
567 | "Sample1": 8.342978963695892,
568 | "Sample2": 12.86536408786772,
569 | "Sample3": 9.767724276799957,
570 | "Sample4": 11.74714563514709
571 | },
572 | {
573 | "Sample1": 10.48784591620048,
574 | "Sample2": 8.815368018274865,
575 | "Sample3": 10.63609146404878,
576 | "Sample4": 10.12714720730995
577 | },
578 | {
579 | "Sample1": 7.509577197499183,
580 | "Sample2": 10.10929848844078,
581 | "Sample3": 9.43031465485797,
582 | "Sample4": 10.64471939537631
583 | },
584 | {
585 | "Sample1": 11.59484270003712,
586 | "Sample2": 10.81756686480986,
587 | "Sample3": 11.08426829961017,
588 | "Sample4": 10.92802674592394
589 | },
590 | {
591 | "Sample1": 10.5459762809107,
592 | "Sample2": 10.90847230743606,
593 | "Sample3": 10.6596260246602,
594 | "Sample4": 10.96438892297442
595 | },
596 | {
597 | "Sample1": 13.33381512367,
598 | "Sample2": 16.27015118682454,
599 | "Sample3": 11.78830571808502,
600 | "Sample4": 13.10906047472982
601 | },
602 | {
603 | "Sample1": 14.3646005187157,
604 | "Sample2": 11.56510602467974,
605 | "Sample3": 12.20562774037073,
606 | "Sample4": 11.2270424098719
607 | },
608 | {
609 | "Sample1": 13.18240631989933,
610 | "Sample2": 7.371704130823771,
611 | "Sample3": 11.72700660724669,
612 | "Sample4": 9.549681652329507
613 | },
614 | {
615 | "Sample1": 11.12855673066374,
616 | "Sample2": 13.49671522069524,
617 | "Sample3": 10.89548855492459,
618 | "Sample4": 11.9996860882781
619 | },
620 | {
621 | "Sample1": 8.301582914201937,
622 | "Sample2": 13.04337153464374,
623 | "Sample3": 9.75096474259188,
624 | "Sample4": 11.8183486138575
625 | },
626 | {
627 | "Sample1": 11.37320495867012,
628 | "Sample2": 11.08592718324049,
629 | "Sample3": 10.99453642051422,
630 | "Sample4": 11.0353708732962
631 | },
632 | {
633 | "Sample1": 9.70122395856769,
634 | "Sample2": 15.63636684510023,
635 | "Sample3": 10.31762103585737,
636 | "Sample4": 12.85554673804009
637 | },
638 | {
639 | "Sample1": 10.25067724063943,
640 | "Sample2": 10.36307690568316,
641 | "Sample3": 10.5400717573439,
642 | "Sample4": 10.74623076227326
643 | },
644 | {
645 | "Sample1": 9.33568591108986,
646 | "Sample2": 15.73303907767796,
647 | "Sample3": 10.16962992351816,
648 | "Sample4": 12.89421563107118
649 | },
650 | {
651 | "Sample1": 8.396640953947962,
652 | "Sample2": 13.52693548756849,
653 | "Sample3": 9.7894497789263,
654 | "Sample4": 12.0117741950274
655 | },
656 | {
657 | "Sample1": 11.22272909690706,
658 | "Sample2": 14.5353948414262,
659 | "Sample3": 10.93361501899072,
660 | "Sample4": 12.41515793657048
661 | },
662 | {
663 | "Sample1": 11.86702561354488,
664 | "Sample2": 11.24142305996659,
665 | "Sample3": 11.19446381115178,
666 | "Sample4": 11.09756922398664
667 | },
668 | {
669 | "Sample1": 6.36759523263223,
670 | "Sample2": 9.751979686190875,
671 | "Sample3": 8.967973778393617,
672 | "Sample4": 10.50179187447635
673 | },
674 | {
675 | "Sample1": 11.71687613002448,
676 | "Sample2": 13.37531650757343,
677 | "Sample3": 11.13367454656862,
678 | "Sample4": 11.95112660302937
679 | },
680 | {
681 | "Sample1": 11.74687541408596,
682 | "Sample2": 11.91885611853984,
683 | "Sample3": 11.14582000570282,
684 | "Sample4": 11.36854244741594
685 | },
686 | {
687 | "Sample1": 10.79371740308084,
688 | "Sample2": 10.76908674754712,
689 | "Sample3": 10.7599260741218,
690 | "Sample4": 10.90863469901885
691 | },
692 | {
693 | "Sample1": 8.920783954754928,
694 | "Sample2": 7.307720515269776,
695 | "Sample3": 10.0016534229777,
696 | "Sample4": 9.52408820610791
697 | },
698 | {
699 | "Sample1": 12.95165237925852,
700 | "Sample2": 7.738591623460194,
701 | "Sample3": 11.63358395921398,
702 | "Sample4": 9.696436649384077
703 | },
704 | {
705 | "Sample1": 11.18583197614576,
706 | "Sample2": 9.781424750703776,
707 | "Sample3": 10.91867691341934,
708 | "Sample4": 10.51356990028151
709 | },
710 | {
711 | "Sample1": 10.62262063341824,
712 | "Sample2": 12.12508689361768,
713 | "Sample3": 10.69065612688998,
714 | "Sample4": 11.45103475744707
715 | },
716 | {
717 | "Sample1": 11.55006975687613,
718 | "Sample2": 9.226776411180523,
719 | "Sample3": 11.06614160197414,
720 | "Sample4": 10.29171056447221
721 | },
722 | {
723 | "Sample1": 13.7589315713533,
724 | "Sample2": 16.47798967173207,
725 | "Sample3": 11.96041764022401,
726 | "Sample4": 13.19219586869283
727 | },
728 | {
729 | "Sample1": 9.976487660804564,
730 | "Sample2": 6.274294920218059,
731 | "Sample3": 10.42906383028525,
732 | "Sample4": 9.110717968087224
733 | },
734 | {
735 | "Sample1": 7.415710800090474,
736 | "Sample2": 15.32360604454287,
737 | "Sample3": 9.392312064813957,
738 | "Sample4": 12.73044241781715
739 | },
740 | {
741 | "Sample1": 8.90233933502158,
742 | "Sample2": 10.40329007495075,
743 | "Sample3": 9.994185965595783,
744 | "Sample4": 10.7623160299803
745 | },
746 | {
747 | "Sample1": 7.88410902152913,
748 | "Sample2": 7.107201194235144,
749 | "Sample3": 9.581946972279,
750 | "Sample4": 9.443880477694059
751 | },
752 | {
753 | "Sample1": 9.267183777763668,
754 | "Sample2": 11.0381532928522,
755 | "Sample3": 10.14189626630108,
756 | "Sample4": 11.01626131714088
757 | },
758 | {
759 | "Sample1": 7.521510704055567,
760 | "Sample2": 13.52654842556816,
761 | "Sample3": 9.435146034030595,
762 | "Sample4": 12.01161937022726
763 | },
764 | {
765 | "Sample1": 8.622840214625958,
766 | "Sample2": 11.99188314343847,
767 | "Sample3": 9.881028426974073,
768 | "Sample4": 11.39775325737539
769 | },
770 | {
771 | "Sample1": 8.686134579185982,
772 | "Sample2": 7.190212346369707,
773 | "Sample3": 9.9066536757838,
774 | "Sample4": 9.477084938547883
775 | },
776 | {
777 | "Sample1": 14.27305323316734,
778 | "Sample2": 12.68583006885847,
779 | "Sample3": 12.16856406201107,
780 | "Sample4": 11.67533202754339
781 | },
782 | {
783 | "Sample1": 9.638794169813602,
784 | "Sample2": 10.94443532483464,
785 | "Sample3": 10.2923458177383,
786 | "Sample4": 10.97877412993385
787 | },
788 | {
789 | "Sample1": 9.538811709063024,
790 | "Sample2": 9.299920459902784,
791 | "Sample3": 10.25186708868948,
792 | "Sample4": 10.32096818396111
793 | },
794 | {
795 | "Sample1": 10.18337229049505,
796 | "Sample2": 8.551861703358707,
797 | "Sample3": 10.51282278967411,
798 | "Sample4": 10.02174468134348
799 | },
800 | {
801 | "Sample1": 10.18075056591912,
802 | "Sample2": 12.81524114222322,
803 | "Sample3": 10.5117613627203,
804 | "Sample4": 11.72709645688928
805 | },
806 | {
807 | "Sample1": 11.04993991298702,
808 | "Sample2": 10.88909922461028,
809 | "Sample3": 10.86365988380041,
810 | "Sample4": 10.95663968984411
811 | },
812 | {
813 | "Sample1": 7.508576772629086,
814 | "Sample2": 12.04865534458433,
815 | "Sample3": 9.42990962454619,
816 | "Sample4": 11.42046213783374
817 | },
818 | {
819 | "Sample1": 13.6999999726943,
820 | "Sample2": 10.16035826361966,
821 | "Sample3": 11.93655869339851,
822 | "Sample4": 10.66514330544786
823 | },
824 | {
825 | "Sample1": 13.31342569595029,
826 | "Sample2": 17.54684748016873,
827 | "Sample3": 11.7800508890487,
828 | "Sample4": 13.61973899206749
829 | },
830 | {
831 | "Sample1": 11.22315233443876,
832 | "Sample2": 10.23537330911686,
833 | "Sample3": 10.93378637021812,
834 | "Sample4": 10.69514932364675
835 | },
836 | {
837 | "Sample1": 10.86233621213708,
838 | "Sample2": 10.98440891842534,
839 | "Sample3": 10.78770696847655,
840 | "Sample4": 10.99476356737014
841 | },
842 | {
843 | "Sample1": 11.13811301063573,
844 | "Sample2": 9.736909386626948,
845 | "Sample3": 10.89935749418451,
846 | "Sample4": 10.49576375465078
847 | },
848 | {
849 | "Sample1": 8.269301253934346,
850 | "Sample2": 11.13466663010565,
851 | "Sample3": 9.737895244507833,
852 | "Sample4": 11.05486665204226
853 | },
854 | {
855 | "Sample1": 8.9148998818637,
856 | "Sample2": 11.96499063581784,
857 | "Sample3": 9.999271207232267,
858 | "Sample4": 11.38699625432714
859 | },
860 | {
861 | "Sample1": 12.55828238567897,
862 | "Sample2": 12.2017777783369,
863 | "Sample3": 11.47432485250161,
864 | "Sample4": 11.48171111133476
865 | },
866 | {
867 | "Sample1": 10.31048345288511,
868 | "Sample2": 9.591807981178286,
869 | "Sample3": 10.56428479873891,
870 | "Sample4": 10.43772319247131
871 | },
872 | {
873 | "Sample1": 10.90333341857138,
874 | "Sample2": 14.33551031914796,
875 | "Sample3": 10.80430502776169,
876 | "Sample4": 12.33520412765918
877 | },
878 | {
879 | "Sample1": 13.75598420189168,
880 | "Sample2": 11.9601418155981,
881 | "Sample3": 11.9592243732355,
882 | "Sample4": 11.38505672623924
883 | },
884 | {
885 | "Sample1": 8.191582720614548,
886 | "Sample2": 9.562211833382213,
887 | "Sample3": 9.70643025126095,
888 | "Sample4": 10.42588473335288
889 | },
890 | {
891 | "Sample1": 12.91749359139179,
892 | "Sample2": 11.10627411753767,
893 | "Sample3": 11.61975449044202,
894 | "Sample4": 11.04350964701507
895 | },
896 | {
897 | "Sample1": 9.74465948595688,
898 | "Sample2": 9.932777512104122,
899 | "Sample3": 10.33520626961817,
900 | "Sample4": 10.57411100484165
901 | },
902 | {
903 | "Sample1": 14.62623607209681,
904 | "Sample2": 8.747333436092664,
905 | "Sample3": 12.31155306562624,
906 | "Sample4": 10.09993337443706
907 | },
908 | {
909 | "Sample1": 8.356171120948247,
910 | "Sample2": 9.504817175484511,
911 | "Sample3": 9.773065231153137,
912 | "Sample4": 10.4029268701938
913 | },
914 | {
915 | "Sample1": 11.82154473896157,
916 | "Sample2": 11.45869102016214,
917 | "Sample3": 11.17605050160388,
918 | "Sample4": 11.18447640806486
919 | },
920 | {
921 | "Sample1": 8.82641733975151,
922 | "Sample2": 10.86077190840982,
923 | "Sample3": 9.963448315688872,
924 | "Sample4": 10.94530876336393
925 | },
926 | {
927 | "Sample1": 8.890854614293854,
928 | "Sample2": 16.15801304888623,
929 | "Sample3": 9.98953628109063,
930 | "Sample4": 13.06420521955449
931 | },
932 | {
933 | "Sample1": 12.85170549165827,
934 | "Sample2": 9.442117211075997,
935 | "Sample3": 11.59311963225031,
936 | "Sample4": 10.3778468844304
937 | },
938 | {
939 | "Sample1": 12.26954120852372,
940 | "Sample2": 9.9746455335576,
941 | "Sample3": 11.35742559049544,
942 | "Sample4": 10.59085821342304
943 | },
944 | {
945 | "Sample1": 12.24708485847467,
946 | "Sample2": 11.51594081432595,
947 | "Sample3": 11.34833395079946,
948 | "Sample4": 11.20737632573038
949 | },
950 | {
951 | "Sample1": 8.268267879756559,
952 | "Sample2": 6.294880583075188,
953 | "Sample3": 9.73747687439537,
954 | "Sample4": 9.118952233230075
955 | },
956 | {
957 | "Sample1": 13.14457446949071,
958 | "Sample2": 10.87946195196347,
959 | "Sample3": 11.71169006861972,
960 | "Sample4": 10.95278478078539
961 | },
962 | {
963 | "Sample1": 10.40283065485993,
964 | "Sample2": 12.30676189401842,
965 | "Sample3": 10.6016723299028,
966 | "Sample4": 11.52370475760736
967 | },
968 | {
969 | "Sample1": 8.261965415533288,
970 | "Sample2": 12.13759995991456,
971 | "Sample3": 9.734925269446679,
972 | "Sample4": 11.45603998396582
973 | },
974 | {
975 | "Sample1": 9.083010291172773,
976 | "Sample2": 9.56843072476751,
977 | "Sample3": 10.06733210168938,
978 | "Sample4": 10.428372289907
979 | },
980 | {
981 | "Sample1": 13.60547754376642,
982 | "Sample2": 13.13220778628847,
983 | "Sample3": 11.89829050354916,
984 | "Sample4": 11.85388311451539
985 | },
986 | {
987 | "Sample1": 6.759589310591052,
988 | "Sample2": 6.85683298284542,
989 | "Sample3": 9.12667583424739,
990 | "Sample4": 9.343733193138169
991 | },
992 | {
993 | "Sample1": 14.58911688902859,
994 | "Sample2": 9.522821930461758,
995 | "Sample3": 12.29652505628688,
996 | "Sample4": 10.4101287721847
997 | },
998 | {
999 | "Sample1": 13.11593453506621,
1000 | "Sample2": 8.443674754530399,
1001 | "Sample3": 11.7000949534681,
1002 | "Sample4": 9.97846990181216
1003 | },
1004 | {
1005 | "Sample1": 11.62070991090747,
1006 | "Sample2": 11.35565370648073,
1007 | "Sample3": 11.09474085461841,
1008 | "Sample4": 11.14326148259229
1009 | },
1010 | {
1011 | "Sample1": 8.536555475508113,
1012 | "Sample2": 10.94270398428833,
1013 | "Sample3": 9.846095334213812,
1014 | "Sample4": 10.97808159371533
1015 | },
1016 | {
1017 | "Sample1": 11.41451467574252,
1018 | "Sample2": 10.34573619089167,
1019 | "Sample3": 11.01126100232491,
1020 | "Sample4": 10.73929447635667
1021 | },
1022 | {
1023 | "Sample1": 9.90876186393373,
1024 | "Sample2": 11.84797554148286,
1025 | "Sample3": 10.4016444793254,
1026 | "Sample4": 11.34019021659315
1027 | },
1028 | {
1029 | "Sample1": 14.32769663775609,
1030 | "Sample2": 10.91447740909834,
1031 | "Sample3": 12.19068689787696,
1032 | "Sample4": 10.96679096363934
1033 | },
1034 | {
1035 | "Sample1": 11.04770601346391,
1036 | "Sample2": 10.78778204906698,
1037 | "Sample3": 10.86275547103802,
1038 | "Sample4": 10.91611281962679
1039 | },
1040 | {
1041 | "Sample1": 11.75921606540932,
1042 | "Sample2": 10.38117991447644,
1043 | "Sample3": 11.15081622081349,
1044 | "Sample4": 10.75347196579057
1045 | },
1046 | {
1047 | "Sample1": 8.773224513270089,
1048 | "Sample2": 8.14824264351504,
1049 | "Sample3": 9.941912758408945,
1050 | "Sample4": 9.860297057406015
1051 | },
1052 | {
1053 | "Sample1": 7.859499872290991,
1054 | "Sample2": 6.723189690357731,
1055 | "Sample3": 9.571983753963965,
1056 | "Sample4": 9.290275876143092
1057 | },
1058 | {
1059 | "Sample1": 8.94301371000294,
1060 | "Sample2": 10.36897020990554,
1061 | "Sample3": 10.01065332388783,
1062 | "Sample4": 10.74858808396222
1063 | },
1064 | {
1065 | "Sample1": 7.805836628273807,
1066 | "Sample2": 12.27068483904357,
1067 | "Sample3": 9.550257744240408,
1068 | "Sample4": 11.50927393561743
1069 | },
1070 | {
1071 | "Sample1": 9.050247310156756,
1072 | "Sample2": 9.562858389332822,
1073 | "Sample3": 10.05406773690557,
1074 | "Sample4": 10.42614335573313
1075 | },
1076 | {
1077 | "Sample1": 10.81902768974847,
1078 | "Sample2": 9.492642286827266,
1079 | "Sample3": 10.77017315374432,
1080 | "Sample4": 10.39805691473091
1081 | },
1082 | {
1083 | "Sample1": 11.8293050421751,
1084 | "Sample2": 9.718842603194958,
1085 | "Sample3": 11.17919232476725,
1086 | "Sample4": 10.48853704127798
1087 | },
1088 | {
1089 | "Sample1": 13.20722626538698,
1090 | "Sample2": 8.870767804101275,
1091 | "Sample3": 11.73705516817286,
1092 | "Sample4": 10.14930712164051
1093 | },
1094 | {
1095 | "Sample1": 9.064226903667292,
1096 | "Sample2": 6.808456141181804,
1097 | "Sample3": 10.05972749136328,
1098 | "Sample4": 9.32438245647272
1099 | },
1100 | {
1101 | "Sample1": 9.861920663736676,
1102 | "Sample2": 10.71263052777004,
1103 | "Sample3": 10.38268043066262,
1104 | "Sample4": 10.88605221110801
1105 | },
1106 | {
1107 | "Sample1": 10.38999925140677,
1108 | "Sample2": 11.8128032347221,
1109 | "Sample3": 10.59647742971934,
1110 | "Sample4": 11.32612129388884
1111 | },
1112 | {
1113 | "Sample1": 10.34286554651679,
1114 | "Sample2": 13.98704623899119,
1115 | "Sample3": 10.57739495810397,
1116 | "Sample4": 12.19581849559648
1117 | },
1118 | {
1119 | "Sample1": 10.19989364656935,
1120 | "Sample2": 10.64474205747364,
1121 | "Sample3": 10.51951159780136,
1122 | "Sample4": 10.85889682298946
1123 | },
1124 | {
1125 | "Sample1": 13.12702382779095,
1126 | "Sample2": 11.49717314816585,
1127 | "Sample3": 11.70458454566435,
1128 | "Sample4": 11.19986925926634
1129 | },
1130 | {
1131 | "Sample1": 11.99699885783871,
1132 | "Sample2": 8.311571907655646,
1133 | "Sample3": 11.24708455782944,
1134 | "Sample4": 9.925628763062258
1135 | },
1136 | {
1137 | "Sample1": 8.272304964503743,
1138 | "Sample2": 12.23410659784578,
1139 | "Sample3": 9.739111321661435,
1140 | "Sample4": 11.49464263913832
1141 | },
1142 | {
1143 | "Sample1": 9.170338736666006,
1144 | "Sample2": 12.74984564072471,
1145 | "Sample3": 10.10268774763806,
1146 | "Sample4": 11.70093825628988
1147 | },
1148 | {
1149 | "Sample1": 10.60293525975978,
1150 | "Sample2": 10.13300567201142,
1151 | "Sample3": 10.68268633998372,
1152 | "Sample4": 10.65420226880457
1153 | },
1154 | {
1155 | "Sample1": 13.22581996437539,
1156 | "Sample2": 8.013690292672923,
1157 | "Sample3": 11.7445829815285,
1158 | "Sample4": 9.806476117069169
1159 | },
1160 | {
1161 | "Sample1": 11.07694990788943,
1162 | "Sample2": 9.41526154916198,
1163 | "Sample3": 10.87459510440868,
1164 | "Sample4": 10.36710461966479
1165 | },
1166 | {
1167 | "Sample1": 13.50653982518527,
1168 | "Sample2": 8.499179289402012,
1169 | "Sample3": 11.85823474703857,
1170 | "Sample4": 10.0006717157608
1171 | },
1172 | {
1173 | "Sample1": 10.37373075735919,
1174 | "Sample2": 11.13186121849738,
1175 | "Sample3": 10.58989099488226,
1176 | "Sample4": 11.05374448739895
1177 | },
1178 | {
1179 | "Sample1": 6.946387187373166,
1180 | "Sample2": 11.07281313469224,
1181 | "Sample3": 9.20230250500938,
1182 | "Sample4": 11.0301252538769
1183 | },
1184 | {
1185 | "Sample1": 12.72563796227327,
1186 | "Sample2": 11.73939244527153,
1187 | "Sample3": 11.54208014666934,
1188 | "Sample4": 11.29675697810861
1189 | },
1190 | {
1191 | "Sample1": 11.56659210534918,
1192 | "Sample2": 13.69999956257514,
1193 | "Sample3": 11.07283081188226,
1194 | "Sample4": 12.08099982503006
1195 | },
1196 | {
1197 | "Sample1": 12.48903707110616,
1198 | "Sample2": 11.41716800089662,
1199 | "Sample3": 11.44629031218873,
1200 | "Sample4": 11.16786720035865
1201 | },
1202 | {
1203 | "Sample1": 12.37163618742051,
1204 | "Sample2": 16.12135795232609,
1205 | "Sample3": 11.39875959004879,
1206 | "Sample4": 13.04954318093044
1207 | },
1208 | {
1209 | "Sample1": 8.354324494736383,
1210 | "Sample2": 12.19224060371477,
1211 | "Sample3": 9.772317609205015,
1212 | "Sample4": 11.47789624148591
1213 | },
1214 | {
1215 | "Sample1": 8.925845672410931,
1216 | "Sample2": 8.866814083226046,
1217 | "Sample3": 10.00370270138094,
1218 | "Sample4": 10.14772563329042
1219 | },
1220 | {
1221 | "Sample1": 10.10743535654667,
1222 | "Sample2": 12.04963176796594,
1223 | "Sample3": 10.4820790917193,
1224 | "Sample4": 11.42085270718638
1225 | },
1226 | {
1227 | "Sample1": 9.618598273813493,
1228 | "Sample2": 14.43000718980493,
1229 | "Sample3": 10.2841693416249,
1230 | "Sample4": 12.37300287592197
1231 | },
1232 | {
1233 | "Sample1": 8.317369803003192,
1234 | "Sample2": 16.23957017761531,
1235 | "Sample3": 9.757356195547851,
1236 | "Sample4": 13.09682807104612
1237 | },
1238 | {
1239 | "Sample1": 13.03162807609525,
1240 | "Sample2": 8.507315862669799,
1241 | "Sample3": 11.66596278384423,
1242 | "Sample4": 10.00392634506792
1243 | },
1244 | {
1245 | "Sample1": 6.956616280103016,
1246 | "Sample2": 13.20526979773697,
1247 | "Sample3": 9.206443838098387,
1248 | "Sample4": 11.88310791909479
1249 | },
1250 | {
1251 | "Sample1": 12.8850376817045,
1252 | "Sample2": 9.939975482057301,
1253 | "Sample3": 11.60661444603421,
1254 | "Sample4": 10.57699019282292
1255 | },
1256 | {
1257 | "Sample1": 9.857015758677976,
1258 | "Sample2": 16.03464627997966,
1259 | "Sample3": 10.38069463914088,
1260 | "Sample4": 13.01485851199186
1261 | },
1262 | {
1263 | "Sample1": 13.0828873654846,
1264 | "Sample2": 10.14922872268282,
1265 | "Sample3": 11.68671553258486,
1266 | "Sample4": 10.66069148907313
1267 | },
1268 | {
1269 | "Sample1": 13.1267983011154,
1270 | "Sample2": 14.31920955309078,
1271 | "Sample3": 11.70449323931798,
1272 | "Sample4": 12.32868382123631
1273 | },
1274 | {
1275 | "Sample1": 8.993815407900149,
1276 | "Sample2": 15.94018830954811,
1277 | "Sample3": 10.03122081291504,
1278 | "Sample4": 12.97707532381924
1279 | },
1280 | {
1281 | "Sample1": 8.364181964645068,
1282 | "Sample2": 13.87059098664852,
1283 | "Sample3": 9.776308487710555,
1284 | "Sample4": 12.14923639465941
1285 | },
1286 | {
1287 | "Sample1": 15.06922759036592,
1288 | "Sample2": 13.42465938831168,
1289 | "Sample3": 12.49090185844774,
1290 | "Sample4": 11.97086375532467
1291 | },
1292 | {
1293 | "Sample1": 10.99887967677931,
1294 | "Sample2": 16.04701657974364,
1295 | "Sample3": 10.84298772339243,
1296 | "Sample4": 13.01980663189746
1297 | },
1298 | {
1299 | "Sample1": 9.792984373638062,
1300 | "Sample2": 10.48104662511052,
1301 | "Sample3": 10.3547710014729,
1302 | "Sample4": 10.79341865004421
1303 | },
1304 | {
1305 | "Sample1": 10.8366526354033,
1306 | "Sample2": 7.507164155632574,
1307 | "Sample3": 10.77730875927259,
1308 | "Sample4": 9.60386566225303
1309 | },
1310 | {
1311 | "Sample1": 10.32174519954253,
1312 | "Sample2": 11.11319614570451,
1313 | "Sample3": 10.5688442103411,
1314 | "Sample4": 11.0462784582818
1315 | },
1316 | {
1317 | "Sample1": 7.794148961525723,
1318 | "Sample2": 12.81217792486583,
1319 | "Sample3": 9.545525895354544,
1320 | "Sample4": 11.72587116994634
1321 | },
1322 | {
1323 | "Sample1": 9.622211658667206,
1324 | "Sample2": 11.53938508340504,
1325 | "Sample3": 10.28563225047255,
1326 | "Sample4": 11.21675403336202
1327 | },
1328 | {
1329 | "Sample1": 6.118807003692283,
1330 | "Sample2": 10.65457044484901,
1331 | "Sample3": 8.867249799065704,
1332 | "Sample4": 10.8628281779396
1333 | },
1334 | {
1335 | "Sample1": 11.01665152790898,
1336 | "Sample2": 7.566164606938868,
1337 | "Sample3": 10.85018280482145,
1338 | "Sample4": 9.627465842775546
1339 | },
1340 | {
1341 | "Sample1": 11.38511615126601,
1342 | "Sample2": 15.69315038322126,
1343 | "Sample3": 10.99935876569474,
1344 | "Sample4": 12.8782601532885
1345 | },
1346 | {
1347 | "Sample1": 10.79310312769698,
1348 | "Sample2": 9.48325647348619,
1349 | "Sample3": 10.75967737963441,
1350 | "Sample4": 10.39430258939448
1351 | },
1352 | {
1353 | "Sample1": 12.093844329578,
1354 | "Sample2": 9.57086859636856,
1355 | "Sample3": 11.2862932508413,
1356 | "Sample4": 10.42934743854742
1357 | },
1358 | {
1359 | "Sample1": 10.1417203842857,
1360 | "Sample2": 3.168456614567454,
1361 | "Sample3": 10.4959596697513,
1362 | "Sample4": 7.868382645826982
1363 | },
1364 | {
1365 | "Sample1": 8.191162363309518,
1366 | "Sample2": 13.72284104710661,
1367 | "Sample3": 9.706260066117215,
1368 | "Sample4": 12.09013641884264
1369 | },
1370 | {
1371 | "Sample1": 17.20646016608475,
1372 | "Sample2": 13.56120809468218,
1373 | "Sample3": 13.35617820489262,
1374 | "Sample4": 12.02548323787288
1375 | },
1376 | {
1377 | "Sample1": 7.447323548129286,
1378 | "Sample2": 13.6283352869779,
1379 | "Sample3": 9.40511074823048,
1380 | "Sample4": 12.05233411479116
1381 | },
1382 | {
1383 | "Sample1": 9.54251439568599,
1384 | "Sample2": 6.921937433790235,
1385 | "Sample3": 10.25336615209959,
1386 | "Sample4": 9.369774973516094
1387 | },
1388 | {
1389 | "Sample1": 11.88539117054222,
1390 | "Sample2": 10.08852243172547,
1391 | "Sample3": 11.20189925932884,
1392 | "Sample4": 10.63640897269019
1393 | },
1394 | {
1395 | "Sample1": 13.54571382966472,
1396 | "Sample2": 9.20394358019443,
1397 | "Sample3": 11.87409466788045,
1398 | "Sample4": 10.28257743207777
1399 | },
1400 | {
1401 | "Sample1": 9.506638759022849,
1402 | "Sample2": 12.723145819547,
1403 | "Sample3": 10.23884160284326,
1404 | "Sample4": 11.6902583278188
1405 | },
1406 | {
1407 | "Sample1": 9.600281327117456,
1408 | "Sample2": 11.51052561074988,
1409 | "Sample3": 10.27675357373176,
1410 | "Sample4": 11.20521024429995
1411 | },
1412 | {
1413 | "Sample1": 6.383283636725506,
1414 | "Sample2": 15.01961889567002,
1415 | "Sample3": 8.97432535899818,
1416 | "Sample4": 12.60884755826801
1417 | },
1418 | {
1419 | "Sample1": 8.330189623982639,
1420 | "Sample2": 12.68022077919439,
1421 | "Sample3": 9.762546406470705,
1422 | "Sample4": 11.67308831167776
1423 | },
1424 | {
1425 | "Sample1": 15.06501970006298,
1426 | "Sample2": 10.21240357349593,
1427 | "Sample3": 12.48919825913481,
1428 | "Sample4": 10.68596142939837
1429 | },
1430 | {
1431 | "Sample1": 9.688308525524562,
1432 | "Sample2": 7.74356081223191,
1433 | "Sample3": 10.31239211559699,
1434 | "Sample4": 9.698424324892764
1435 | },
1436 | {
1437 | "Sample1": 8.325142365987073,
1438 | "Sample2": 7.445369604597723,
1439 | "Sample3": 9.760502982181002,
1440 | "Sample4": 9.57914784183909
1441 | },
1442 | {
1443 | "Sample1": 10.03278449844809,
1444 | "Sample2": 12.56377891261576,
1445 | "Sample3": 10.45185607224619,
1446 | "Sample4": 11.6265115650463
1447 | },
1448 | {
1449 | "Sample1": 11.92654922326519,
1450 | "Sample2": 10.07536904980985,
1451 | "Sample3": 11.2185624385689,
1452 | "Sample4": 10.63114761992394
1453 | },
1454 | {
1455 | "Sample1": 12.33220857308358,
1456 | "Sample2": 11.29219417665372,
1457 | "Sample3": 11.38279699315125,
1458 | "Sample4": 11.11787767066149
1459 | },
1460 | {
1461 | "Sample1": 15.38543031033686,
1462 | "Sample2": 13.06410189766505,
1463 | "Sample3": 12.61891915398254,
1464 | "Sample4": 11.82664075906602
1465 | },
1466 | {
1467 | "Sample1": 13.05297781697524,
1468 | "Sample2": 13.16623120252575,
1469 | "Sample3": 11.6746064036337,
1470 | "Sample4": 11.8674924810103
1471 | },
1472 | {
1473 | "Sample1": 13.26051621428566,
1474 | "Sample2": 7.807178041043209,
1475 | "Sample3": 11.7586300462695,
1476 | "Sample4": 9.723871216417283
1477 | },
1478 | {
1479 | "Sample1": 11.59872198779646,
1480 | "Sample2": 9.670972351901064,
1481 | "Sample3": 11.08583886145606,
1482 | "Sample4": 10.46938894076042
1483 | },
1484 | {
1485 | "Sample1": 16.01820404464628,
1486 | "Sample2": 11.07055961057081,
1487 | "Sample3": 12.87510285208352,
1488 | "Sample4": 11.02922384422833
1489 | },
1490 | {
1491 | "Sample1": 9.2347755790594,
1492 | "Sample2": 7.5126820481601,
1493 | "Sample3": 10.12877553808073,
1494 | "Sample4": 9.606072819264037
1495 | },
1496 | {
1497 | "Sample1": 8.590177768947608,
1498 | "Sample2": 8.258223994028961,
1499 | "Sample3": 9.867804764756118,
1500 | "Sample4": 9.904289597611584
1501 | },
1502 | {
1503 | "Sample1": 11.26215480786848,
1504 | "Sample2": 9.9616120369914,
1505 | "Sample3": 10.94957684529088,
1506 | "Sample4": 10.58564481479656
1507 | },
1508 | {
1509 | "Sample1": 11.71150132036979,
1510 | "Sample2": 14.08489180759039,
1511 | "Sample3": 11.13149851027117,
1512 | "Sample4": 12.23495672303616
1513 | },
1514 | {
1515 | "Sample1": 13.39794769002614,
1516 | "Sample2": 7.845312303929862,
1517 | "Sample3": 11.81427031984864,
1518 | "Sample4": 9.739124921571944
1519 | },
1520 | {
1521 | "Sample1": 15.02456501067395,
1522 | "Sample2": 8.307507811867584,
1523 | "Sample3": 12.47281984237812,
1524 | "Sample4": 9.924003124747035
1525 | },
1526 | {
1527 | "Sample1": 8.06965015833497,
1528 | "Sample2": 9.957316863562449,
1529 | "Sample3": 9.657064841431165,
1530 | "Sample4": 10.58392674542498
1531 | },
1532 | {
1533 | "Sample1": 12.62183791914175,
1534 | "Sample2": 10.61854514595153,
1535 | "Sample3": 11.50005583770921,
1536 | "Sample4": 10.84841805838061
1537 | },
1538 | {
1539 | "Sample1": 9.04373911677342,
1540 | "Sample2": 12.8518630787731,
1541 | "Sample3": 10.05143284079896,
1542 | "Sample4": 11.74174523150924
1543 | },
1544 | {
1545 | "Sample1": 8.969229212645816,
1546 | "Sample2": 8.577341212735725,
1547 | "Sample3": 10.02126688771086,
1548 | "Sample4": 10.03193648509429
1549 | },
1550 | {
1551 | "Sample1": 11.38868825710488,
1552 | "Sample2": 12.63521480980324,
1553 | "Sample3": 11.00080496239064,
1554 | "Sample4": 11.6550859239213
1555 | },
1556 | {
1557 | "Sample1": 12.06488664418254,
1558 | "Sample2": 8.300595652720935,
1559 | "Sample3": 11.27456949157188,
1560 | "Sample4": 9.921238261088371
1561 | },
1562 | {
1563 | "Sample1": 13.21785108360387,
1564 | "Sample2": 10.60210452328917,
1565 | "Sample3": 11.74135671400966,
1566 | "Sample4": 10.84184180931567
1567 | },
1568 | {
1569 | "Sample1": 11.76702121566322,
1570 | "Sample2": 12.56475049525633,
1571 | "Sample3": 11.15397620067337,
1572 | "Sample4": 11.62690019810253
1573 | },
1574 | {
1575 | "Sample1": 12.99118774722807,
1576 | "Sample2": 11.58442255867936,
1577 | "Sample3": 11.649590181064,
1578 | "Sample4": 11.23476902347174
1579 | },
1580 | {
1581 | "Sample1": 11.09844638793188,
1582 | "Sample2": 7.798673211510674,
1583 | "Sample3": 10.88329813276594,
1584 | "Sample4": 9.72046928460427
1585 | },
1586 | {
1587 | "Sample1": 12.20018914208308,
1588 | "Sample2": 7.529766512939195,
1589 | "Sample3": 11.32934783080287,
1590 | "Sample4": 9.612906605175677
1591 | },
1592 | {
1593 | "Sample1": 9.1964741975725,
1594 | "Sample2": 9.639887187805977,
1595 | "Sample3": 10.1132689058998,
1596 | "Sample4": 10.45695487512239
1597 | },
1598 | {
1599 | "Sample1": 13.06404294257893,
1600 | "Sample2": 9.803538469587641,
1601 | "Sample3": 11.67908621157042,
1602 | "Sample4": 10.52241538783506
1603 | },
1604 | {
1605 | "Sample1": 12.94479652517786,
1606 | "Sample2": 10.50489758692081,
1607 | "Sample3": 11.63080830978861,
1608 | "Sample4": 10.80295903476832
1609 | },
1610 | {
1611 | "Sample1": 12.08460932484036,
1612 | "Sample2": 8.828570125746689,
1613 | "Sample3": 11.28255438252646,
1614 | "Sample4": 10.13242805029868
1615 | },
1616 | {
1617 | "Sample1": 11.86507147654908,
1618 | "Sample2": 10.61479853408055,
1619 | "Sample3": 11.19367266257048,
1620 | "Sample4": 10.84691941363222
1621 | },
1622 | {
1623 | "Sample1": 7.950256978789138,
1624 | "Sample2": 11.77354850199852,
1625 | "Sample3": 9.60872752177698,
1626 | "Sample4": 11.31041940079941
1627 | },
1628 | {
1629 | "Sample1": 13.04606375659044,
1630 | "Sample2": 12.58842006031592,
1631 | "Sample3": 11.67180718890301,
1632 | "Sample4": 11.63636802412637
1633 | },
1634 | {
1635 | "Sample1": 11.28868568344442,
1636 | "Sample2": 11.36410204977508,
1637 | "Sample3": 10.96031809046333,
1638 | "Sample4": 11.14664081991003
1639 | },
1640 | {
1641 | "Sample1": 8.430066992805807,
1642 | "Sample2": 10.68008090581168,
1643 | "Sample3": 9.80298258818049,
1644 | "Sample4": 10.87303236232467
1645 | },
1646 | {
1647 | "Sample1": 15.16612052079376,
1648 | "Sample2": 13.63468172394572,
1649 | "Sample3": 12.53012976550355,
1650 | "Sample4": 12.05487268957828
1651 | },
1652 | {
1653 | "Sample1": 13.0030788093756,
1654 | "Sample2": 9.15192965629248,
1655 | "Sample3": 11.65440437626543,
1656 | "Sample4": 10.26177186251699
1657 | },
1658 | {
1659 | "Sample1": 9.925110664510626,
1660 | "Sample2": 11.46864359001783,
1661 | "Sample3": 10.40826342692738,
1662 | "Sample4": 11.18845743600713
1663 | },
1664 | {
1665 | "Sample1": 11.52288954719393,
1666 | "Sample2": 8.349036414235524,
1667 | "Sample3": 11.05513746849957,
1668 | "Sample4": 9.94061456569421
1669 | },
1670 | {
1671 | "Sample1": 10.68526694573249,
1672 | "Sample2": 12.00765663780107,
1673 | "Sample3": 10.71601900636943,
1674 | "Sample4": 11.40406265512043
1675 | },
1676 | {
1677 | "Sample1": 9.345597268353307,
1678 | "Sample2": 10.82730672063785,
1679 | "Sample3": 10.17364261876652,
1680 | "Sample4": 10.93192268825514
1681 | },
1682 | {
1683 | "Sample1": 11.9598221250073,
1684 | "Sample2": 11.18255458694368,
1685 | "Sample3": 11.23203324899081,
1686 | "Sample4": 11.07402183477747
1687 | },
1688 | {
1689 | "Sample1": 14.63975173270156,
1690 | "Sample2": 7.161224117939336,
1691 | "Sample3": 12.31702499299659,
1692 | "Sample4": 9.465489647175737
1693 | },
1694 | {
1695 | "Sample1": 12.18236104953716,
1696 | "Sample2": 9.473440924316646,
1697 | "Sample3": 11.3221299795697,
1698 | "Sample4": 10.39037636972666
1699 | },
1700 | {
1701 | "Sample1": 9.40291536064795,
1702 | "Sample2": 13.36428685053069,
1703 | "Sample3": 10.19684832414897,
1704 | "Sample4": 11.94671474021228
1705 | },
1706 | {
1707 | "Sample1": 14.00145936475555,
1708 | "Sample2": 10.36212969356446,
1709 | "Sample3": 12.05860703026541,
1710 | "Sample4": 10.74585187742578
1711 | },
1712 | {
1713 | "Sample1": 6.91647545092473,
1714 | "Sample2": 14.37512895758893,
1715 | "Sample3": 9.190192490252928,
1716 | "Sample4": 12.35105158303557
1717 | },
1718 | {
1719 | "Sample1": 8.796815571349436,
1720 | "Sample2": 10.12070954330234,
1721 | "Sample3": 9.951463794068598,
1722 | "Sample4": 10.64928381732094
1723 | },
1724 | {
1725 | "Sample1": 10.46651130383205,
1726 | "Sample2": 10.98211101563832,
1727 | "Sample3": 10.62745396916277,
1728 | "Sample4": 10.99384440625533
1729 | },
1730 | {
1731 | "Sample1": 13.02850621549228,
1732 | "Sample2": 9.202413772559364,
1733 | "Sample3": 11.66469887266894,
1734 | "Sample4": 10.28196550902374
1735 | },
1736 | {
1737 | "Sample1": 8.80198892170242,
1738 | "Sample2": 13.88721852085619,
1739 | "Sample3": 9.953558267895717,
1740 | "Sample4": 12.15588740834248
1741 | },
1742 | {
1743 | "Sample1": 9.839563852738705,
1744 | "Sample2": 12.0131676055062,
1745 | "Sample3": 10.37362909017761,
1746 | "Sample4": 11.40626704220248
1747 | },
1748 | {
1749 | "Sample1": 11.3744076564363,
1750 | "Sample2": 9.894928958447034,
1751 | "Sample3": 10.99502334268676,
1752 | "Sample4": 10.55897158337881
1753 | },
1754 | {
1755 | "Sample1": 14.03565493963687,
1756 | "Sample2": 10.04358035397649,
1757 | "Sample3": 12.07245139256554,
1758 | "Sample4": 10.6184321415906
1759 | },
1760 | {
1761 | "Sample1": 14.37704967623297,
1762 | "Sample2": 11.12623068934707,
1763 | "Sample3": 12.21066788511456,
1764 | "Sample4": 11.05149227573883
1765 | },
1766 | {
1767 | "Sample1": 8.504296741049327,
1768 | "Sample2": 10.0776948528441,
1769 | "Sample3": 9.833035117833736,
1770 | "Sample4": 10.63207794113764
1771 | },
1772 | {
1773 | "Sample1": 9.546808394438346,
1774 | "Sample2": 12.27012794164614,
1775 | "Sample3": 10.25510461313293,
1776 | "Sample4": 11.50905117665845
1777 | },
1778 | {
1779 | "Sample1": 11.77360503733851,
1780 | "Sample2": 10.84893699070592,
1781 | "Sample3": 11.15664171552166,
1782 | "Sample4": 10.94057479628237
1783 | },
1784 | {
1785 | "Sample1": 5.102321893436497,
1786 | "Sample2": 14.62051912259851,
1787 | "Sample3": 8.455717365763764,
1788 | "Sample4": 12.4492076490394
1789 | },
1790 | {
1791 | "Sample1": 10.71531296227878,
1792 | "Sample2": 8.75906620433352,
1793 | "Sample3": 10.72818338553797,
1794 | "Sample4": 10.10462648173341
1795 | },
1796 | {
1797 | "Sample1": 12.3603901030121,
1798 | "Sample2": 7.473502442822757,
1799 | "Sample3": 11.3942065194381,
1800 | "Sample4": 9.590400977129104
1801 | },
1802 | {
1803 | "Sample1": 11.28754295287218,
1804 | "Sample2": 8.219626920899703,
1805 | "Sample3": 10.95985544650696,
1806 | "Sample4": 9.88885076835988
1807 | },
1808 | {
1809 | "Sample1": 14.61914881956154,
1810 | "Sample2": 11.52531526358613,
1811 | "Sample3": 12.30868373261601,
1812 | "Sample4": 11.21112610543445
1813 | },
1814 | {
1815 | "Sample1": 12.72431620006346,
1816 | "Sample2": 9.268791589155025,
1817 | "Sample3": 11.54154502026861,
1818 | "Sample4": 10.30851663566201
1819 | },
1820 | {
1821 | "Sample1": 14.7011914812881,
1822 | "Sample2": 10.26580825525762,
1823 | "Sample3": 12.34189938513688,
1824 | "Sample4": 10.70732330210305
1825 | },
1826 | {
1827 | "Sample1": 12.11047138737912,
1828 | "Sample2": 12.97178409387241,
1829 | "Sample3": 11.29302485318993,
1830 | "Sample4": 11.78971363754896
1831 | },
1832 | {
1833 | "Sample1": 9.87434276909046,
1834 | "Sample2": 10.36832689629768,
1835 | "Sample3": 10.38770962311355,
1836 | "Sample4": 10.74833075851908
1837 | },
1838 | {
1839 | "Sample1": 8.636252691795926,
1840 | "Sample2": 10.5202773431309,
1841 | "Sample3": 9.886458579674464,
1842 | "Sample4": 10.80911093725236
1843 | },
1844 | {
1845 | "Sample1": 11.96153774371981,
1846 | "Sample2": 11.55953208856304,
1847 | "Sample3": 11.23272783146551,
1848 | "Sample4": 11.22481283542522
1849 | },
1850 | {
1851 | "Sample1": 7.26550382099142,
1852 | "Sample2": 10.47713208462385,
1853 | "Sample3": 9.331499522668592,
1854 | "Sample4": 10.79185283384954
1855 | },
1856 | {
1857 | "Sample1": 10.88881246511148,
1858 | "Sample2": 10.68139290209974,
1859 | "Sample3": 10.79842609923542,
1860 | "Sample4": 10.8735571608399
1861 | },
1862 | {
1863 | "Sample1": 9.955509714218794,
1864 | "Sample2": 6.493946785144916,
1865 | "Sample3": 10.42057073450154,
1866 | "Sample4": 9.198578714057966
1867 | },
1868 | {
1869 | "Sample1": 8.165066363063863,
1870 | "Sample2": 13.49265607651321,
1871 | "Sample3": 9.695694883831523,
1872 | "Sample4": 11.99806243060528
1873 | },
1874 | {
1875 | "Sample1": 10.11677052557,
1876 | "Sample2": 8.222481976443971,
1877 | "Sample3": 10.48585851237652,
1878 | "Sample4": 9.889992790577589
1879 | },
1880 | {
1881 | "Sample1": 10.50217479518168,
1882 | "Sample2": 9.40043852020321,
1883 | "Sample3": 10.64189262962821,
1884 | "Sample4": 10.36117540808128
1885 | },
1886 | {
1887 | "Sample1": 9.599464663205865,
1888 | "Sample2": 9.383098188309152,
1889 | "Sample3": 10.27642294056918,
1890 | "Sample4": 10.35423927532366
1891 | },
1892 | {
1893 | "Sample1": 7.082489752401687,
1894 | "Sample2": 10.75968351807798,
1895 | "Sample3": 9.257404758057364,
1896 | "Sample4": 10.90487340723119
1897 | },
1898 | {
1899 | "Sample1": 13.76955886124518,
1900 | "Sample2": 8.07252577674441,
1901 | "Sample3": 11.96472018673894,
1902 | "Sample4": 9.830010310697764
1903 | },
1904 | {
1905 | "Sample1": 11.95565123177571,
1906 | "Sample2": 9.096740127205802,
1907 | "Sample3": 11.23034462824928,
1908 | "Sample4": 10.23969605088232
1909 | },
1910 | {
1911 | "Sample1": 10.81597017907229,
1912 | "Sample2": 16.51225842225676,
1913 | "Sample3": 10.76893529517097,
1914 | "Sample4": 13.20590336890271
1915 | },
1916 | {
1917 | "Sample1": 10.90257317206385,
1918 | "Sample2": 8.987290656167557,
1919 | "Sample3": 10.80399723565338,
1920 | "Sample4": 10.19591626246702
1921 | },
1922 | {
1923 | "Sample1": 14.47468918226907,
1924 | "Sample2": 10.36702244538821,
1925 | "Sample3": 12.25019804950165,
1926 | "Sample4": 10.74780897815528
1927 | },
1928 | {
1929 | "Sample1": 12.37328146217056,
1930 | "Sample2": 10.205759950448,
1931 | "Sample3": 11.39942569318646,
1932 | "Sample4": 10.6833039801792
1933 | },
1934 | {
1935 | "Sample1": 9.431543957618278,
1936 | "Sample2": 9.59171694085054,
1937 | "Sample3": 10.20843884923817,
1938 | "Sample4": 10.43768677634022
1939 | },
1940 | {
1941 | "Sample1": 10.45691326134157,
1942 | "Sample2": 13.82134487146894,
1943 | "Sample3": 10.62356812200063,
1944 | "Sample4": 12.12953794858758
1945 | },
1946 | {
1947 | "Sample1": 14.08146721998224,
1948 | "Sample2": 15.23302755846002,
1949 | "Sample3": 12.09099887448674,
1950 | "Sample4": 12.69421102338401
1951 | },
1952 | {
1953 | "Sample1": 10.80118593801058,
1954 | "Sample2": 11.5479198554287,
1955 | "Sample3": 10.76294977247392,
1956 | "Sample4": 11.22016794217148
1957 | },
1958 | {
1959 | "Sample1": 10.76516050998884,
1960 | "Sample2": 10.16999490562332,
1961 | "Sample3": 10.74836457894285,
1962 | "Sample4": 10.66899796224933
1963 | },
1964 | {
1965 | "Sample1": 13.46988354302845,
1966 | "Sample2": 12.58734901504062,
1967 | "Sample3": 11.84339414697508,
1968 | "Sample4": 11.63593960601625
1969 | },
1970 | {
1971 | "Sample1": 9.164456997975362,
1972 | "Sample2": 11.3242590701684,
1973 | "Sample3": 10.1003064769131,
1974 | "Sample4": 11.13070362806736
1975 | },
1976 | {
1977 | "Sample1": 7.389729226525676,
1978 | "Sample2": 11.0521462921751,
1979 | "Sample3": 9.381793209119706,
1980 | "Sample4": 11.02185851687004
1981 | },
1982 | {
1983 | "Sample1": 12.00899159369686,
1984 | "Sample2": 8.633570652464131,
1985 | "Sample3": 11.25193991647646,
1986 | "Sample4": 10.05442826098565
1987 | },
1988 | {
1989 | "Sample1": 10.89024248649107,
1990 | "Sample2": 10.70050218632618,
1991 | "Sample3": 10.79900505525954,
1992 | "Sample4": 10.88120087453048
1993 | },
1994 | {
1995 | "Sample1": 6.984164555416987,
1996 | "Sample2": 12.29898824945389,
1997 | "Sample3": 9.217596985998782,
1998 | "Sample4": 11.52059529978156
1999 | },
2000 | {
2001 | "Sample1": 6.536834331132379,
2002 | "Sample2": 7.991636827998486,
2003 | "Sample3": 9.036491632037402,
2004 | "Sample4": 9.797654731199394
2005 | },
2006 | {
2007 | "Sample1": 12.67941217675564,
2008 | "Sample2": 10.49477298459618,
2009 | "Sample3": 11.52336525374722,
2010 | "Sample4": 10.79890919383847
2011 | },
2012 | {
2013 | "Sample1": 8.993810842948747,
2014 | "Sample2": 11.17405288968495,
2015 | "Sample3": 10.03121896475658,
2016 | "Sample4": 11.07062115587398
2017 | },
2018 | {
2019 | "Sample1": 13.99239958314858,
2020 | "Sample2": 12.02889507636072,
2021 | "Sample3": 12.0549391024893,
2022 | "Sample4": 11.41255803054429
2023 | },
2024 | {
2025 | "Sample1": 8.878148759855288,
2026 | "Sample2": 12.70277846851647,
2027 | "Sample3": 9.984392210467728,
2028 | "Sample4": 11.68211138740659
2029 | },
2030 | {
2031 | "Sample1": 8.055798952516733,
2032 | "Sample2": 15.53065425475745,
2033 | "Sample3": 9.65145706579625,
2034 | "Sample4": 12.81326170190298
2035 | },
2036 | {
2037 | "Sample1": 7.578773499529942,
2038 | "Sample2": 5.28265765563601,
2039 | "Sample3": 9.458329352036415,
2040 | "Sample4": 8.714063062254404
2041 | },
2042 | {
2043 | "Sample1": 5.00770865900351,
2044 | "Sample2": 15.54290556633206,
2045 | "Sample3": 8.417412412552029,
2046 | "Sample4": 12.81816222653282
2047 | },
2048 | {
2049 | "Sample1": 14.62328834343952,
2050 | "Sample2": 12.59568470985031,
2051 | "Sample3": 12.31035965321438,
2052 | "Sample4": 11.63927388394012
2053 | },
2054 | {
2055 | "Sample1": 14.82155540287224,
2056 | "Sample2": 11.49160990467226,
2057 | "Sample3": 12.39062971776204,
2058 | "Sample4": 11.1976439618689
2059 | },
2060 | {
2061 | "Sample1": 7.673979919335239,
2062 | "Sample2": 10.58665781322232,
2063 | "Sample3": 9.496874461269329,
2064 | "Sample4": 10.83566312528893
2065 | },
2066 | {
2067 | "Sample1": 11.60703978872372,
2068 | "Sample2": 10.48546118462851,
2069 | "Sample3": 11.08920639219584,
2070 | "Sample4": 10.79518447385141
2071 | },
2072 | {
2073 | "Sample1": 12.91402328721755,
2074 | "Sample2": 7.127828784898234,
2075 | "Sample3": 11.61834950899496,
2076 | "Sample4": 9.452131513959294
2077 | },
2078 | {
2079 | "Sample1": 5.716858326710374,
2080 | "Sample2": 15.44437095337334,
2081 | "Sample3": 8.70451754117829,
2082 | "Sample4": 12.77874838134934
2083 | },
2084 | {
2085 | "Sample1": 11.10449554407373,
2086 | "Sample2": 9.66641395575897,
2087 | "Sample3": 10.88574718383552,
2088 | "Sample4": 10.46756558230359
2089 | },
2090 | {
2091 | "Sample1": 9.015236899465439,
2092 | "Sample2": 5.60144660944886,
2093 | "Sample3": 10.03989348156496,
2094 | "Sample4": 8.841578643779544
2095 | },
2096 | {
2097 | "Sample1": 9.692191028734676,
2098 | "Sample2": 14.22905850230269,
2099 | "Sample3": 10.31396397924481,
2100 | "Sample4": 12.29262340092108
2101 | },
2102 | {
2103 | "Sample1": 9.415989208453063,
2104 | "Sample2": 8.985693019362385,
2105 | "Sample3": 10.20214137994051,
2106 | "Sample4": 10.19527720774496
2107 | },
2108 | {
2109 | "Sample1": 9.924306721741509,
2110 | "Sample2": 12.90742797784918,
2111 | "Sample3": 10.4079379440249,
2112 | "Sample4": 11.76397119113968
2113 | },
2114 | {
2115 | "Sample1": 13.41759243068008,
2116 | "Sample2": 9.5090810582441,
2117 | "Sample3": 11.82222365614578,
2118 | "Sample4": 10.40463242329764
2119 | },
2120 | {
2121 | "Sample1": 10.07582994408296,
2122 | "Sample2": 14.14616233247986,
2123 | "Sample3": 10.46928337817124,
2124 | "Sample4": 12.25946493299194
2125 | },
2126 | {
2127 | "Sample1": 10.87295083557653,
2128 | "Sample2": 7.790510516771241,
2129 | "Sample3": 10.79200438687309,
2130 | "Sample4": 9.717204206708496
2131 | },
2132 | {
2133 | "Sample1": 12.57647126081521,
2134 | "Sample2": 13.09511781007744,
2135 | "Sample3": 11.48168876956082,
2136 | "Sample4": 11.83904712403098
2137 | },
2138 | {
2139 | "Sample1": 10.62927752606828,
2140 | "Sample2": 10.35105377166171,
2141 | "Sample3": 10.69335122512886,
2142 | "Sample4": 10.74142150866469
2143 | },
2144 | {
2145 | "Sample1": 10.37429281363496,
2146 | "Sample2": 12.69501982165154,
2147 | "Sample3": 10.59011854803035,
2148 | "Sample4": 11.67900792866062
2149 | },
2150 | {
2151 | "Sample1": 8.980689752520261,
2152 | "Sample2": 8.579542283888099,
2153 | "Sample3": 10.02590678239687,
2154 | "Sample4": 10.03281691355524
2155 | },
2156 | {
2157 | "Sample1": 14.53236415336997,
2158 | "Sample2": 11.93146509893171,
2159 | "Sample3": 12.27354824023076,
2160 | "Sample4": 11.37358603957268
2161 | },
2162 | {
2163 | "Sample1": 8.666940571449258,
2164 | "Sample2": 13.6843408161968,
2165 | "Sample3": 9.898882822449092,
2166 | "Sample4": 12.07473632647872
2167 | },
2168 | {
2169 | "Sample1": 12.27951847029861,
2170 | "Sample2": 13.9998094530243,
2171 | "Sample3": 11.36146496773223,
2172 | "Sample4": 12.20092378120972
2173 | },
2174 | {
2175 | "Sample1": 14.39610474037688,
2176 | "Sample2": 11.7911997103573,
2177 | "Sample3": 12.21838248598254,
2178 | "Sample4": 11.31747988414292
2179 | },
2180 | {
2181 | "Sample1": 9.588563494299608,
2182 | "Sample2": 11.02585347664104,
2183 | "Sample3": 10.27200951186219,
2184 | "Sample4": 11.01134139065642
2185 | },
2186 | {
2187 | "Sample1": 7.78124881585101,
2188 | "Sample2": 11.4832189477207,
2189 | "Sample3": 9.540303164312151,
2190 | "Sample4": 11.19428757908828
2191 | },
2192 | {
2193 | "Sample1": 10.83625757759096,
2194 | "Sample2": 4.656987652017309,
2195 | "Sample3": 10.77714881683845,
2196 | "Sample4": 8.463795060806923
2197 | },
2198 | {
2199 | "Sample1": 10.56186754504354,
2200 | "Sample2": 6.449658391906596,
2201 | "Sample3": 10.66605973483544,
2202 | "Sample4": 9.180863356762638
2203 | },
2204 | {
2205 | "Sample1": 13.87969998632396,
2206 | "Sample2": 10.91773520828706,
2207 | "Sample3": 12.00931173535383,
2208 | "Sample4": 10.96809408331482
2209 | },
2210 | {
2211 | "Sample1": 8.839825613511252,
2212 | "Sample2": 8.098102573243844,
2213 | "Sample3": 9.968876766603746,
2214 | "Sample4": 9.840241029297538
2215 | },
2216 | {
2217 | "Sample1": 13.1409702548651,
2218 | "Sample2": 8.434725621992598,
2219 | "Sample3": 11.71023087241502,
2220 | "Sample4": 9.974890248797038
2221 | },
2222 | {
2223 | "Sample1": 11.11281444138157,
2224 | "Sample2": 13.54136193475735,
2225 | "Sample3": 10.88911515845408,
2226 | "Sample4": 12.01754477390294
2227 | },
2228 | {
2229 | "Sample1": 7.154674569191283,
2230 | "Sample2": 5.906736777332905,
2231 | "Sample3": 9.286629380239386,
2232 | "Sample4": 8.963694710933162
2233 | },
2234 | {
2235 | "Sample1": 12.44210818362128,
2236 | "Sample2": 14.5013357579099,
2237 | "Sample3": 11.42729076259971,
2238 | "Sample4": 12.40153430316396
2239 | },
2240 | {
2241 | "Sample1": 10.93903260969369,
2242 | "Sample2": 14.39501751655963,
2243 | "Sample3": 10.81875814157639,
2244 | "Sample4": 12.35900700662385
2245 | },
2246 | {
2247 | "Sample1": 11.93944800558884,
2248 | "Sample2": 16.17389812753879,
2249 | "Sample3": 11.22378461764731,
2250 | "Sample4": 13.07055925101552
2251 | },
2252 | {
2253 | "Sample1": 8.441232614720512,
2254 | "Sample2": 14.79095631823338,
2255 | "Sample3": 9.8075030828828,
2256 | "Sample4": 12.51738252729335
2257 | },
2258 | {
2259 | "Sample1": 7.627826410041179,
2260 | "Sample2": 8.1295745760807,
2261 | "Sample3": 9.478188829976187,
2262 | "Sample4": 9.85282983043228
2263 | },
2264 | {
2265 | "Sample1": 3.273573397157884,
2266 | "Sample2": 10.50123271220279,
2267 | "Sample3": 7.715333359173233,
2268 | "Sample4": 10.80149308488112
2269 | },
2270 | {
2271 | "Sample1": 13.65929815377355,
2272 | "Sample2": 11.34841550281037,
2273 | "Sample3": 11.92008022419982,
2274 | "Sample4": 11.14036620112415
2275 | },
2276 | {
2277 | "Sample1": 11.27037957069019,
2278 | "Sample2": 7.896958329450398,
2279 | "Sample3": 10.95290670878145,
2280 | "Sample4": 9.75978333178016
2281 | },
2282 | {
2283 | "Sample1": 8.151299062165975,
2284 | "Sample2": 12.3652475903202,
2285 | "Sample3": 9.69012107779999,
2286 | "Sample4": 11.54709903612808
2287 | },
2288 | {
2289 | "Sample1": 12.38892087789248,
2290 | "Sample2": 14.75684917861289,
2291 | "Sample3": 11.4057574404423,
2292 | "Sample4": 12.50373967144516
2293 | },
2294 | {
2295 | "Sample1": 8.521204662371554,
2296 | "Sample2": 12.36236361704213,
2297 | "Sample3": 9.839880430109941,
2298 | "Sample4": 11.54594544681685
2299 | },
2300 | {
2301 | "Sample1": 16.36037100358378,
2302 | "Sample2": 10.44902811361114,
2303 | "Sample3": 13.0136319852566,
2304 | "Sample4": 10.78061124544446
2305 | },
2306 | {
2307 | "Sample1": 13.56953385430675,
2308 | "Sample2": 13.38882220914906,
2309 | "Sample3": 11.88373840255334,
2310 | "Sample4": 11.95652888365962
2311 | },
2312 | {
2313 | "Sample1": 8.409863332270238,
2314 | "Sample2": 14.22517361084829,
2315 | "Sample3": 9.794802968530462,
2316 | "Sample4": 12.29106944433932
2317 | },
2318 | {
2319 | "Sample1": 6.447180398914396,
2320 | "Sample2": 10.2384417395869,
2321 | "Sample3": 9.00019449348761,
2322 | "Sample4": 10.69637669583476
2323 | },
2324 | {
2325 | "Sample1": 9.445010203194917,
2326 | "Sample2": 10.8889342990625,
2327 | "Sample3": 10.21389077052426,
2328 | "Sample4": 10.956573719625
2329 | },
2330 | {
2331 | "Sample1": 8.579465500174159,
2332 | "Sample2": 9.539417560056245,
2333 | "Sample3": 9.863467813835692,
2334 | "Sample4": 10.4167670240225
2335 | },
2336 | {
2337 | "Sample1": 5.858380870901431,
2338 | "Sample2": 13.4261821484329,
2339 | "Sample3": 8.76181411777386,
2340 | "Sample4": 11.97147285937316
2341 | },
2342 | {
2343 | "Sample1": 12.90667427403642,
2344 | "Sample2": 9.587229305399758,
2345 | "Sample3": 11.61537420001475,
2346 | "Sample4": 10.4358917221599
2347 | },
2348 | {
2349 | "Sample1": 14.84277728743618,
2350 | "Sample2": 10.24165157900935,
2351 | "Sample3": 12.3992215738608,
2352 | "Sample4": 10.69766063160374
2353 | },
2354 | {
2355 | "Sample1": 6.17770645062208,
2356 | "Sample2": 8.528154928928362,
2357 | "Sample3": 8.891095728996795,
2358 | "Sample4": 10.01226197157134
2359 | },
2360 | {
2361 | "Sample1": 13.91471507258631,
2362 | "Sample2": 9.624355403886955,
2363 | "Sample3": 12.02348788363818,
2364 | "Sample4": 10.45074216155478
2365 | },
2366 | {
2367 | "Sample1": 12.12886592663303,
2368 | "Sample2": 15.23960350729508,
2369 | "Sample3": 11.3004720350741,
2370 | "Sample4": 12.69684140291803
2371 | },
2372 | {
2373 | "Sample1": 14.18908580349085,
2374 | "Sample2": 12.4471158856965,
2375 | "Sample3": 12.13456915121087,
2376 | "Sample4": 11.5798463542786
2377 | },
2378 | {
2379 | "Sample1": 5.627678679530487,
2380 | "Sample2": 11.46619775830419,
2381 | "Sample3": 8.668412420862547,
2382 | "Sample4": 11.18747910332168
2383 | },
2384 | {
2385 | "Sample1": 13.27529559641276,
2386 | "Sample2": 7.820644556270593,
2387 | "Sample3": 11.76461360178654,
2388 | "Sample4": 9.729257822508238
2389 | },
2390 | {
2391 | "Sample1": 12.15664533210977,
2392 | "Sample2": 7.37481134616043,
2393 | "Sample3": 11.31171875793918,
2394 | "Sample4": 9.550924538464171
2395 | },
2396 | {
2397 | "Sample1": 11.39214721984526,
2398 | "Sample2": 13.52287213081118,
2399 | "Sample3": 11.00220535216407,
2400 | "Sample4": 12.01014885232447
2401 | },
2402 | {
2403 | "Sample1": 8.710521809453947,
2404 | "Sample2": 7.378907838768078,
2405 | "Sample3": 9.916527048361923,
2406 | "Sample4": 9.552563135507231
2407 | },
2408 | {
2409 | "Sample1": 13.4049656870019,
2410 | "Sample2": 11.47621568165848,
2411 | "Sample3": 11.81711161417081,
2412 | "Sample4": 11.19148627266339
2413 | },
2414 | {
2415 | "Sample1": 8.848223242594884,
2416 | "Sample2": 12.01974628532596,
2417 | "Sample3": 9.972276616435177,
2418 | "Sample4": 11.40889851413038
2419 | },
2420 | {
2421 | "Sample1": 12.27116204966783,
2422 | "Sample2": 15.86221353396795,
2423 | "Sample3": 11.35808180148495,
2424 | "Sample4": 12.94588541358718
2425 | },
2426 | {
2427 | "Sample1": 6.300256204705162,
2428 | "Sample2": 7.750138571522103,
2429 | "Sample3": 8.940711014050674,
2430 | "Sample4": 9.701055428608843
2431 | },
2432 | {
2433 | "Sample1": 6.570160849532002,
2434 | "Sample2": 7.696588951537771,
2435 | "Sample3": 9.049984149608099,
2436 | "Sample4": 9.67963558061511
2437 | },
2438 | {
2439 | "Sample1": 7.510916147892139,
2440 | "Sample2": 13.84283265989237,
2441 | "Sample3": 9.430856740037305,
2442 | "Sample4": 12.13813306395694
2443 | },
2444 | {
2445 | "Sample1": 6.819594650315501,
2446 | "Sample2": 4.249464605047804,
2447 | "Sample3": 9.15096949405486,
2448 | "Sample4": 8.300785842019122
2449 | },
2450 | {
2451 | "Sample1": 9.593352160066415,
2452 | "Sample2": 11.7370791769309,
2453 | "Sample3": 10.27394824294187,
2454 | "Sample4": 11.29583167077236
2455 | },
2456 | {
2457 | "Sample1": 10.03186913231922,
2458 | "Sample2": 10.25110658814187,
2459 | "Sample3": 10.45148547867175,
2460 | "Sample4": 10.70144263525675
2461 | },
2462 | {
2463 | "Sample1": 9.767718035853507,
2464 | "Sample2": 8.10369430928801,
2465 | "Sample3": 10.34454171492045,
2466 | "Sample4": 9.842477723715204
2467 | },
2468 | {
2469 | "Sample1": 11.2740194068317,
2470 | "Sample2": 14.80170954828208,
2471 | "Sample3": 10.95438032665251,
2472 | "Sample4": 12.52168381931283
2473 | },
2474 | {
2475 | "Sample1": 6.394718564867373,
2476 | "Sample2": 10.3191351857682,
2477 | "Sample3": 8.97895488456169,
2478 | "Sample4": 10.72865407430728
2479 | },
2480 | {
2481 | "Sample1": 12.44797893629992,
2482 | "Sample2": 8.583918401846578,
2483 | "Sample3": 11.42966758554653,
2484 | "Sample4": 10.03456736073863
2485 | },
2486 | {
2487 | "Sample1": 9.582296825201428,
2488 | "Sample2": 12.99911189157169,
2489 | "Sample3": 10.26947239886698,
2490 | "Sample4": 11.80064475662868
2491 | },
2492 | {
2493 | "Sample1": 12.12930180685095,
2494 | "Sample2": 13.95626701885854,
2495 | "Sample3": 11.30064850479796,
2496 | "Sample4": 12.18350680754342
2497 | },
2498 | {
2499 | "Sample1": 14.1248632549476,
2500 | "Sample2": 11.3932924224735,
2501 | "Sample3": 12.10856811941198,
2502 | "Sample4": 11.1583169689894
2503 | },
2504 | {
2505 | "Sample1": 12.10905857695818,
2506 | "Sample2": 11.21801774611823,
2507 | "Sample3": 11.29245286516526,
2508 | "Sample4": 11.08820709844729
2509 | },
2510 | {
2511 | "Sample1": 14.46793326578363,
2512 | "Sample2": 11.58117980364137,
2513 | "Sample3": 12.24746286064115,
2514 | "Sample4": 11.23347192145655
2515 | },
2516 | {
2517 | "Sample1": 13.13620769599143,
2518 | "Sample2": 10.97883687699829,
2519 | "Sample3": 11.7083027109277,
2520 | "Sample4": 10.99253475079932
2521 | },
2522 | {
2523 | "Sample1": 11.71262696050964,
2524 | "Sample2": 10.00904936869574,
2525 | "Sample3": 11.13195423502415,
2526 | "Sample4": 10.6046197474783
2527 | },
2528 | {
2529 | "Sample1": 11.8062880007952,
2530 | "Sample2": 7.647916052835257,
2531 | "Sample3": 11.16987368453247,
2532 | "Sample4": 9.660166421134102
2533 | },
2534 | {
2535 | "Sample1": 10.30857361167449,
2536 | "Sample2": 10.16539759852967,
2537 | "Sample3": 10.56351158367389,
2538 | "Sample4": 10.66715903941187
2539 | },
2540 | {
2541 | "Sample1": 8.90111783035628,
2542 | "Sample2": 11.20537515476669,
2543 | "Sample3": 9.993691429294042,
2544 | "Sample4": 11.08315006190668
2545 | },
2546 | {
2547 | "Sample1": 17.22058278867914,
2548 | "Sample2": 10.36621487295386,
2549 | "Sample3": 13.361895865862,
2550 | "Sample4": 10.74748594918154
2551 | },
2552 | {
2553 | "Sample1": 13.25377454840769,
2554 | "Sample2": 9.243502299880335,
2555 | "Sample3": 11.7559006268857,
2556 | "Sample4": 10.29840091995214
2557 | },
2558 | {
2559 | "Sample1": 13.00068511756114,
2560 | "Sample2": 10.65849516374504,
2561 | "Sample3": 11.65343527026767,
2562 | "Sample4": 10.86439806549802
2563 | },
2564 | {
2565 | "Sample1": 13.29709351492593,
2566 | "Sample2": 7.403898453876209,
2567 | "Sample3": 11.7734386700105,
2568 | "Sample4": 9.562559381550484
2569 | },
2570 | {
2571 | "Sample1": 10.88640016109573,
2572 | "Sample2": 9.061582589159558,
2573 | "Sample3": 10.7974494579335,
2574 | "Sample4": 10.22563303566382
2575 | },
2576 | {
2577 | "Sample1": 10.7586557390683,
2578 | "Sample2": 9.133657965083183,
2579 | "Sample3": 10.7457310684487,
2580 | "Sample4": 10.25446318603327
2581 | },
2582 | {
2583 | "Sample1": 8.667005899517289,
2584 | "Sample2": 8.673335008833398,
2585 | "Sample3": 9.898909271059631,
2586 | "Sample4": 10.07033400353336
2587 | },
2588 | {
2589 | "Sample1": 9.346126128113697,
2590 | "Sample2": 9.371619652929567,
2591 | "Sample3": 10.17385673202984,
2592 | "Sample4": 10.34964786117183
2593 | },
2594 | {
2595 | "Sample1": 7.306489547756193,
2596 | "Sample2": 7.896482837148658,
2597 | "Sample3": 9.348092934314248,
2598 | "Sample4": 9.759593134859461
2599 | },
2600 | {
2601 | "Sample1": 10.45198425846374,
2602 | "Sample2": 11.52132562041276,
2603 | "Sample3": 10.62157257427682,
2604 | "Sample4": 11.2095302481651
2605 | },
2606 | {
2607 | "Sample1": 6.977060125534353,
2608 | "Sample2": 12.18739717817079,
2609 | "Sample3": 9.214720698596905,
2610 | "Sample4": 11.47595887126832
2611 | },
2612 | {
2613 | "Sample1": 16.48707670266089,
2614 | "Sample2": 16.46322011104022,
2615 | "Sample3": 13.06492983913396,
2616 | "Sample4": 13.18628804441608
2617 | },
2618 | {
2619 | "Sample1": 14.95676319476646,
2620 | "Sample2": 9.476436262763489,
2621 | "Sample3": 12.44536971448035,
2622 | "Sample4": 10.39157450510539
2623 | },
2624 | {
2625 | "Sample1": 9.994669883218837,
2626 | "Sample2": 17.3305316373734,
2627 | "Sample3": 10.43642505393475,
2628 | "Sample4": 13.53321265494936
2629 | },
2630 | {
2631 | "Sample1": 10.38902387476913,
2632 | "Sample2": 5.567039902577994,
2633 | "Sample3": 10.59608254039236,
2634 | "Sample4": 8.827815961031197
2635 | },
2636 | {
2637 | "Sample1": 11.20479258347438,
2638 | "Sample2": 10.95817146021399,
2639 | "Sample3": 10.9263532726617,
2640 | "Sample4": 10.9842685840856
2641 | },
2642 | {
2643 | "Sample1": 8.404719672262633,
2644 | "Sample2": 9.511769828169871,
2645 | "Sample3": 9.792720515086087,
2646 | "Sample4": 10.40570793126795
2647 | },
2648 | {
2649 | "Sample1": 9.840670415423867,
2650 | "Sample2": 11.09388237167031,
2651 | "Sample3": 10.37407709126472,
2652 | "Sample4": 11.03855294866812
2653 | },
2654 | {
2655 | "Sample1": 5.813077816353356,
2656 | "Sample2": 13.56957641936788,
2657 | "Sample3": 8.74347280014306,
2658 | "Sample4": 12.02883056774715
2659 | },
2660 | {
2661 | "Sample1": 9.151319439371932,
2662 | "Sample2": 7.975368897480915,
2663 | "Sample3": 10.09498762727609,
2664 | "Sample4": 9.791147558992366
2665 | },
2666 | {
2667 | "Sample1": 9.905794856252818,
2668 | "Sample2": 12.81936060051672,
2669 | "Sample3": 10.40044326164082,
2670 | "Sample4": 11.72874424020669
2671 | },
2672 | {
2673 | "Sample1": 9.460973772617095,
2674 | "Sample2": 8.77038067302654,
2675 | "Sample3": 10.22035375409599,
2676 | "Sample4": 10.10915226921062
2677 | },
2678 | {
2679 | "Sample1": 8.326374330884734,
2680 | "Sample2": 14.78236430088098,
2681 | "Sample3": 9.76100175339463,
2682 | "Sample4": 12.51394572035239
2683 | },
2684 | {
2685 | "Sample1": 10.82545161082816,
2686 | "Sample2": 13.02601488419138,
2687 | "Sample3": 10.77277393150938,
2688 | "Sample4": 11.81140595367655
2689 | },
2690 | {
2691 | "Sample1": 10.28252134165249,
2692 | "Sample2": 7.738975426175181,
2693 | "Sample3": 10.55296410593218,
2694 | "Sample4": 9.696590170470072
2695 | },
2696 | {
2697 | "Sample1": 13.22566967996701,
2698 | "Sample2": 10.56988269375128,
2699 | "Sample3": 11.74452213763846,
2700 | "Sample4": 10.82895307750052
2701 | },
2702 | {
2703 | "Sample1": 10.70599658573694,
2704 | "Sample2": 19.11389815585675,
2705 | "Sample3": 10.72441157317285,
2706 | "Sample4": 14.2465592623427
2707 | },
2708 | {
2709 | "Sample1": 9.385729833708911,
2710 | "Sample2": 11.6072551851012,
2711 | "Sample3": 10.18989062093478,
2712 | "Sample4": 11.24390207404048
2713 | },
2714 | {
2715 | "Sample1": 13.01616165619692,
2716 | "Sample2": 12.68773739809402,
2717 | "Sample3": 11.65970107538337,
2718 | "Sample4": 11.6760949592376
2719 | },
2720 | {
2721 | "Sample1": 10.93837292809457,
2722 | "Sample2": 13.24996562179006,
2723 | "Sample3": 10.8184910640059,
2724 | "Sample4": 11.90098624871602
2725 | },
2726 | {
2727 | "Sample1": 13.86715070415495,
2728 | "Sample2": 9.851682854165215,
2729 | "Sample3": 12.00423105431375,
2730 | "Sample4": 10.54167314166609
2731 | },
2732 | {
2733 | "Sample1": 12.34193607910538,
2734 | "Sample2": 12.46653804260034,
2735 | "Sample3": 11.38673525469854,
2736 | "Sample4": 11.58761521704014
2737 | },
2738 | {
2739 | "Sample1": 9.248219061605287,
2740 | "Sample2": 16.10680233320252,
2741 | "Sample3": 10.1342182435649,
2742 | "Sample4": 13.04372093328101
2743 | },
2744 | {
2745 | "Sample1": 10.23245316341754,
2746 | "Sample2": 9.488466458552335,
2747 | "Sample3": 10.53269358842815,
2748 | "Sample4": 10.39638658342093
2749 | },
2750 | {
2751 | "Sample1": 8.821457545866991,
2752 | "Sample2": 12.55272277365527,
2753 | "Sample3": 9.961440301970441,
2754 | "Sample4": 11.62208910946211
2755 | },
2756 | {
2757 | "Sample1": 14.62896709636933,
2758 | "Sample2": 11.53298068611263,
2759 | "Sample3": 12.31265874346937,
2760 | "Sample4": 11.21419227444505
2761 | },
2762 | {
2763 | "Sample1": 9.529822718268822,
2764 | "Sample2": 12.90741831578215,
2765 | "Sample3": 10.24822782116147,
2766 | "Sample4": 11.76396732631286
2767 | },
2768 | {
2769 | "Sample1": 11.45975724890859,
2770 | "Sample2": 9.850206275647826,
2771 | "Sample3": 11.02957783356623,
2772 | "Sample4": 10.54108251025913
2773 | },
2774 | {
2775 | "Sample1": 9.042776892396166,
2776 | "Sample2": 11.39724334065954,
2777 | "Sample3": 10.05104327627375,
2778 | "Sample4": 11.15989733626381
2779 | },
2780 | {
2781 | "Sample1": 8.265999704224418,
2782 | "Sample2": 13.20699073518923,
2783 | "Sample3": 9.736558584706245,
2784 | "Sample4": 11.8837962940757
2785 | },
2786 | {
2787 | "Sample1": 6.650158793849296,
2788 | "Sample2": 7.744906816395653,
2789 | "Sample3": 9.082371981315505,
2790 | "Sample4": 9.69896272655826
2791 | },
2792 | {
2793 | "Sample1": 11.23467147845226,
2794 | "Sample2": 9.82823711307074,
2795 | "Sample3": 10.93844999127622,
2796 | "Sample4": 10.5322948452283
2797 | },
2798 | {
2799 | "Sample1": 9.701045780666439,
2800 | "Sample2": 11.43721082536817,
2801 | "Sample3": 10.31754889905524,
2802 | "Sample4": 11.17588433014727
2803 | },
2804 | {
2805 | "Sample1": 14.39742166647888,
2806 | "Sample2": 9.6183164889615,
2807 | "Sample3": 12.2189156544449,
2808 | "Sample4": 10.4483265955846
2809 | },
2810 | {
2811 | "Sample1": 6.516833034282496,
2812 | "Sample2": 11.86709218051813,
2813 | "Sample3": 9.02839394100506,
2814 | "Sample4": 11.34783687220725
2815 | },
2816 | {
2817 | "Sample1": 11.88938996816108,
2818 | "Sample2": 16.37257156393174,
2819 | "Sample3": 11.20351820573323,
2820 | "Sample4": 13.1500286255727
2821 | },
2822 | {
2823 | "Sample1": 6.726814838480926,
2824 | "Sample2": 9.192194821877907,
2825 | "Sample3": 9.113406817198756,
2826 | "Sample4": 10.27787792875116
2827 | },
2828 | {
2829 | "Sample1": 11.35502685365016,
2830 | "Sample2": 9.283734922642832,
2831 | "Sample3": 10.98717686382598,
2832 | "Sample4": 10.31449396905713
2833 | },
2834 | {
2835 | "Sample1": 7.545753709987089,
2836 | "Sample2": 9.216412270591295,
2837 | "Sample3": 9.444961016189106,
2838 | "Sample4": 10.28756490823652
2839 | },
2840 | {
2841 | "Sample1": 14.87712568162788,
2842 | "Sample2": 8.773857550011664,
2843 | "Sample3": 12.41312780632708,
2844 | "Sample4": 10.11054302000467
2845 | },
2846 | {
2847 | "Sample1": 11.89931062423902,
2848 | "Sample2": 11.61093687563514,
2849 | "Sample3": 11.20753466568382,
2850 | "Sample4": 11.24537475025406
2851 | },
2852 | {
2853 | "Sample1": 7.607658543279907,
2854 | "Sample2": 12.25084734057835,
2855 | "Sample3": 9.470023701732757,
2856 | "Sample4": 11.50133893623134
2857 | },
2858 | {
2859 | "Sample1": 13.3252266347077,
2860 | "Sample2": 15.4632817215414,
2861 | "Sample3": 11.78482859704765,
2862 | "Sample4": 12.78631268861656
2863 | },
2864 | {
2865 | "Sample1": 11.15763739251052,
2866 | "Sample2": 15.50661749854114,
2867 | "Sample3": 10.90726210223098,
2868 | "Sample4": 12.80364699941646
2869 | },
2870 | {
2871 | "Sample1": 13.16762783064879,
2872 | "Sample2": 5.97641512812405,
2873 | "Sample3": 11.72102341321814,
2874 | "Sample4": 8.99156605124962
2875 | },
2876 | {
2877 | "Sample1": 9.101820205618756,
2878 | "Sample2": 9.404475750505524,
2879 | "Sample3": 10.07494745166751,
2880 | "Sample4": 10.36279030020221
2881 | },
2882 | {
2883 | "Sample1": 10.08566948257208,
2884 | "Sample2": 8.256791536190505,
2885 | "Sample3": 10.47326699699275,
2886 | "Sample4": 9.903716614476203
2887 | },
2888 | {
2889 | "Sample1": 13.3268456757859,
2890 | "Sample2": 9.286381349947446,
2891 | "Sample3": 11.78548407926555,
2892 | "Sample4": 10.31555253997898
2893 | },
2894 | {
2895 | "Sample1": 7.947897325717139,
2896 | "Sample2": 9.471737439141794,
2897 | "Sample3": 9.607772196646616,
2898 | "Sample4": 10.38969497565672
2899 | },
2900 | {
2901 | "Sample1": 7.772690567843732,
2902 | "Sample2": 9.825637199004595,
2903 | "Sample3": 9.53683828657641,
2904 | "Sample4": 10.53125487960184
2905 | },
2906 | {
2907 | "Sample1": 11.53917545381533,
2908 | "Sample2": 6.226557364924378,
2909 | "Sample3": 11.06173095296168,
2910 | "Sample4": 9.091622945969752
2911 | },
2912 | {
2913 | "Sample1": 9.682445317880301,
2914 | "Sample2": 12.67582139521384,
2915 | "Sample3": 10.31001834731996,
2916 | "Sample4": 11.67132855808554
2917 | },
2918 | {
2919 | "Sample1": 11.8131069567422,
2920 | "Sample2": 13.31220534860476,
2921 | "Sample3": 11.17263439544218,
2922 | "Sample4": 11.9258821394419
2923 | },
2924 | {
2925 | "Sample1": 11.8936409329233,
2926 | "Sample2": 13.91163040491162,
2927 | "Sample3": 11.2052392440985,
2928 | "Sample4": 12.16565216196465
2929 | },
2930 | {
2931 | "Sample1": 9.084433860033785,
2932 | "Sample2": 7.869782940364268,
2933 | "Sample3": 10.06790844535781,
2934 | "Sample4": 9.748913176145708
2935 | },
2936 | {
2937 | "Sample1": 13.39983228483779,
2938 | "Sample2": 13.3753317231322,
2939 | "Sample3": 11.81503331369951,
2940 | "Sample4": 11.95113268925288
2941 | },
2942 | {
2943 | "Sample1": 7.213549439660452,
2944 | "Sample2": 6.335181068321875,
2945 | "Sample3": 9.310465360186418,
2946 | "Sample4": 9.13507242732875
2947 | },
2948 | {
2949 | "Sample1": 9.303029111393535,
2950 | "Sample2": 13.88408133417504,
2951 | "Sample3": 10.15640854712289,
2952 | "Sample4": 12.15463253367002
2953 | },
2954 | {
2955 | "Sample1": 9.939934130350801,
2956 | "Sample2": 10.96675398636683,
2957 | "Sample3": 10.41426483010154,
2958 | "Sample4": 10.98770159454673
2959 | },
2960 | {
2961 | "Sample1": 10.71147706201578,
2962 | "Sample2": 11.59125391359574,
2963 | "Sample3": 10.72663038948008,
2964 | "Sample4": 11.2375015654383
2965 | },
2966 | {
2967 | "Sample1": 14.44634400221436,
2968 | "Sample2": 5.151317088711934,
2969 | "Sample3": 12.23872226810298,
2970 | "Sample4": 8.661526835484773
2971 | },
2972 | {
2973 | "Sample1": 14.87036151264268,
2974 | "Sample2": 15.61066128018352,
2975 | "Sample3": 12.41038927637355,
2976 | "Sample4": 12.8452645120734
2977 | },
2978 | {
2979 | "Sample1": 7.835021533604499,
2980 | "Sample2": 11.01023521076603,
2981 | "Sample3": 9.562073495386437,
2982 | "Sample4": 11.00509408430641
2983 | },
2984 | {
2985 | "Sample1": 7.668552803085811,
2986 | "Sample2": 13.04458307040506,
2987 | "Sample3": 9.49467724821288,
2988 | "Sample4": 11.81883322816202
2989 | },
2990 | {
2991 | "Sample1": 10.92620902063151,
2992 | "Sample2": 6.68110129416894,
2993 | "Sample3": 10.81356640511397,
2994 | "Sample4": 9.273440517667575
2995 | },
2996 | {
2997 | "Sample1": 9.241136572471547,
2998 | "Sample2": 8.100506288612738,
2999 | "Sample3": 10.13135083905731,
3000 | "Sample4": 9.841202515445096
3001 | }
3002 | ]
--------------------------------------------------------------------------------