Aakash-Tripathi commited on
Commit
1206896
·
verified ·
1 Parent(s): ac4e5ea

Upload folder using huggingface_hub

Browse files
LICENSE ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Original Sybil Model:
4
+ Copyright (c) 2022 Peter Mikhael & Jeremy Wohlwend
5
+
6
+ Hugging Face Adaptation:
7
+ Copyright (c) 2024 Lab-Rasool
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
README.md ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - medical
5
+ - cancer
6
+ - ct-scan
7
+ - risk-prediction
8
+ - healthcare
9
+ - pytorch
10
+ - vision
11
+ datasets:
12
+ - NLST
13
+ metrics:
14
+ - auc
15
+ - c-index
16
+ language:
17
+ - en
18
+ library_name: transformers
19
+ pipeline_tag: image-classification
20
+ ---
21
+
22
+ # Sybil - Lung Cancer Risk Prediction
23
+
24
+ ## Model Description
25
+
26
+ Sybil is a validated deep learning model that predicts future lung cancer risk from a single low-dose chest CT (LDCT) scan. Published in the Journal of Clinical Oncology, this model can assess cancer risk over a 1-6 year timeframe.
27
+
28
+ ### Key Features
29
+ - **Single Scan Analysis**: Requires only one LDCT scan
30
+ - **Multi-Year Prediction**: Provides risk scores for years 1-6
31
+ - **Validated Performance**: Tested across multiple institutions globally
32
+ - **Ensemble Approach**: Uses 5 models for robust predictions
33
+
34
+ ## Model Details
35
+
36
+ - **Developed by**: MIT CSAIL & Mass General Cancer Center (Original)
37
+ - **Adapted by**: Lab-Rasool (Hugging Face version)
38
+ - **Model type**: 3D Convolutional Neural Network
39
+ - **Architecture**: 3D ResNet-18 with multi-attention pooling
40
+ - **Input**: LDCT scans (200 slices × 256×256 pixels)
41
+ - **Output**: 6 risk scores (years 1-6)
42
+ - **License**: MIT
43
+
44
+ ## Performance Metrics
45
+
46
+ | Dataset | 1-Year AUC | 6-Year AUC |
47
+ |---------|------------|------------|
48
+ | NLST Test | 0.94 | 0.86 |
49
+ | MGH | 0.86 | 0.75 |
50
+ | CGMH Taiwan | 0.94 | 0.80 |
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ from huggingface_sybil import SybilHFWrapper, SybilConfig
56
+
57
+ # Load model
58
+ config = SybilConfig()
59
+ model = SybilHFWrapper.from_pretrained("Lab-Rasool/sybil")
60
+
61
+ # Prepare DICOM files
62
+ dicom_paths = ["scan1.dcm", "scan2.dcm", ...]
63
+
64
+ # Get predictions
65
+ output = model(dicom_paths=dicom_paths)
66
+ risk_scores = output.risk_scores
67
+
68
+ # Display results
69
+ for year, score in enumerate(risk_scores, 1):
70
+ print(f"Year {year}: {score:.1%} risk")
71
+ ```
72
+
73
+ ## Intended Use
74
+
75
+ ### Primary Use Cases
76
+ - Risk stratification in lung cancer screening programs
77
+ - Research on lung cancer prediction models
78
+ - Clinical decision support (with appropriate oversight)
79
+
80
+ ### Users
81
+ - Healthcare providers
82
+ - Medical researchers
83
+ - Screening program coordinators
84
+
85
+ ### Out of Scope
86
+ - Diagnosis of existing cancer
87
+ - Use with non-LDCT imaging (X-rays, MRI)
88
+ - Sole basis for clinical decisions
89
+
90
+ ## Training Data
91
+
92
+ Trained on the National Lung Screening Trial (NLST) dataset:
93
+ - ~50,000 participants
94
+ - Ages 55-74
95
+ - Current/former heavy smokers
96
+ - 3 annual LDCT scans
97
+
98
+ ## Ethical Considerations
99
+
100
+ ⚠️ **Medical AI Notice**: This model should supplement, not replace, clinical judgment. Always consider:
101
+ - Complete patient history
102
+ - Other risk factors
103
+ - Current screening guidelines
104
+ - Need for human oversight
105
+
106
+ ## Limitations
107
+
108
+ - Optimized for screening-eligible population (55-80 years)
109
+ - Requires LDCT scans specifically
110
+ - Performance may vary across different CT scanners
111
+ - Not validated for non-screening populations
112
+
113
+ ## Citation
114
+
115
+ **Original Paper:**
116
+ ```bibtex
117
+ @article{mikhael2023sybil,
118
+ title={Sybil: a validated deep learning model to predict future lung cancer risk from a single low-dose chest computed tomography},
119
+ author={Mikhael, Peter G and Wohlwend, Jeremy and Yala, Adam and Karstens, Ludvig and Xiang, Justin and Takigami, Angelo K and Bourgouin, Patrick P and Chan, PuiYee and Mrah, Sofiane and Amayri, Wael and others},
120
+ journal={Journal of Clinical Oncology},
121
+ volume={41},
122
+ number={12},
123
+ pages={2191--2200},
124
+ year={2023},
125
+ publisher={American Society of Clinical Oncology}
126
+ }
127
+ ```
128
+
129
+ ## Acknowledgments
130
+
131
+ This Hugging Face implementation is based on the original work by Peter G. Mikhael, Jeremy Wohlwend, and the team at MIT CSAIL and Massachusetts General Hospital. Original model and code available at [GitHub](https://github.com/reginabarzilaygroup/Sybil).
132
+
133
+ ## Model Card Contact
134
+
135
+ For questions about this Hugging Face implementation: Lab-Rasool
136
+ For questions about the original model: See the [original repository](https://github.com/reginabarzilaygroup/Sybil)
__init__.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Hugging Face Sybil model for lung cancer risk prediction"""
2
+
3
+ from .configuration_sybil import SybilConfig
4
+ from .modeling_sybil import (
5
+ SybilForRiskPrediction,
6
+ SybilPreTrainedModel,
7
+ SybilOutput,
8
+ SybilEnsemble,
9
+ )
10
+ from .image_processing_sybil import SybilImageProcessor
11
+
12
+ __version__ = "1.0.0"
13
+
14
+ __all__ = [
15
+ "SybilConfig",
16
+ "SybilForRiskPrediction",
17
+ "SybilPreTrainedModel",
18
+ "SybilOutput",
19
+ "SybilEnsemble",
20
+ "SybilImageProcessor",
21
+ ]
calibrator_data.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoints/28a7cd44f5bcd3e6cc760b65c7e0d54d.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40c9a46c45b8d32b23b52ed75182d7e1886746796476feb07a2767db86947251
3
+ size 149559985
checkpoints/56ce1a7d241dc342982f5466c4a9d7ef.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4802c8b66511e7a4261c501dac2d8d6887103c11f58587cc7a3ce796a5f0f9e
3
+ size 149560561
checkpoints/624407ef8e3a2a009f9fa51f9846fe9a.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:622482b897994e1daa95be133d928421571ed4c1fa1c3a9b006e68b7cdd7a90d
3
+ size 149560561
checkpoints/64a91b25f84141d32852e75a3aec7305.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f66c956e56f0cf1ce90baf08738be3b87fef365399c7b468033e028c7b5d7235
3
+ size 149560561
checkpoints/65fd1f04cb4c5847d86a9ed8ba31ac1a.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:313bff54241dde0ebc4cd9b884bc3910e1b5497e37b8659199577e81f4cdd6c2
3
+ size 149560561
checkpoints/sybil_1_simple_calibrator.json ADDED
@@ -0,0 +1,1896 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.7394426200004992
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.1496223479086196
11
+ ],
12
+ "x0": [
13
+ -1.138647232816273,
14
+ -1.099675442437308,
15
+ -1.0995844071468517,
16
+ -1.0592561150497968,
17
+ -1.0589458050319462,
18
+ -0.9037376150574079,
19
+ -0.9034971681791288,
20
+ -0.7692528398602396,
21
+ -0.7690217146783691,
22
+ -0.7151345964502608,
23
+ -0.7143474750499885,
24
+ -0.5665103503990683,
25
+ -0.5590603977404195,
26
+ -0.5217635631858795,
27
+ -0.5173947066540479,
28
+ -0.4885224378677494,
29
+ -0.46576833119460304,
30
+ -0.44153487350515486
31
+ ],
32
+ "y0": [
33
+ 0.0,
34
+ 0.0,
35
+ 0.00625,
36
+ 0.00625,
37
+ 0.009868421052631578,
38
+ 0.009868421052631578,
39
+ 0.012658227848101266,
40
+ 0.012658227848101266,
41
+ 0.09523809523809523,
42
+ 0.09523809523809523,
43
+ 0.13513513513513514,
44
+ 0.13513513513513514,
45
+ 0.42857142857142855,
46
+ 0.42857142857142855,
47
+ 0.5,
48
+ 0.5,
49
+ 0.6666666666666666,
50
+ 0.6666666666666666
51
+ ],
52
+ "x_min": -1.138647232816273,
53
+ "x_max": -0.44153487350515486
54
+ },
55
+ {
56
+ "coef": [
57
+ [
58
+ 0.7601218194550317
59
+ ]
60
+ ],
61
+ "intercept": [
62
+ -1.161542127010419
63
+ ],
64
+ "x0": [
65
+ -1.1480268648891094,
66
+ -1.1215453145384335,
67
+ -1.121471237935092,
68
+ -1.0408153183197768,
69
+ -1.0406168405949519,
70
+ -1.0175969924250454,
71
+ -1.017368963345768,
72
+ -0.9127195412945146,
73
+ -0.9102616252274898,
74
+ -0.8094987782849563,
75
+ -0.800197701846664,
76
+ -0.7038574999643723,
77
+ -0.6960681752225328,
78
+ -0.6000636740084124,
79
+ -0.5976373594281343,
80
+ -0.477563444249697,
81
+ -0.4774296532957717,
82
+ -0.46217345224388606,
83
+ -0.4328189104917961,
84
+ -0.42905577373524983
85
+ ],
86
+ "y0": [
87
+ 0.0,
88
+ 0.0,
89
+ 0.0017574692442882249,
90
+ 0.0017574692442882249,
91
+ 0.017241379310344827,
92
+ 0.017241379310344827,
93
+ 0.018633540372670808,
94
+ 0.018633540372670808,
95
+ 0.05454545454545454,
96
+ 0.05454545454545454,
97
+ 0.08823529411764706,
98
+ 0.08823529411764706,
99
+ 0.1,
100
+ 0.1,
101
+ 0.17647058823529413,
102
+ 0.17647058823529413,
103
+ 0.5,
104
+ 0.5,
105
+ 1.0,
106
+ 1.0
107
+ ],
108
+ "x_min": -1.1480268648891094,
109
+ "x_max": -0.42905577373524983
110
+ },
111
+ {
112
+ "coef": [
113
+ [
114
+ 0.6770606608965437
115
+ ]
116
+ ],
117
+ "intercept": [
118
+ -1.127642728295089
119
+ ],
120
+ "x0": [
121
+ -1.11909487246511,
122
+ -1.0838683963255824,
123
+ -1.0837883603675473,
124
+ -0.9967671790951109,
125
+ -0.9966640393498704,
126
+ -0.8342575007158979,
127
+ -0.8316571442434535,
128
+ -0.760727266488066,
129
+ -0.760624721993238,
130
+ -0.7312530488318257,
131
+ -0.7198125376792268,
132
+ -0.557411840570491,
133
+ -0.5569732519952099,
134
+ -0.5214433400216196,
135
+ -0.5089240736973387,
136
+ -0.4927067486056249
137
+ ],
138
+ "y0": [
139
+ 0.0,
140
+ 0.0,
141
+ 0.0038240917782026767,
142
+ 0.0038240917782026767,
143
+ 0.010416666666666666,
144
+ 0.010416666666666666,
145
+ 0.06060606060606061,
146
+ 0.06060606060606061,
147
+ 0.0625,
148
+ 0.0625,
149
+ 0.18421052631578946,
150
+ 0.18421052631578946,
151
+ 0.75,
152
+ 0.75,
153
+ 1.0,
154
+ 1.0
155
+ ],
156
+ "x_min": -1.11909487246511,
157
+ "x_max": -0.4927067486056249
158
+ },
159
+ {
160
+ "coef": [
161
+ [
162
+ 0.655421459366553
163
+ ]
164
+ ],
165
+ "intercept": [
166
+ -1.120910856656922
167
+ ],
168
+ "x0": [
169
+ -1.1090770028468642,
170
+ -1.0107763105071317,
171
+ -1.0106868099270945,
172
+ -0.9632189994595627,
173
+ -0.9626335148707295,
174
+ -0.8567510471290514,
175
+ -0.8557494688352963,
176
+ -0.7801458169236068,
177
+ -0.7749772463253279,
178
+ -0.6562045073531557,
179
+ -0.6530508522575293,
180
+ -0.5603631764889861,
181
+ -0.5481628527678922,
182
+ -0.5031716807866267,
183
+ -0.4833644718871495,
184
+ -0.4761580148822191
185
+ ],
186
+ "y0": [
187
+ 0.0,
188
+ 0.0,
189
+ 0.007633587786259542,
190
+ 0.007633587786259542,
191
+ 0.017857142857142856,
192
+ 0.017857142857142856,
193
+ 0.08108108108108109,
194
+ 0.08108108108108109,
195
+ 0.125,
196
+ 0.125,
197
+ 0.3333333333333333,
198
+ 0.3333333333333333,
199
+ 0.42857142857142855,
200
+ 0.42857142857142855,
201
+ 1.0,
202
+ 1.0
203
+ ],
204
+ "x_min": -1.1090770028468642,
205
+ "x_max": -0.4761580148822191
206
+ },
207
+ {
208
+ "coef": [
209
+ [
210
+ 0.7652060706842321
211
+ ]
212
+ ],
213
+ "intercept": [
214
+ -1.1604011771809852
215
+ ],
216
+ "x0": [
217
+ -1.1490872939020729,
218
+ -1.1354633066359674,
219
+ -1.1354161432149048,
220
+ -1.0500053854944313,
221
+ -1.0498207454757509,
222
+ -0.9897308241390781,
223
+ -0.9896012922047724,
224
+ -0.8720314153855542,
225
+ -0.8686455920132968,
226
+ -0.8081156839909682,
227
+ -0.8056082148408439,
228
+ -0.7577569518411362,
229
+ -0.757442563241429,
230
+ -0.6988052809747152,
231
+ -0.6928343605114222,
232
+ -0.6397135879117031,
233
+ -0.6373635867204486,
234
+ -0.46958757686027264
235
+ ],
236
+ "y0": [
237
+ 0.0,
238
+ 0.0,
239
+ 0.0012391573729863693,
240
+ 0.0012391573729863693,
241
+ 0.012903225806451613,
242
+ 0.012903225806451613,
243
+ 0.017241379310344827,
244
+ 0.017241379310344827,
245
+ 0.029411764705882353,
246
+ 0.029411764705882353,
247
+ 0.05,
248
+ 0.05,
249
+ 0.07407407407407407,
250
+ 0.07407407407407407,
251
+ 0.2,
252
+ 0.2,
253
+ 0.2647058823529412,
254
+ 0.2647058823529412
255
+ ],
256
+ "x_min": -1.1490872939020729,
257
+ "x_max": -0.46958757686027264
258
+ }
259
+ ],
260
+ "Year2": [
261
+ {
262
+ "coef": [
263
+ [
264
+ 0.7978029084613283
265
+ ]
266
+ ],
267
+ "intercept": [
268
+ -1.0932795504046788
269
+ ],
270
+ "x0": [
271
+ -1.0814382276237902,
272
+ -1.039390600301115,
273
+ -1.039292380077484,
274
+ -0.995781189542799,
275
+ -0.995446388399249,
276
+ -0.9829072429978533,
277
+ -0.9817880293747901,
278
+ -0.841047709811265,
279
+ -0.8402047182768085,
280
+ -0.7157222233621745,
281
+ -0.7113863152474782,
282
+ -0.6828894922676496,
283
+ -0.6826401255996654,
284
+ -0.6244999826214919,
285
+ -0.6236507378992322,
286
+ -0.4731474446110374,
287
+ -0.46414561223446515,
288
+ -0.32930648306412014
289
+ ],
290
+ "y0": [
291
+ 0.0,
292
+ 0.0,
293
+ 0.0125,
294
+ 0.0125,
295
+ 0.021739130434782608,
296
+ 0.021739130434782608,
297
+ 0.024793388429752067,
298
+ 0.024793388429752067,
299
+ 0.037037037037037035,
300
+ 0.037037037037037035,
301
+ 0.08333333333333333,
302
+ 0.08333333333333333,
303
+ 0.1,
304
+ 0.1,
305
+ 0.16216216216216217,
306
+ 0.16216216216216217,
307
+ 0.7142857142857143,
308
+ 0.7142857142857143
309
+ ],
310
+ "x_min": -1.0814382276237902,
311
+ "x_max": -0.32930648306412014
312
+ },
313
+ {
314
+ "coef": [
315
+ [
316
+ 0.8359961826726184
317
+ ]
318
+ ],
319
+ "intercept": [
320
+ -1.1063663276615174
321
+ ],
322
+ "x0": [
323
+ -1.0915019897987586,
324
+ -1.0623770858191703,
325
+ -1.0622956149864249,
326
+ -1.052316260157827,
327
+ -1.0522174362868533,
328
+ -0.9735887272448055,
329
+ -0.973370437733766,
330
+ -0.9480527785070617,
331
+ -0.9478019878641213,
332
+ -0.8197939441255291,
333
+ -0.818689379018821,
334
+ -0.8036801345667344,
335
+ -0.8024534130401637,
336
+ -0.4888418317864538,
337
+ -0.4861733256665667,
338
+ -0.3541137897362632,
339
+ -0.3539666439447664,
340
+ -0.33718758891039524,
341
+ -0.32238331710081514,
342
+ -0.30076414716253363
343
+ ],
344
+ "y0": [
345
+ 0.0,
346
+ 0.0,
347
+ 0.007142857142857143,
348
+ 0.007142857142857143,
349
+ 0.01179245283018868,
350
+ 0.01179245283018868,
351
+ 0.017543859649122806,
352
+ 0.017543859649122806,
353
+ 0.023809523809523808,
354
+ 0.023809523809523808,
355
+ 0.09090909090909091,
356
+ 0.09090909090909091,
357
+ 0.12903225806451613,
358
+ 0.12903225806451613,
359
+ 0.23529411764705882,
360
+ 0.23529411764705882,
361
+ 0.5,
362
+ 0.5,
363
+ 1.0,
364
+ 1.0
365
+ ],
366
+ "x_min": -1.0915019897987586,
367
+ "x_max": -0.30076414716253363
368
+ },
369
+ {
370
+ "coef": [
371
+ [
372
+ 0.7641666926980297
373
+ ]
374
+ ],
375
+ "intercept": [
376
+ -1.0849438384423333
377
+ ],
378
+ "x0": [
379
+ -1.0752962734655038,
380
+ -1.0632962855229422,
381
+ -1.0632139691090998,
382
+ -1.0431427658358643,
383
+ -1.0430655194708893,
384
+ -1.0141149255409088,
385
+ -1.01373747591747,
386
+ -0.9524158241405604,
387
+ -0.952308809386474,
388
+ -0.8299258803130696,
389
+ -0.8296769383516058,
390
+ -0.8099860414081755,
391
+ -0.808781573156607,
392
+ -0.7829062983570528,
393
+ -0.7773145895710171,
394
+ -0.7414175504397484,
395
+ -0.7407942048696062,
396
+ -0.6708235222840055,
397
+ -0.670707785110082,
398
+ -0.637557351721967,
399
+ -0.6246449820109874,
400
+ -0.5631012729113029,
401
+ -0.5483277711012707,
402
+ -0.4748759320429353,
403
+ -0.4413509128546048,
404
+ -0.40075494901682673,
405
+ -0.3866250388114937,
406
+ -0.38240457185527166
407
+ ],
408
+ "y0": [
409
+ 0.0,
410
+ 0.0,
411
+ 0.0027472527472527475,
412
+ 0.0027472527472527475,
413
+ 0.003125,
414
+ 0.003125,
415
+ 0.015267175572519083,
416
+ 0.015267175572519083,
417
+ 0.015957446808510637,
418
+ 0.015957446808510637,
419
+ 0.045454545454545456,
420
+ 0.045454545454545456,
421
+ 0.058823529411764705,
422
+ 0.058823529411764705,
423
+ 0.0625,
424
+ 0.0625,
425
+ 0.07692307692307693,
426
+ 0.07692307692307693,
427
+ 0.17647058823529413,
428
+ 0.17647058823529413,
429
+ 0.2608695652173913,
430
+ 0.2608695652173913,
431
+ 0.26666666666666666,
432
+ 0.26666666666666666,
433
+ 0.8,
434
+ 0.8,
435
+ 1.0,
436
+ 1.0
437
+ ],
438
+ "x_min": -1.0752962734655038,
439
+ "x_max": -0.38240457185527166
440
+ },
441
+ {
442
+ "coef": [
443
+ [
444
+ 0.758814610593186
445
+ ]
446
+ ],
447
+ "intercept": [
448
+ -1.0869946631086642
449
+ ],
450
+ "x0": [
451
+ -1.0732940113488418,
452
+ -1.0611675336335225,
453
+ -1.0611187627719094,
454
+ -0.9594863223987337,
455
+ -0.9593827030453875,
456
+ -0.78116347595927,
457
+ -0.7800038980539497,
458
+ -0.6924737220657586,
459
+ -0.6864898061749868,
460
+ -0.5756781570762617,
461
+ -0.5489805922420773,
462
+ -0.4380202306013171,
463
+ -0.42389529806938564,
464
+ -0.4192572578213559,
465
+ -0.39486197842732007,
466
+ -0.3718067401511106,
467
+ -0.3488749314756351,
468
+ -0.3405316513040677
469
+ ],
470
+ "y0": [
471
+ 0.0,
472
+ 0.0,
473
+ 0.004672897196261682,
474
+ 0.004672897196261682,
475
+ 0.037037037037037035,
476
+ 0.037037037037037035,
477
+ 0.10810810810810811,
478
+ 0.10810810810810811,
479
+ 0.21428571428571427,
480
+ 0.21428571428571427,
481
+ 0.38461538461538464,
482
+ 0.38461538461538464,
483
+ 0.5,
484
+ 0.5,
485
+ 0.6,
486
+ 0.6,
487
+ 1.0,
488
+ 1.0
489
+ ],
490
+ "x_min": -1.0732940113488418,
491
+ "x_max": -0.3405316513040677
492
+ },
493
+ {
494
+ "coef": [
495
+ [
496
+ 0.7906042081117504
497
+ ]
498
+ ],
499
+ "intercept": [
500
+ -1.092301966862684
501
+ ],
502
+ "x0": [
503
+ -1.0806125617820437,
504
+ -1.0665363775011052,
505
+ -1.0664876486676713,
506
+ -1.0280829603340014,
507
+ -1.0278521014110704,
508
+ -1.0089765982737111,
509
+ -1.0088308918459294,
510
+ -0.9853869184667743,
511
+ -0.9852965941474177,
512
+ -0.7943608554392083,
513
+ -0.7908626523948491,
514
+ -0.6762934808859143,
515
+ -0.6759686573391164,
516
+ -0.615385131033781,
517
+ -0.6092160283235022,
518
+ -0.5543321114748917,
519
+ -0.551904110832905,
520
+ -0.4106148214755899,
521
+ -0.409155683755722,
522
+ -0.40852257707485296,
523
+ -0.40287866781141335,
524
+ -0.39056567356125127,
525
+ -0.3785594073636218
526
+ ],
527
+ "y0": [
528
+ 0.0,
529
+ 0.0,
530
+ 0.0018018018018018018,
531
+ 0.0018018018018018018,
532
+ 0.008064516129032258,
533
+ 0.008064516129032258,
534
+ 0.0196078431372549,
535
+ 0.0196078431372549,
536
+ 0.02711864406779661,
537
+ 0.02711864406779661,
538
+ 0.05660377358490566,
539
+ 0.05660377358490566,
540
+ 0.07407407407407407,
541
+ 0.07407407407407407,
542
+ 0.2,
543
+ 0.2,
544
+ 0.39285714285714285,
545
+ 0.39285714285714285,
546
+ 0.5,
547
+ 0.5,
548
+ 0.6666666666666666,
549
+ 0.6666666666666666,
550
+ 1.0
551
+ ],
552
+ "x_min": -1.0806125617820437,
553
+ "x_max": -0.3785594073636218
554
+ }
555
+ ],
556
+ "Year3": [
557
+ {
558
+ "coef": [
559
+ [
560
+ 0.8929581897289551
561
+ ]
562
+ ],
563
+ "intercept": [
564
+ -1.0855284269183931
565
+ ],
566
+ "x0": [
567
+ -1.064238153976214,
568
+ -1.040647752915758,
569
+ -1.040271638973039,
570
+ -1.0152092340903054,
571
+ -1.0150825998040856,
572
+ -0.9916311129097374,
573
+ -0.9914976925054163,
574
+ -0.9169627169495665,
575
+ -0.9165115731569558,
576
+ -0.6629392088306779,
577
+ -0.6580861497356723,
578
+ -0.3914321323206694,
579
+ -0.38135663640811335,
580
+ -0.230435019788792
581
+ ],
582
+ "y0": [
583
+ 0.0,
584
+ 0.0,
585
+ 0.008333333333333333,
586
+ 0.008333333333333333,
587
+ 0.00909090909090909,
588
+ 0.00909090909090909,
589
+ 0.03323262839879154,
590
+ 0.03323262839879154,
591
+ 0.039301310043668124,
592
+ 0.039301310043668124,
593
+ 0.15384615384615385,
594
+ 0.15384615384615385,
595
+ 0.7142857142857143,
596
+ 0.7142857142857143
597
+ ],
598
+ "x_min": -1.064238153976214,
599
+ "x_max": -0.230435019788792
600
+ },
601
+ {
602
+ "coef": [
603
+ [
604
+ 0.8993641689671074
605
+ ]
606
+ ],
607
+ "intercept": [
608
+ -1.0885044279682823
609
+ ],
610
+ "x0": [
611
+ -1.0627840887231457,
612
+ -1.055690960794863,
613
+ -1.055263775685472,
614
+ -1.019755101926136,
615
+ -1.0196930660565056,
616
+ -0.931250480673406,
617
+ -0.9310841001762227,
618
+ -0.8943057549313133,
619
+ -0.8937847956830647,
620
+ -0.8265347904377873,
621
+ -0.8264441154120972,
622
+ -0.7949710632642841,
623
+ -0.7941014621606812,
624
+ -0.7108207261653263,
625
+ -0.7106067030851799,
626
+ -0.5469791833076274,
627
+ -0.5377629769128656,
628
+ -0.42417196262854673,
629
+ -0.42130118541850803,
630
+ -0.3784038841279733,
631
+ -0.37021981308327745,
632
+ -0.27923161949484376,
633
+ -0.27907332014464403,
634
+ -0.2610224232627977,
635
+ -0.22629059163716903,
636
+ -0.22183810747589705
637
+ ],
638
+ "y0": [
639
+ 0.0,
640
+ 0.0,
641
+ 0.0042643923240938165,
642
+ 0.0042643923240938165,
643
+ 0.020484171322160148,
644
+ 0.020484171322160148,
645
+ 0.0375,
646
+ 0.0375,
647
+ 0.0449438202247191,
648
+ 0.0449438202247191,
649
+ 0.06060606060606061,
650
+ 0.06060606060606061,
651
+ 0.08695652173913043,
652
+ 0.08695652173913043,
653
+ 0.13953488372093023,
654
+ 0.13953488372093023,
655
+ 0.14285714285714285,
656
+ 0.14285714285714285,
657
+ 0.2857142857142857,
658
+ 0.2857142857142857,
659
+ 0.3333333333333333,
660
+ 0.3333333333333333,
661
+ 0.75,
662
+ 0.75,
663
+ 1.0,
664
+ 1.0
665
+ ],
666
+ "x_min": -1.0627840887231457,
667
+ "x_max": -0.22183810747589705
668
+ },
669
+ {
670
+ "coef": [
671
+ [
672
+ 0.8348838950220366
673
+ ]
674
+ ],
675
+ "intercept": [
676
+ -1.0725593904342643
677
+ ],
678
+ "x0": [
679
+ -1.0559219478575095,
680
+ -1.0336673278965587,
681
+ -1.0334585878387086,
682
+ -0.9982892082133542,
683
+ -0.9982726806909313,
684
+ -0.9607601251033714,
685
+ -0.9607483064008484,
686
+ -0.9143723646191397,
687
+ -0.9141981693846906,
688
+ -0.7721565611195496,
689
+ -0.7708406294584228,
690
+ -0.7619418431400329,
691
+ -0.7611795243865613,
692
+ -0.6201157209237346,
693
+ -0.6199892732474782,
694
+ -0.583771045976907,
695
+ -0.5696637450159014,
696
+ -0.5074819929910219,
697
+ -0.5047252246442098,
698
+ -0.4060348287259208,
699
+ -0.3694073508888276,
700
+ -0.32505457192722065,
701
+ -0.30961705733614475,
702
+ -0.2896194643265614
703
+ ],
704
+ "y0": [
705
+ 0.0,
706
+ 0.0,
707
+ 0.0020876826722338203,
708
+ 0.0020876826722338203,
709
+ 0.014084507042253521,
710
+ 0.014084507042253521,
711
+ 0.027932960893854747,
712
+ 0.027932960893854747,
713
+ 0.04145077720207254,
714
+ 0.04145077720207254,
715
+ 0.1111111111111111,
716
+ 0.1111111111111111,
717
+ 0.11538461538461539,
718
+ 0.11538461538461539,
719
+ 0.17647058823529413,
720
+ 0.17647058823529413,
721
+ 0.3,
722
+ 0.3,
723
+ 0.3125,
724
+ 0.3125,
725
+ 0.75,
726
+ 0.75,
727
+ 1.0,
728
+ 1.0
729
+ ],
730
+ "x_min": -1.0559219478575095,
731
+ "x_max": -0.2896194643265614
732
+ },
733
+ {
734
+ "coef": [
735
+ [
736
+ 0.8019942474696163
737
+ ]
738
+ ],
739
+ "intercept": [
740
+ -1.0661052962264828
741
+ ],
742
+ "x0": [
743
+ -1.0417698874536039,
744
+ -1.0327046251788632,
745
+ -1.032673353327099,
746
+ -0.9316898725328907,
747
+ -0.9312316967328393,
748
+ -0.8953720638428501,
749
+ -0.8944515892700298,
750
+ -0.8846378027922507,
751
+ -0.884395599058725,
752
+ -0.8548520855071573,
753
+ -0.8542436781417952,
754
+ -0.8337892161187821,
755
+ -0.833305453986591,
756
+ -0.7986376350768181,
757
+ -0.798202249157846,
758
+ -0.7438598912554718,
759
+ -0.7429181803854948,
760
+ -0.6491345094155003,
761
+ -0.6428100843784159,
762
+ -0.590790071526053,
763
+ -0.5793232837053253,
764
+ -0.525692801857555,
765
+ -0.49747603702520005,
766
+ -0.46197492350195324,
767
+ -0.4475053208731371,
768
+ -0.3603709173877868,
769
+ -0.3345874473988044,
770
+ -0.3102202723162014,
771
+ -0.2859835504805106,
772
+ -0.2771655037412766
773
+ ],
774
+ "y0": [
775
+ 0.0,
776
+ 0.0,
777
+ 0.0074866310160427805,
778
+ 0.0074866310160427805,
779
+ 0.03418803418803419,
780
+ 0.03418803418803419,
781
+ 0.037037037037037035,
782
+ 0.037037037037037035,
783
+ 0.046511627906976744,
784
+ 0.046511627906976744,
785
+ 0.05,
786
+ 0.05,
787
+ 0.05263157894736842,
788
+ 0.05263157894736842,
789
+ 0.06451612903225806,
790
+ 0.06451612903225806,
791
+ 0.1282051282051282,
792
+ 0.1282051282051282,
793
+ 0.23076923076923078,
794
+ 0.23076923076923078,
795
+ 0.26666666666666666,
796
+ 0.26666666666666666,
797
+ 0.5,
798
+ 0.5,
799
+ 0.5384615384615384,
800
+ 0.5384615384615384,
801
+ 0.6,
802
+ 0.6,
803
+ 1.0,
804
+ 1.0
805
+ ],
806
+ "x_min": -1.0417698874536039,
807
+ "x_max": -0.2771655037412766
808
+ },
809
+ {
810
+ "coef": [
811
+ [
812
+ 0.8517526596480766
813
+ ]
814
+ ],
815
+ "intercept": [
816
+ -1.0756334493937054
817
+ ],
818
+ "x0": [
819
+ -1.0540387868921657,
820
+ -1.0316677547546516,
821
+ -1.0316270162748689,
822
+ -0.9810683290542638,
823
+ -0.9810478059226153,
824
+ -0.9659695232917961,
825
+ -0.9655314172570145,
826
+ -0.8399615691355012,
827
+ -0.8397950487352366,
828
+ -0.7698312741061977,
829
+ -0.7690651533439438,
830
+ -0.7551365595406525,
831
+ -0.7508796279668151,
832
+ -0.6352973104590074,
833
+ -0.628991873351427,
834
+ -0.5227319059956278,
835
+ -0.5222584905284122,
836
+ -0.49605488095750616,
837
+ -0.4934390891577398,
838
+ -0.3412219282128167,
839
+ -0.33964993501958707,
840
+ -0.3389678613678935,
841
+ -0.3328874298743292,
842
+ -0.31962210002507974,
843
+ -0.306687221787209
844
+ ],
845
+ "y0": [
846
+ 0.0,
847
+ 0.0,
848
+ 0.005136986301369863,
849
+ 0.005136986301369863,
850
+ 0.011235955056179775,
851
+ 0.011235955056179775,
852
+ 0.032679738562091505,
853
+ 0.032679738562091505,
854
+ 0.07272727272727272,
855
+ 0.07272727272727272,
856
+ 0.07692307692307693,
857
+ 0.07692307692307693,
858
+ 0.08,
859
+ 0.08,
860
+ 0.17647058823529413,
861
+ 0.17647058823529413,
862
+ 0.2,
863
+ 0.2,
864
+ 0.39285714285714285,
865
+ 0.39285714285714285,
866
+ 0.5,
867
+ 0.5,
868
+ 0.6666666666666666,
869
+ 0.6666666666666666,
870
+ 1.0
871
+ ],
872
+ "x_min": -1.0540387868921657,
873
+ "x_max": -0.306687221787209
874
+ }
875
+ ],
876
+ "Year4": [
877
+ {
878
+ "coef": [
879
+ [
880
+ 0.9071986156962324
881
+ ]
882
+ ],
883
+ "intercept": [
884
+ -1.065506147275038
885
+ ],
886
+ "x0": [
887
+ -1.0438763482955333,
888
+ -1.0199097399683723,
889
+ -1.0195276279589822,
890
+ -0.972389893042229,
891
+ -0.9722163652198778,
892
+ -0.9456070264364417,
893
+ -0.9454926615100917,
894
+ -0.9246304306419977,
895
+ -0.9246013797877748,
896
+ -0.9148552169862058,
897
+ -0.9147286450233907,
898
+ -0.8942522403211306,
899
+ -0.8937939019253983,
900
+ -0.6361776993510699,
901
+ -0.6312472462307313,
902
+ -0.5324469537709826,
903
+ -0.5314812595772785,
904
+ -0.3603407712678246,
905
+ -0.3501045966636157,
906
+ -0.19677616174860058
907
+ ],
908
+ "y0": [
909
+ 0.0,
910
+ 0.0,
911
+ 0.014336917562724014,
912
+ 0.014336917562724014,
913
+ 0.0379746835443038,
914
+ 0.0379746835443038,
915
+ 0.04040404040404041,
916
+ 0.04040404040404041,
917
+ 0.043478260869565216,
918
+ 0.043478260869565216,
919
+ 0.044444444444444446,
920
+ 0.044444444444444446,
921
+ 0.04932735426008968,
922
+ 0.04932735426008968,
923
+ 0.1724137931034483,
924
+ 0.1724137931034483,
925
+ 0.17647058823529413,
926
+ 0.17647058823529413,
927
+ 0.7142857142857143,
928
+ 0.7142857142857143
929
+ ],
930
+ "x_min": -1.0438763482955333,
931
+ "x_max": -0.19677616174860058
932
+ },
933
+ {
934
+ "coef": [
935
+ [
936
+ 0.9048855992254696
937
+ ]
938
+ ],
939
+ "intercept": [
940
+ -1.0658231167271048
941
+ ],
942
+ "x0": [
943
+ -1.0399448736380486,
944
+ -1.0328081991548541,
945
+ -1.032378391445108,
946
+ -1.0159461742061258,
947
+ -1.0157502100986877,
948
+ -0.9966517207135841,
949
+ -0.9965893039896352,
950
+ -0.9928307762549845,
951
+ -0.9928062019453286,
952
+ -0.9076037466004094,
953
+ -0.9074363446501338,
954
+ -0.8704322075899679,
955
+ -0.8699080500375662,
956
+ -0.8022451795407605,
957
+ -0.8021539478375332,
958
+ -0.7704876744469266,
959
+ -0.769612734636255,
960
+ -0.7556360269147779,
961
+ -0.7544404412420399,
962
+ -0.6858207165690431,
963
+ -0.6856053795456115,
964
+ -0.39741214181104056,
965
+ -0.3945237401539765,
966
+ -0.3513630811875188,
967
+ -0.3431287660047284,
968
+ -0.25158197226013124,
969
+ -0.2514227010690997,
970
+ -0.23326098504226955,
971
+ -0.1983159256801097,
972
+ -0.19383610656196348
973
+ ],
974
+ "y0": [
975
+ 0.0,
976
+ 0.0,
977
+ 0.0053475935828877,
978
+ 0.0053475935828877,
979
+ 0.007220216606498195,
980
+ 0.007220216606498195,
981
+ 0.022222222222222223,
982
+ 0.022222222222222223,
983
+ 0.026694045174537988,
984
+ 0.026694045174537988,
985
+ 0.0379746835443038,
986
+ 0.0379746835443038,
987
+ 0.05813953488372093,
988
+ 0.05813953488372093,
989
+ 0.06060606060606061,
990
+ 0.06060606060606061,
991
+ 0.14285714285714285,
992
+ 0.14285714285714285,
993
+ 0.15384615384615385,
994
+ 0.15384615384615385,
995
+ 0.15625,
996
+ 0.15625,
997
+ 0.2857142857142857,
998
+ 0.2857142857142857,
999
+ 0.3333333333333333,
1000
+ 0.3333333333333333,
1001
+ 0.75,
1002
+ 0.75,
1003
+ 1.0,
1004
+ 1.0
1005
+ ],
1006
+ "x_min": -1.0399448736380486,
1007
+ "x_max": -0.19383610656196348
1008
+ },
1009
+ {
1010
+ "coef": [
1011
+ [
1012
+ 0.850297100158073
1013
+ ]
1014
+ ],
1015
+ "intercept": [
1016
+ -1.0548052754002695
1017
+ ],
1018
+ "x0": [
1019
+ -1.0378606807549415,
1020
+ -1.015195207231324,
1021
+ -1.0149826135198692,
1022
+ -0.9791639545565076,
1023
+ -0.9791471219113065,
1024
+ -0.9419972205442244,
1025
+ -0.941578539378982,
1026
+ -0.8945152236215917,
1027
+ -0.8944199294367536,
1028
+ -0.7488565606525255,
1029
+ -0.7475163349251712,
1030
+ -0.7187246179632958,
1031
+ -0.712502659048929,
1032
+ -0.6725596092284624,
1033
+ -0.6718660054169472,
1034
+ -0.5940088191941924,
1035
+ -0.5938800371047502,
1036
+ -0.556993167200259,
1037
+ -0.5426254243683248,
1038
+ -0.37597567360303275,
1039
+ -0.33867199775459356,
1040
+ -0.2935004001709427,
1041
+ -0.27777788597620756,
1042
+ -0.257411107496499
1043
+ ],
1044
+ "y0": [
1045
+ 0.0,
1046
+ 0.0,
1047
+ 0.004201680672268907,
1048
+ 0.004201680672268907,
1049
+ 0.02158273381294964,
1050
+ 0.02158273381294964,
1051
+ 0.03409090909090909,
1052
+ 0.03409090909090909,
1053
+ 0.06091370558375635,
1054
+ 0.06091370558375635,
1055
+ 0.1111111111111111,
1056
+ 0.1111111111111111,
1057
+ 0.13333333333333333,
1058
+ 0.13333333333333333,
1059
+ 0.14814814814814814,
1060
+ 0.14814814814814814,
1061
+ 0.2,
1062
+ 0.2,
1063
+ 0.3235294117647059,
1064
+ 0.3235294117647059,
1065
+ 0.75,
1066
+ 0.75,
1067
+ 1.0,
1068
+ 1.0
1069
+ ],
1070
+ "x_min": -1.0378606807549415,
1071
+ "x_max": -0.257411107496499
1072
+ },
1073
+ {
1074
+ "coef": [
1075
+ [
1076
+ 0.8353247695900603
1077
+ ]
1078
+ ],
1079
+ "intercept": [
1080
+ -1.0518184298236288
1081
+ ],
1082
+ "x0": [
1083
+ -1.0264716523495734,
1084
+ -1.0170296418304043,
1085
+ -1.0169970703344715,
1086
+ -0.999572698549948,
1087
+ -0.9995487748219715,
1088
+ -0.990660624433626,
1089
+ -0.9906467830259726,
1090
+ -0.9804626997278001,
1091
+ -0.9804387946707871,
1092
+ -0.9118167612574788,
1093
+ -0.9113395438761607,
1094
+ -0.8907000010481065,
1095
+ -0.8906960303565225,
1096
+ -0.7732349323390033,
1097
+ -0.7727814519760262,
1098
+ -0.7161806499914695,
1099
+ -0.7151998020390485,
1100
+ -0.6175185236614396,
1101
+ -0.6109312583492998,
1102
+ -0.5567493170360382,
1103
+ -0.5448059746436101,
1104
+ -0.4889466339640002,
1105
+ -0.45955719300911757,
1106
+ -0.42258066909069614,
1107
+ -0.4075097162501853,
1108
+ -0.316754045939065,
1109
+ -0.289899026472613,
1110
+ -0.26451916249521323,
1111
+ -0.23927517334330373,
1112
+ -0.23009065252669503
1113
+ ],
1114
+ "y0": [
1115
+ 0.0,
1116
+ 0.0,
1117
+ 0.008368200836820083,
1118
+ 0.008368200836820083,
1119
+ 0.00980392156862745,
1120
+ 0.00980392156862745,
1121
+ 0.01652892561983471,
1122
+ 0.01652892561983471,
1123
+ 0.01939655172413793,
1124
+ 0.01939655172413793,
1125
+ 0.027777777777777776,
1126
+ 0.027777777777777776,
1127
+ 0.05325443786982249,
1128
+ 0.05325443786982249,
1129
+ 0.06451612903225806,
1130
+ 0.06451612903225806,
1131
+ 0.1282051282051282,
1132
+ 0.1282051282051282,
1133
+ 0.23076923076923078,
1134
+ 0.23076923076923078,
1135
+ 0.26666666666666666,
1136
+ 0.26666666666666666,
1137
+ 0.5,
1138
+ 0.5,
1139
+ 0.5833333333333334,
1140
+ 0.5833333333333334,
1141
+ 0.6,
1142
+ 0.6,
1143
+ 1.0,
1144
+ 1.0
1145
+ ],
1146
+ "x_min": -1.0264716523495734,
1147
+ "x_max": -0.23009065252669503
1148
+ },
1149
+ {
1150
+ "coef": [
1151
+ [
1152
+ 0.8560633659861893
1153
+ ]
1154
+ ],
1155
+ "intercept": [
1156
+ -1.0551830973873562
1157
+ ],
1158
+ "x0": [
1159
+ -1.033479144650605,
1160
+ -1.0110664561411473,
1161
+ -1.0109539484272312,
1162
+ -0.9601393845140443,
1163
+ -0.9601187575151608,
1164
+ -0.9449641639415247,
1165
+ -0.9445238406592366,
1166
+ -0.8333983907949415,
1167
+ -0.8306897609650573,
1168
+ -0.8183184855815173,
1169
+ -0.8181511224242191,
1170
+ -0.747833262271272,
1171
+ -0.747063264184318,
1172
+ -0.7330641779946412,
1173
+ -0.7287857021594405,
1174
+ -0.6126184244251975,
1175
+ -0.6062810756031114,
1176
+ -0.5641802610805028,
1177
+ -0.563311503423137,
1178
+ -0.4726712912558094,
1179
+ -0.4700422609763475,
1180
+ -0.4061563761623187,
1181
+ -0.3846061755699972,
1182
+ -0.31705473145901986,
1183
+ -0.3154747824338421,
1184
+ -0.3147892568185061,
1185
+ -0.308678052360184,
1186
+ -0.2953455868926179,
1187
+ -0.28234524544665374
1188
+ ],
1189
+ "y0": [
1190
+ 0.0,
1191
+ 0.0,
1192
+ 0.00865051903114187,
1193
+ 0.00865051903114187,
1194
+ 0.011235955056179775,
1195
+ 0.011235955056179775,
1196
+ 0.04513888888888889,
1197
+ 0.04513888888888889,
1198
+ 0.06666666666666667,
1199
+ 0.06666666666666667,
1200
+ 0.07407407407407407,
1201
+ 0.07407407407407407,
1202
+ 0.07692307692307693,
1203
+ 0.07692307692307693,
1204
+ 0.10204081632653061,
1205
+ 0.10204081632653061,
1206
+ 0.2222222222222222,
1207
+ 0.2222222222222222,
1208
+ 0.23809523809523808,
1209
+ 0.23809523809523808,
1210
+ 0.4,
1211
+ 0.4,
1212
+ 0.4166666666666667,
1213
+ 0.4166666666666667,
1214
+ 0.5,
1215
+ 0.5,
1216
+ 0.6666666666666666,
1217
+ 0.6666666666666666,
1218
+ 1.0
1219
+ ],
1220
+ "x_min": -1.033479144650605,
1221
+ "x_max": -0.28234524544665374
1222
+ }
1223
+ ],
1224
+ "Year5": [
1225
+ {
1226
+ "coef": [
1227
+ [
1228
+ 0.951146768224984
1229
+ ]
1230
+ ],
1231
+ "intercept": [
1232
+ -1.053520809225843
1233
+ ],
1234
+ "x0": [
1235
+ -1.030843180489689,
1236
+ -1.0057155384703078,
1237
+ -1.0053149155013756,
1238
+ -0.9802702557454791,
1239
+ -0.9802537439776002,
1240
+ -0.9558936493620891,
1241
+ -0.9557117151918084,
1242
+ -0.9445276924468246,
1243
+ -0.9443862581707189,
1244
+ -0.91584014693409,
1245
+ -0.9154659888566359,
1246
+ -0.8758125743595968,
1247
+ -0.8757772972864204,
1248
+ -0.6033940578346522,
1249
+ -0.5982247548064548,
1250
+ -0.49463820027820204,
1251
+ -0.4936257241836146,
1252
+ -0.3141945394886766,
1253
+ -0.3034624856414515,
1254
+ -0.14270623797622806
1255
+ ],
1256
+ "y0": [
1257
+ 0.0,
1258
+ 0.0,
1259
+ 0.01812688821752266,
1260
+ 0.01812688821752266,
1261
+ 0.018957345971563982,
1262
+ 0.018957345971563982,
1263
+ 0.04225352112676056,
1264
+ 0.04225352112676056,
1265
+ 0.050359712230215826,
1266
+ 0.050359712230215826,
1267
+ 0.05172413793103448,
1268
+ 0.05172413793103448,
1269
+ 0.06451612903225806,
1270
+ 0.06451612903225806,
1271
+ 0.17857142857142858,
1272
+ 0.17857142857142858,
1273
+ 0.2,
1274
+ 0.2,
1275
+ 0.7142857142857143,
1276
+ 0.7142857142857143
1277
+ ],
1278
+ "x_min": -1.030843180489689,
1279
+ "x_max": -0.14270623797622806
1280
+ },
1281
+ {
1282
+ "coef": [
1283
+ [
1284
+ 0.9388224404537708
1285
+ ]
1286
+ ],
1287
+ "intercept": [
1288
+ -1.0519867565524152
1289
+ ],
1290
+ "x0": [
1291
+ -1.0251379754995187,
1292
+ -1.0177336470841127,
1293
+ -1.0172877198604557,
1294
+ -1.0002392285334059,
1295
+ -1.0000359149855456,
1296
+ -0.9868031523655528,
1297
+ -0.9866994059034102,
1298
+ -0.9826894358681122,
1299
+ -0.9826737605834803,
1300
+ -0.9762569103982455,
1301
+ -0.9762314144533621,
1302
+ -0.970145375027335,
1303
+ -0.9700906409344099,
1304
+ -0.8878335251201278,
1305
+ -0.8876598449249418,
1306
+ -0.8609227336624639,
1307
+ -0.8600714558890232,
1308
+ -0.8492679042294036,
1309
+ -0.8487240886653707,
1310
+ -0.7455750500214506,
1311
+ -0.7446672964567924,
1312
+ -0.7301664061079818,
1313
+ -0.728925981174695,
1314
+ -0.3585076877796286,
1315
+ -0.3555109594694239,
1316
+ -0.3429165082892942,
1317
+ -0.3427471228842751,
1318
+ -0.20720830166191617,
1319
+ -0.20704305716207427,
1320
+ -0.14729673426900736
1321
+ ],
1322
+ "y0": [
1323
+ 0.0,
1324
+ 0.0,
1325
+ 0.005813953488372093,
1326
+ 0.005813953488372093,
1327
+ 0.011494252873563218,
1328
+ 0.011494252873563218,
1329
+ 0.015151515151515152,
1330
+ 0.015151515151515152,
1331
+ 0.0273972602739726,
1332
+ 0.0273972602739726,
1333
+ 0.029411764705882353,
1334
+ 0.029411764705882353,
1335
+ 0.03201970443349754,
1336
+ 0.03201970443349754,
1337
+ 0.05263157894736842,
1338
+ 0.05263157894736842,
1339
+ 0.05555555555555555,
1340
+ 0.05555555555555555,
1341
+ 0.06896551724137931,
1342
+ 0.06896551724137931,
1343
+ 0.16666666666666666,
1344
+ 0.16666666666666666,
1345
+ 0.16831683168316833,
1346
+ 0.16831683168316833,
1347
+ 0.3333333333333333,
1348
+ 0.3333333333333333,
1349
+ 0.38461538461538464,
1350
+ 0.38461538461538464,
1351
+ 1.0,
1352
+ 1.0
1353
+ ],
1354
+ "x_min": -1.0251379754995187,
1355
+ "x_max": -0.14729673426900736
1356
+ },
1357
+ {
1358
+ "coef": [
1359
+ [
1360
+ 0.8956231775058972
1361
+ ]
1362
+ ],
1363
+ "intercept": [
1364
+ -1.0442400057861483
1365
+ ],
1366
+ "x0": [
1367
+ -1.0263921597862304,
1368
+ -1.0025184767957507,
1369
+ -1.002294550528878,
1370
+ -0.9787193969689044,
1371
+ -0.9786526478234816,
1372
+ -0.9603954920333918,
1373
+ -0.960339813250086,
1374
+ -0.9397536107513162,
1375
+ -0.9392342379395904,
1376
+ -0.925531758766324,
1377
+ -0.9254311712807594,
1378
+ -0.8754055060919639,
1379
+ -0.8753051321396046,
1380
+ -0.826672263974625,
1381
+ -0.8257863547429322,
1382
+ -0.7907005536151701,
1383
+ -0.7899899151076275,
1384
+ -0.7219823384304916,
1385
+ -0.7205706704096493,
1386
+ -0.6902441774386023,
1387
+ -0.6836905497569833,
1388
+ -0.641618289140274,
1389
+ -0.640887711969678,
1390
+ -0.5588802577474669,
1391
+ -0.5587446107787419,
1392
+ -0.5198914433082598,
1393
+ -0.504757811209159,
1394
+ -0.43805222656024634,
1395
+ -0.4350948984321784,
1396
+ -0.32922460136611753,
1397
+ -0.2899324096253505,
1398
+ -0.24235288741674132,
1399
+ -0.22579226628931137,
1400
+ -0.20433981295957016
1401
+ ],
1402
+ "y0": [
1403
+ 0.0,
1404
+ 0.0,
1405
+ 0.01,
1406
+ 0.01,
1407
+ 0.01020408163265306,
1408
+ 0.01020408163265306,
1409
+ 0.025157232704402517,
1410
+ 0.025157232704402517,
1411
+ 0.027777777777777776,
1412
+ 0.027777777777777776,
1413
+ 0.04790419161676647,
1414
+ 0.04790419161676647,
1415
+ 0.06521739130434782,
1416
+ 0.06521739130434782,
1417
+ 0.06976744186046512,
1418
+ 0.06976744186046512,
1419
+ 0.09259259259259259,
1420
+ 0.09259259259259259,
1421
+ 0.125,
1422
+ 0.125,
1423
+ 0.13333333333333333,
1424
+ 0.13333333333333333,
1425
+ 0.15384615384615385,
1426
+ 0.15384615384615385,
1427
+ 0.21428571428571427,
1428
+ 0.21428571428571427,
1429
+ 0.3333333333333333,
1430
+ 0.3333333333333333,
1431
+ 0.35294117647058826,
1432
+ 0.35294117647058826,
1433
+ 0.75,
1434
+ 0.75,
1435
+ 1.0,
1436
+ 1.0
1437
+ ],
1438
+ "x_min": -1.0263921597862304,
1439
+ "x_max": -0.20433981295957016
1440
+ },
1441
+ {
1442
+ "coef": [
1443
+ [
1444
+ 0.8822281878860028
1445
+ ]
1446
+ ],
1447
+ "intercept": [
1448
+ -1.0422225938204932
1449
+ ],
1450
+ "x0": [
1451
+ -1.0154525968399657,
1452
+ -1.005480418193312,
1453
+ -1.0054460178105151,
1454
+ -0.9870432689586449,
1455
+ -0.9870180019152761,
1456
+ -0.982154431295511,
1457
+ -0.9821134216483784,
1458
+ -0.9775137680573073,
1459
+ -0.9772791473897722,
1460
+ -0.8943598428802259,
1461
+ -0.8938558297815187,
1462
+ -0.8785656270392436,
1463
+ -0.8775543668706175,
1464
+ -0.6877387797792502,
1465
+ -0.6867028572935795,
1466
+ -0.5835367830303224,
1467
+ -0.5765796433033331,
1468
+ -0.4477455921184128,
1469
+ -0.4167059364293648,
1470
+ -0.34097200982237863,
1471
+ -0.3388738724021624,
1472
+ -0.21071653626638398,
1473
+ -0.18405509916398288,
1474
+ -0.1743548682458761
1475
+ ],
1476
+ "y0": [
1477
+ 0.0,
1478
+ 0.0,
1479
+ 0.013100436681222707,
1480
+ 0.013100436681222707,
1481
+ 0.01818181818181818,
1482
+ 0.01818181818181818,
1483
+ 0.022222222222222223,
1484
+ 0.022222222222222223,
1485
+ 0.023090586145648313,
1486
+ 0.023090586145648313,
1487
+ 0.03636363636363636,
1488
+ 0.03636363636363636,
1489
+ 0.06763285024154589,
1490
+ 0.06763285024154589,
1491
+ 0.15789473684210525,
1492
+ 0.15789473684210525,
1493
+ 0.2857142857142857,
1494
+ 0.2857142857142857,
1495
+ 0.5,
1496
+ 0.5,
1497
+ 0.6428571428571429,
1498
+ 0.6428571428571429,
1499
+ 1.0,
1500
+ 1.0
1501
+ ],
1502
+ "x_min": -1.0154525968399657,
1503
+ "x_max": -0.1743548682458761
1504
+ },
1505
+ {
1506
+ "coef": [
1507
+ [
1508
+ 0.9070882735271523
1509
+ ]
1510
+ ],
1511
+ "intercept": [
1512
+ -1.0459089552243357
1513
+ ],
1514
+ "x0": [
1515
+ -1.0229113573841169,
1516
+ -1.0000955891488152,
1517
+ -1.0000743477041405,
1518
+ -0.9291205187349318,
1519
+ -0.9286539503688571,
1520
+ -0.8922117007579602,
1521
+ -0.892196129555755,
1522
+ -0.8109049653434219,
1523
+ -0.8080348900036327,
1524
+ -0.794926235580538,
1525
+ -0.7947488968887569,
1526
+ -0.7327678887110992,
1527
+ -0.7307625557604402,
1528
+ -0.5769656023466123,
1529
+ -0.5702505213956326,
1530
+ -0.5256403246780031,
1531
+ -0.5247197854809711,
1532
+ -0.4286770428128748,
1533
+ -0.42589131148503034,
1534
+ -0.3581975644316764,
1535
+ -0.3353628829978629,
1536
+ -0.2637850941944567,
1537
+ -0.2621109736907037,
1538
+ -0.26138458792116726,
1539
+ -0.25490913047078934,
1540
+ -0.24078199507012554,
1541
+ -0.2270067796526335
1542
+ ],
1543
+ "y0": [
1544
+ 0.0,
1545
+ 0.0,
1546
+ 0.014903129657228018,
1547
+ 0.014903129657228018,
1548
+ 0.047619047619047616,
1549
+ 0.047619047619047616,
1550
+ 0.06756756756756757,
1551
+ 0.06756756756756757,
1552
+ 0.07142857142857142,
1553
+ 0.07142857142857142,
1554
+ 0.08333333333333333,
1555
+ 0.08333333333333333,
1556
+ 0.109375,
1557
+ 0.109375,
1558
+ 0.2222222222222222,
1559
+ 0.2222222222222222,
1560
+ 0.25,
1561
+ 0.25,
1562
+ 0.42857142857142855,
1563
+ 0.42857142857142855,
1564
+ 0.45454545454545453,
1565
+ 0.45454545454545453,
1566
+ 0.5,
1567
+ 0.5,
1568
+ 0.6666666666666666,
1569
+ 0.6666666666666666,
1570
+ 1.0
1571
+ ],
1572
+ "x_min": -1.0229113573841169,
1573
+ "x_max": -0.2270067796526335
1574
+ }
1575
+ ],
1576
+ "Year6": [
1577
+ {
1578
+ "coef": [
1579
+ [
1580
+ 1.149659325421569
1581
+ ]
1582
+ ],
1583
+ "intercept": [
1584
+ -1.043342662739866
1585
+ ],
1586
+ "x0": [
1587
+ -1.015932016742906,
1588
+ -0.9855868117887906,
1589
+ -0.9850757820522098,
1590
+ -0.9253398702147505,
1591
+ -0.9251199648095454,
1592
+ -0.922755808249594,
1593
+ -0.9226503824821627,
1594
+ -0.8831853154348036,
1595
+ -0.8831516525110138,
1596
+ -0.8285451822212124,
1597
+ -0.8285025425177454,
1598
+ -0.4992705650925855,
1599
+ -0.49302238381201646,
1600
+ -0.38992698153241234,
1601
+ -0.38930730963453686,
1602
+ -0.14971260592047175,
1603
+ -0.13674067961154457,
1604
+ -0.06716995186222663,
1605
+ -0.060377407698021246,
1606
+ -0.01548782173363139,
1607
+ 0.01988946139944292,
1608
+ 0.036600730381727065
1609
+ ],
1610
+ "y0": [
1611
+ 0.0,
1612
+ 0.0,
1613
+ 0.027989821882951654,
1614
+ 0.027989821882951654,
1615
+ 0.0625,
1616
+ 0.0625,
1617
+ 0.07751937984496124,
1618
+ 0.07751937984496124,
1619
+ 0.08653846153846154,
1620
+ 0.08653846153846154,
1621
+ 0.08974358974358974,
1622
+ 0.08974358974358974,
1623
+ 0.25,
1624
+ 0.25,
1625
+ 0.25925925925925924,
1626
+ 0.25925925925925924,
1627
+ 0.7142857142857143,
1628
+ 0.7142857142857143,
1629
+ 0.75,
1630
+ 0.75,
1631
+ 1.0,
1632
+ 1.0
1633
+ ],
1634
+ "x_min": -1.015932016742906,
1635
+ "x_max": 0.036600730381727065
1636
+ },
1637
+ {
1638
+ "coef": [
1639
+ [
1640
+ 1.1428144898866948
1641
+ ]
1642
+ ],
1643
+ "intercept": [
1644
+ -1.0419483616361538
1645
+ ],
1646
+ "x0": [
1647
+ -1.0092657427500786,
1648
+ -1.0002525647130096,
1649
+ -0.9997097441852174,
1650
+ -0.9817311551935936,
1651
+ -0.9815917323606824,
1652
+ -0.957670037039917,
1653
+ -0.9575746901967805,
1654
+ -0.9497635546133852,
1655
+ -0.9497325187816982,
1656
+ -0.8421270926091063,
1657
+ -0.8419156743098495,
1658
+ -0.7951817401481083,
1659
+ -0.79451976161029,
1660
+ -0.6689579824061431,
1661
+ -0.6678529875932409,
1662
+ -0.35892635491486236,
1663
+ -0.34212582904605116,
1664
+ -0.197786681986042,
1665
+ -0.19413880951560936,
1666
+ -0.013612206264402182,
1667
+ -0.013411056610691308,
1668
+ 0.05931724703599639
1669
+ ],
1670
+ "y0": [
1671
+ 0.0,
1672
+ 0.0,
1673
+ 0.009433962264150943,
1674
+ 0.009433962264150943,
1675
+ 0.020618556701030927,
1676
+ 0.020618556701030927,
1677
+ 0.037037037037037035,
1678
+ 0.037037037037037035,
1679
+ 0.055232558139534885,
1680
+ 0.055232558139534885,
1681
+ 0.0625,
1682
+ 0.0625,
1683
+ 0.08860759493670886,
1684
+ 0.08860759493670886,
1685
+ 0.21739130434782608,
1686
+ 0.21739130434782608,
1687
+ 0.2222222222222222,
1688
+ 0.2222222222222222,
1689
+ 0.5,
1690
+ 0.5,
1691
+ 1.0,
1692
+ 1.0
1693
+ ],
1694
+ "x_min": -1.0092657427500786,
1695
+ "x_max": 0.05931724703599639
1696
+ },
1697
+ {
1698
+ "coef": [
1699
+ [
1700
+ 1.1111134353880838
1701
+ ]
1702
+ ],
1703
+ "intercept": [
1704
+ -1.0372137963150176
1705
+ ],
1706
+ "x0": [
1707
+ -1.015071692379665,
1708
+ -0.985969527096887,
1709
+ -0.9851761089702015,
1710
+ -0.9715150931752542,
1711
+ -0.9715000015787647,
1712
+ -0.9331959816201145,
1713
+ -0.9331269063150633,
1714
+ -0.9075875871521756,
1715
+ -0.90694325131588,
1716
+ -0.9013534332515827,
1717
+ -0.901222377264734,
1718
+ -0.8898035024927219,
1719
+ -0.8892563969366069,
1720
+ -0.8366739137204923,
1721
+ -0.8363527102406281,
1722
+ -0.8277570898800186,
1723
+ -0.8276325655824899,
1724
+ -0.6374197391169654,
1725
+ -0.6356684185352072,
1726
+ -0.40470791729668354,
1727
+ -0.40450837377403803,
1728
+ -0.1501630339922556,
1729
+ -0.10141699520550995,
1730
+ -0.04238966350720397,
1731
+ -0.021844495522269636,
1732
+ 0.0047694976339696105
1733
+ ],
1734
+ "y0": [
1735
+ 0.0,
1736
+ 0.0,
1737
+ 0.01680672268907563,
1738
+ 0.01680672268907563,
1739
+ 0.023809523809523808,
1740
+ 0.023809523809523808,
1741
+ 0.02608695652173913,
1742
+ 0.02608695652173913,
1743
+ 0.047619047619047616,
1744
+ 0.047619047619047616,
1745
+ 0.05555555555555555,
1746
+ 0.05555555555555555,
1747
+ 0.0594059405940594,
1748
+ 0.0594059405940594,
1749
+ 0.0625,
1750
+ 0.0625,
1751
+ 0.145985401459854,
1752
+ 0.145985401459854,
1753
+ 0.1724137931034483,
1754
+ 0.1724137931034483,
1755
+ 0.4074074074074074,
1756
+ 0.4074074074074074,
1757
+ 0.75,
1758
+ 0.75,
1759
+ 1.0,
1760
+ 1.0
1761
+ ],
1762
+ "x_min": -1.015071692379665,
1763
+ "x_max": 0.0047694976339696105
1764
+ },
1765
+ {
1766
+ "coef": [
1767
+ [
1768
+ 1.0977870027160335
1769
+ ]
1770
+ ],
1771
+ "intercept": [
1772
+ -1.0347793859824181
1773
+ ],
1774
+ "x0": [
1775
+ -1.001468554214064,
1776
+ -0.9890598279260375,
1777
+ -0.9890170223416761,
1778
+ -0.9661649746555355,
1779
+ -0.9660864057354293,
1780
+ -0.9603061346141997,
1781
+ -0.9599834671253181,
1782
+ -0.9544055645467985,
1783
+ -0.9543873741159931,
1784
+ -0.9410034129474552,
1785
+ -0.9409719968302234,
1786
+ -0.8311353701786516,
1787
+ -0.8298770242260674,
1788
+ -0.8179849482955391,
1789
+ -0.8159495993997667,
1790
+ -0.7882371160414996,
1791
+ -0.7880795528854587,
1792
+ -0.593811739022106,
1793
+ -0.5923938996339528,
1794
+ -0.4640207904967114,
1795
+ -0.4553637812634549,
1796
+ -0.4441563165915924,
1797
+ -0.4439231780845435,
1798
+ -0.29505112197633976,
1799
+ -0.25642740642053996,
1800
+ -0.00010768177191855521,
1801
+ 0.033068065190871465,
1802
+ 0.045138397528311947
1803
+ ],
1804
+ "y0": [
1805
+ 0.0,
1806
+ 0.0,
1807
+ 0.018867924528301886,
1808
+ 0.018867924528301886,
1809
+ 0.021739130434782608,
1810
+ 0.021739130434782608,
1811
+ 0.02564102564102564,
1812
+ 0.02564102564102564,
1813
+ 0.04597701149425287,
1814
+ 0.04597701149425287,
1815
+ 0.05013927576601671,
1816
+ 0.05013927576601671,
1817
+ 0.07142857142857142,
1818
+ 0.07142857142857142,
1819
+ 0.07317073170731707,
1820
+ 0.07317073170731707,
1821
+ 0.08,
1822
+ 0.08,
1823
+ 0.2222222222222222,
1824
+ 0.2222222222222222,
1825
+ 0.3333333333333333,
1826
+ 0.3333333333333333,
1827
+ 0.391304347826087,
1828
+ 0.391304347826087,
1829
+ 0.6470588235294118,
1830
+ 0.6470588235294118,
1831
+ 1.0,
1832
+ 1.0
1833
+ ],
1834
+ "x_min": -1.001468554214064,
1835
+ "x_max": 0.045138397528311947
1836
+ },
1837
+ {
1838
+ "coef": [
1839
+ [
1840
+ 1.0828999833075958
1841
+ ]
1842
+ ],
1843
+ "intercept": [
1844
+ -1.0312184632057706
1845
+ ],
1846
+ "x0": [
1847
+ -1.0037634744862607,
1848
+ -0.9770304716508084,
1849
+ -0.9765001990995331,
1850
+ -0.8927772080313552,
1851
+ -0.8912371113280815,
1852
+ -0.8477316304977748,
1853
+ -0.8477130412875511,
1854
+ -0.7315903114097724,
1855
+ -0.7313786009600024,
1856
+ -0.6573844433021321,
1857
+ -0.6549904370271411,
1858
+ -0.47138458173701847,
1859
+ -0.46336798482804364,
1860
+ -0.29435475638233655,
1861
+ -0.2910290950366198,
1862
+ -0.23335987852382123,
1863
+ -0.22222423159526183,
1864
+ -0.09750347562206674,
1865
+ -0.0955048773395426,
1866
+ -0.07004191936040316,
1867
+ -0.053596793807565546
1868
+ ],
1869
+ "y0": [
1870
+ 0.0,
1871
+ 0.0,
1872
+ 0.02100840336134454,
1873
+ 0.02100840336134454,
1874
+ 0.06060606060606061,
1875
+ 0.06060606060606061,
1876
+ 0.10655737704918032,
1877
+ 0.10655737704918032,
1878
+ 0.1282051282051282,
1879
+ 0.1282051282051282,
1880
+ 0.14,
1881
+ 0.14,
1882
+ 0.28125,
1883
+ 0.28125,
1884
+ 0.5,
1885
+ 0.5,
1886
+ 0.7,
1887
+ 0.7,
1888
+ 0.8,
1889
+ 0.8,
1890
+ 1.0
1891
+ ],
1892
+ "x_min": -1.0037634744862607,
1893
+ "x_max": -0.053596793807565546
1894
+ }
1895
+ ]
1896
+ }
checkpoints/sybil_2_simple_calibrator.json ADDED
@@ -0,0 +1,1862 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.9179438783518523
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.1484705606019434
11
+ ],
12
+ "x0": [
13
+ -1.1338131503019813,
14
+ -1.1020121058338368,
15
+ -1.1019258804326266,
16
+ -1.0076375031427207,
17
+ -1.0068205452505645,
18
+ -0.8581582555575302,
19
+ -0.8559244312035128,
20
+ -0.8301620663569819,
21
+ -0.8282302890875608,
22
+ -0.8201406469091543,
23
+ -0.8183880297119206,
24
+ -0.6803464935423714,
25
+ -0.6745727189393124,
26
+ -0.593612719814011,
27
+ -0.5885349584277165,
28
+ -0.402986840716397,
29
+ -0.337156060256835,
30
+ -0.30053819267633797,
31
+ -0.2930977287714094
32
+ ],
33
+ "y0": [
34
+ 0.0,
35
+ 0.0,
36
+ 0.003067484662576687,
37
+ 0.003067484662576687,
38
+ 0.011363636363636364,
39
+ 0.011363636363636364,
40
+ 0.07692307692307693,
41
+ 0.07692307692307693,
42
+ 0.1,
43
+ 0.1,
44
+ 0.1111111111111111,
45
+ 0.1111111111111111,
46
+ 0.14285714285714285,
47
+ 0.14285714285714285,
48
+ 0.2777777777777778,
49
+ 0.2777777777777778,
50
+ 0.3333333333333333,
51
+ 0.3333333333333333,
52
+ 1.0
53
+ ],
54
+ "x_min": -1.1338131503019813,
55
+ "x_max": -0.2930977287714094
56
+ },
57
+ {
58
+ "coef": [
59
+ [
60
+ 0.8283039835987748
61
+ ]
62
+ ],
63
+ "intercept": [
64
+ -1.119853996297604
65
+ ],
66
+ "x0": [
67
+ -1.1051264287315414,
68
+ -1.0765909660330597,
69
+ -1.0765108125965555,
70
+ -0.9352505233644448,
71
+ -0.9348298721064376,
72
+ -0.812911879017107,
73
+ -0.8109281863765041,
74
+ -0.7755041443051647,
75
+ -0.7737837459527517,
76
+ -0.6946140219354056,
77
+ -0.6755987237956534,
78
+ -0.5908908342471373,
79
+ -0.5826345612649438,
80
+ -0.5439027520142856,
81
+ -0.5274301963693127,
82
+ -0.4240814365605933,
83
+ -0.40280870957531223,
84
+ -0.37525503390382264,
85
+ -0.3638214066172878,
86
+ -0.35149772318458905
87
+ ],
88
+ "y0": [
89
+ 0.0,
90
+ 0.0,
91
+ 0.004172461752433936,
92
+ 0.004172461752433936,
93
+ 0.029411764705882353,
94
+ 0.029411764705882353,
95
+ 0.038461538461538464,
96
+ 0.038461538461538464,
97
+ 0.043478260869565216,
98
+ 0.043478260869565216,
99
+ 0.1875,
100
+ 0.1875,
101
+ 0.25,
102
+ 0.25,
103
+ 0.5,
104
+ 0.5,
105
+ 0.6666666666666666,
106
+ 0.6666666666666666,
107
+ 1.0,
108
+ 1.0
109
+ ],
110
+ "x_min": -1.1051264287315414,
111
+ "x_max": -0.35149772318458905
112
+ },
113
+ {
114
+ "coef": [
115
+ [
116
+ 0.8516622298168396
117
+ ]
118
+ ],
119
+ "intercept": [
120
+ -1.1301772620823365
121
+ ],
122
+ "x0": [
123
+ -1.1145625017560237,
124
+ -1.0775762954705914,
125
+ -1.0774798203421931,
126
+ -1.0369073364435921,
127
+ -1.0365824086680135,
128
+ -0.9440868666253364,
129
+ -0.9436604572180509,
130
+ -0.916796816848136,
131
+ -0.9163279695522206,
132
+ -0.8379535651519658,
133
+ -0.8374847178560505,
134
+ -0.7452073108757878,
135
+ -0.7414445016716164,
136
+ -0.6960951251429415,
137
+ -0.6952443368493575,
138
+ -0.6547481846764253,
139
+ -0.6460789768481622,
140
+ -0.38029794252406135,
141
+ -0.3774450605372225,
142
+ -0.36058554325549774,
143
+ -0.3341845570924876,
144
+ -0.32308050078559947
145
+ ],
146
+ "y0": [
147
+ 0.0,
148
+ 0.0,
149
+ 0.0029154518950437317,
150
+ 0.0029154518950437317,
151
+ 0.0034602076124567475,
152
+ 0.0034602076124567475,
153
+ 0.02702702702702703,
154
+ 0.02702702702702703,
155
+ 0.05660377358490566,
156
+ 0.05660377358490566,
157
+ 0.08108108108108109,
158
+ 0.08108108108108109,
159
+ 0.125,
160
+ 0.125,
161
+ 0.14285714285714285,
162
+ 0.14285714285714285,
163
+ 0.23809523809523808,
164
+ 0.23809523809523808,
165
+ 0.6666666666666666,
166
+ 0.6666666666666666,
167
+ 1.0,
168
+ 1.0
169
+ ],
170
+ "x_min": -1.1145625017560237,
171
+ "x_max": -0.32308050078559947
172
+ },
173
+ {
174
+ "coef": [
175
+ [
176
+ 0.800758689496691
177
+ ]
178
+ ],
179
+ "intercept": [
180
+ -1.1137809474852869
181
+ ],
182
+ "x0": [
183
+ -1.099973643096556,
184
+ -1.0335671705443616,
185
+ -1.0334260897720025,
186
+ -0.9429173182894794,
187
+ -0.9426546659478574,
188
+ -0.8520003033084063,
189
+ -0.8505356215469073,
190
+ -0.8011970974936953,
191
+ -0.797887668443469,
192
+ -0.7222159442214167,
193
+ -0.7209396008462597,
194
+ -0.7083525493822551,
195
+ -0.7051674064845972,
196
+ -0.6210126034669716,
197
+ -0.6192099769653572,
198
+ -0.5436151679256642,
199
+ -0.5363102540813489,
200
+ -0.46744312511901176
201
+ ],
202
+ "y0": [
203
+ 0.0,
204
+ 0.0,
205
+ 0.007142857142857143,
206
+ 0.007142857142857143,
207
+ 0.0125,
208
+ 0.0125,
209
+ 0.03333333333333333,
210
+ 0.03333333333333333,
211
+ 0.04,
212
+ 0.04,
213
+ 0.25,
214
+ 0.25,
215
+ 0.2777777777777778,
216
+ 0.2777777777777778,
217
+ 0.4444444444444444,
218
+ 0.4444444444444444,
219
+ 0.5714285714285714,
220
+ 0.5714285714285714
221
+ ],
222
+ "x_min": -1.099973643096556,
223
+ "x_max": -0.46744312511901176
224
+ },
225
+ {
226
+ "coef": [
227
+ [
228
+ 0.9552585716980886
229
+ ]
230
+ ],
231
+ "intercept": [
232
+ -1.1579248393579067
233
+ ],
234
+ "x0": [
235
+ -1.1409399697492646,
236
+ -1.1166538140095423,
237
+ -1.116576624080956,
238
+ -1.0932826743948325,
239
+ -1.093046852063563,
240
+ -1.0696973523896458,
241
+ -1.0695408302459481,
242
+ -0.7995748502202671,
243
+ -0.7986997724368954,
244
+ -0.6759884330715578,
245
+ -0.66450082370597,
246
+ -0.6156274818250234,
247
+ -0.5851495628846676,
248
+ -0.3819946954940905,
249
+ -0.38085941174611415,
250
+ -0.3459825885577442
251
+ ],
252
+ "y0": [
253
+ 0.0,
254
+ 0.0,
255
+ 0.0035842293906810036,
256
+ 0.0035842293906810036,
257
+ 0.005681818181818182,
258
+ 0.005681818181818182,
259
+ 0.010869565217391304,
260
+ 0.010869565217391304,
261
+ 0.044444444444444446,
262
+ 0.044444444444444446,
263
+ 0.21428571428571427,
264
+ 0.21428571428571427,
265
+ 0.23809523809523808,
266
+ 0.23809523809523808,
267
+ 0.5,
268
+ 0.5
269
+ ],
270
+ "x_min": -1.1409399697492646,
271
+ "x_max": -0.3459825885577442
272
+ }
273
+ ],
274
+ "Year2": [
275
+ {
276
+ "coef": [
277
+ [
278
+ 0.9678812311980578
279
+ ]
280
+ ],
281
+ "intercept": [
282
+ -1.0883263857080032
283
+ ],
284
+ "x0": [
285
+ -1.072871593032906,
286
+ -1.0393405299700138,
287
+ -1.0392496137937073,
288
+ -1.0052217243850858,
289
+ -1.005073229766604,
290
+ -0.9866729062188095,
291
+ -0.9863169864252112,
292
+ -0.7858877885399547,
293
+ -0.7854815340320496,
294
+ -0.7421348933972713,
295
+ -0.7402869315221692,
296
+ -0.5032835494880407,
297
+ -0.4979295512118924,
298
+ -0.3121477263447513,
299
+ -0.30945970837523584,
300
+ -0.19426538307452612,
301
+ -0.18642014815894825
302
+ ],
303
+ "y0": [
304
+ 0.0,
305
+ 0.0,
306
+ 0.005390835579514825,
307
+ 0.005390835579514825,
308
+ 0.007751937984496124,
309
+ 0.007751937984496124,
310
+ 0.018691588785046728,
311
+ 0.018691588785046728,
312
+ 0.10344827586206896,
313
+ 0.10344827586206896,
314
+ 0.1724137931034483,
315
+ 0.1724137931034483,
316
+ 0.4666666666666667,
317
+ 0.4666666666666667,
318
+ 0.5,
319
+ 0.5,
320
+ 1.0
321
+ ],
322
+ "x_min": -1.072871593032906,
323
+ "x_max": -0.18642014815894825
324
+ },
325
+ {
326
+ "coef": [
327
+ [
328
+ 1.0216458295682878
329
+ ]
330
+ ],
331
+ "intercept": [
332
+ -1.0998558049104934
333
+ ],
334
+ "x0": [
335
+ -1.0816905439900035,
336
+ -1.0680378378585318,
337
+ -1.0679775748057054,
338
+ -1.0464943635562909,
339
+ -1.0463955007888148,
340
+ -1.0260490477105018,
341
+ -1.0259151932474537,
342
+ -0.9323260556479626,
343
+ -0.9317782456964905,
344
+ -0.7971964090471604,
345
+ -0.7968842925613588,
346
+ -0.5753567623182898,
347
+ -0.5519029332565603,
348
+ -0.389466626048661,
349
+ -0.3691490637644621,
350
+ -0.2416767449777183,
351
+ -0.2154385604000807,
352
+ -0.18145333469013136,
353
+ -0.15215061745266367
354
+ ],
355
+ "y0": [
356
+ 0.0,
357
+ 0.0,
358
+ 0.0029498525073746312,
359
+ 0.0029498525073746312,
360
+ 0.008849557522123894,
361
+ 0.008849557522123894,
362
+ 0.01488833746898263,
363
+ 0.01488833746898263,
364
+ 0.033112582781456956,
365
+ 0.033112582781456956,
366
+ 0.08045977011494253,
367
+ 0.08045977011494253,
368
+ 0.2631578947368421,
369
+ 0.2631578947368421,
370
+ 0.5,
371
+ 0.5,
372
+ 0.6666666666666666,
373
+ 0.6666666666666666,
374
+ 1.0
375
+ ],
376
+ "x_min": -1.0816905439900035,
377
+ "x_max": -0.15215061745266367
378
+ },
379
+ {
380
+ "coef": [
381
+ [
382
+ 0.9829836343343897
383
+ ]
384
+ ],
385
+ "intercept": [
386
+ -1.0927806714882702
387
+ ],
388
+ "x0": [
389
+ -1.074758205166005,
390
+ -1.0565688294692457,
391
+ -1.056432343154938,
392
+ -0.9851290611800512,
393
+ -0.9847540314152546,
394
+ -0.8781600875097362,
395
+ -0.8779962101879426,
396
+ -0.8464981921098976,
397
+ -0.8459570512646756,
398
+ -0.7753232597088591,
399
+ -0.764632300477889,
400
+ -0.5917655722744765,
401
+ -0.5907835973323022,
402
+ -0.22727428521807125,
403
+ -0.22398150528070904,
404
+ -0.20452234765870514,
405
+ -0.1740504816771542,
406
+ -0.161234243922022
407
+ ],
408
+ "y0": [
409
+ 0.0,
410
+ 0.0,
411
+ 0.005865102639296188,
412
+ 0.005865102639296188,
413
+ 0.013986013986013986,
414
+ 0.013986013986013986,
415
+ 0.027777777777777776,
416
+ 0.027777777777777776,
417
+ 0.0784313725490196,
418
+ 0.0784313725490196,
419
+ 0.17391304347826086,
420
+ 0.17391304347826086,
421
+ 0.2857142857142857,
422
+ 0.2857142857142857,
423
+ 0.6666666666666666,
424
+ 0.6666666666666666,
425
+ 1.0,
426
+ 1.0
427
+ ],
428
+ "x_min": -1.074758205166005,
429
+ "x_max": -0.161234243922022
430
+ },
431
+ {
432
+ "coef": [
433
+ [
434
+ 0.8897927896993487
435
+ ]
436
+ ],
437
+ "intercept": [
438
+ -1.074152592015705
439
+ ],
440
+ "x0": [
441
+ -1.0588100923945032,
442
+ -1.030436372693521,
443
+ -1.0301921628005168,
444
+ -0.9862654510844687,
445
+ -0.9859555630035014,
446
+ -0.8842911177982331,
447
+ -0.8839992618835381,
448
+ -0.8134435585691255,
449
+ -0.8114591451887538,
450
+ -0.7560913786497506,
451
+ -0.7559915918237469,
452
+ -0.7268134253638888,
453
+ -0.7231360302315752,
454
+ -0.6390505804199462,
455
+ -0.6376323240247408,
456
+ -0.6236457538093296,
457
+ -0.6201064638563485,
458
+ -0.5293238940090902,
459
+ -0.5265947256437822,
460
+ -0.44059168753855527,
461
+ -0.4324745609268764,
462
+ -0.35595029013001733
463
+ ],
464
+ "y0": [
465
+ 0.0,
466
+ 0.0,
467
+ 0.006147540983606557,
468
+ 0.006147540983606557,
469
+ 0.010416666666666666,
470
+ 0.010416666666666666,
471
+ 0.047619047619047616,
472
+ 0.047619047619047616,
473
+ 0.058823529411764705,
474
+ 0.058823529411764705,
475
+ 0.07692307692307693,
476
+ 0.07692307692307693,
477
+ 0.11538461538461539,
478
+ 0.11538461538461539,
479
+ 0.25,
480
+ 0.25,
481
+ 0.35294117647058826,
482
+ 0.35294117647058826,
483
+ 0.5,
484
+ 0.5,
485
+ 0.875,
486
+ 0.875
487
+ ],
488
+ "x_min": -1.0588100923945032,
489
+ "x_max": -0.35595029013001733
490
+ },
491
+ {
492
+ "coef": [
493
+ [
494
+ 1.0317545283212608
495
+ ]
496
+ ],
497
+ "intercept": [
498
+ -1.1019504682682775
499
+ ],
500
+ "x0": [
501
+ -1.0836054707452392,
502
+ -1.0573745088859476,
503
+ -1.0572911376807899,
504
+ -1.044566749225775,
505
+ -1.044460808488706,
506
+ -1.012407864449011,
507
+ -1.0122480251175974,
508
+ -0.751896659340646,
509
+ -0.7514447767235238,
510
+ -0.5814211746499951,
511
+ -0.5690136513534891,
512
+ -0.5340146415874454,
513
+ -0.5332044753384023,
514
+ -0.28201124292352897,
515
+ -0.26388477243332675,
516
+ -0.22498885931954438
517
+ ],
518
+ "y0": [
519
+ 0.0,
520
+ 0.0,
521
+ 0.00641025641025641,
522
+ 0.00641025641025641,
523
+ 0.0149812734082397,
524
+ 0.0149812734082397,
525
+ 0.020964360587002098,
526
+ 0.020964360587002098,
527
+ 0.06779661016949153,
528
+ 0.06779661016949153,
529
+ 0.25,
530
+ 0.25,
531
+ 0.3333333333333333,
532
+ 0.3333333333333333,
533
+ 0.7142857142857143,
534
+ 0.7142857142857143
535
+ ],
536
+ "x_min": -1.0836054707452392,
537
+ "x_max": -0.22498885931954438
538
+ }
539
+ ],
540
+ "Year3": [
541
+ {
542
+ "coef": [
543
+ [
544
+ 1.0215027626485118
545
+ ]
546
+ ],
547
+ "intercept": [
548
+ -1.0629653831795027
549
+ ],
550
+ "x0": [
551
+ -1.046654380439807,
552
+ -1.0112656649143617,
553
+ -1.0111697118962917,
554
+ -0.9937145050916836,
555
+ -0.9935883106048607,
556
+ -0.9801397730487834,
557
+ -0.9798419933315512,
558
+ -0.9556802052217576,
559
+ -0.9553045671365019,
560
+ -0.8920120765527657,
561
+ -0.8917339022271296,
562
+ -0.774094611611102,
563
+ -0.7706426927482242,
564
+ -0.7437714029880601,
565
+ -0.7433426415979361,
566
+ -0.6975945562619393,
567
+ -0.6956442155591351,
568
+ -0.44551062302606315,
569
+ -0.4398600082047269,
570
+ -0.24378569532983196,
571
+ -0.2409487586340866,
572
+ -0.11937255925841439,
573
+ -0.1110926909423714
574
+ ],
575
+ "y0": [
576
+ 0.0,
577
+ 0.0,
578
+ 0.0091324200913242,
579
+ 0.0091324200913242,
580
+ 0.009174311926605505,
581
+ 0.009174311926605505,
582
+ 0.023255813953488372,
583
+ 0.023255813953488372,
584
+ 0.0446927374301676,
585
+ 0.0446927374301676,
586
+ 0.048,
587
+ 0.048,
588
+ 0.07692307692307693,
589
+ 0.07692307692307693,
590
+ 0.10344827586206896,
591
+ 0.10344827586206896,
592
+ 0.16071428571428573,
593
+ 0.16071428571428573,
594
+ 0.4666666666666667,
595
+ 0.4666666666666667,
596
+ 0.6,
597
+ 0.6,
598
+ 1.0
599
+ ],
600
+ "x_min": -1.046654380439807,
601
+ "x_max": -0.1110926909423714
602
+ },
603
+ {
604
+ "coef": [
605
+ [
606
+ 1.029428272683227
607
+ ]
608
+ ],
609
+ "intercept": [
610
+ -1.0631259405877589
611
+ ],
612
+ "x0": [
613
+ -1.0448223047963594,
614
+ -1.0310655984274688,
615
+ -1.031004876317534,
616
+ -1.0172159336182078,
617
+ -1.0171301924956915,
618
+ -1.0106373023754118,
619
+ -1.0105399261081724,
620
+ -0.993591462543783,
621
+ -0.9934647261354763,
622
+ -0.9126141533027898,
623
+ -0.9124886133892601,
624
+ -0.8943200242759811,
625
+ -0.8937680413521719,
626
+ -0.842116512302971,
627
+ -0.8414377776311784,
628
+ -0.7581610201841813,
629
+ -0.7578465261339384,
630
+ -0.5814470250403038,
631
+ -0.5809463993538477,
632
+ -0.5346314977847614,
633
+ -0.510999007894379,
634
+ -0.3473253332113142,
635
+ -0.3268530007825753,
636
+ -0.19840965461924398,
637
+ -0.17197159923216843,
638
+ -0.1082015569098066
639
+ ],
640
+ "y0": [
641
+ 0.0,
642
+ 0.0,
643
+ 0.00904977375565611,
644
+ 0.00904977375565611,
645
+ 0.010638297872340425,
646
+ 0.010638297872340425,
647
+ 0.015384615384615385,
648
+ 0.015384615384615385,
649
+ 0.019417475728155338,
650
+ 0.019417475728155338,
651
+ 0.025,
652
+ 0.025,
653
+ 0.03896103896103896,
654
+ 0.03896103896103896,
655
+ 0.06944444444444445,
656
+ 0.06944444444444445,
657
+ 0.08974358974358974,
658
+ 0.08974358974358974,
659
+ 0.1111111111111111,
660
+ 0.1111111111111111,
661
+ 0.3,
662
+ 0.3,
663
+ 0.5,
664
+ 0.5,
665
+ 1.0,
666
+ 1.0
667
+ ],
668
+ "x_min": -1.0448223047963594,
669
+ "x_max": -0.1082015569098066
670
+ },
671
+ {
672
+ "coef": [
673
+ [
674
+ 1.0324470173344287
675
+ ]
676
+ ],
677
+ "intercept": [
678
+ -1.0650478145185724
679
+ ],
680
+ "x0": [
681
+ -1.0461184641718269,
682
+ -1.041143144158736,
683
+ -1.0410974959511266,
684
+ -1.027013805630883,
685
+ -1.0268704513743199,
686
+ -1.0219991451205488,
687
+ -1.0219184987358199,
688
+ -0.8472750064406982,
689
+ -0.8462664343224845,
690
+ -0.8063724893407472,
691
+ -0.8058041184827872,
692
+ -0.7316160599357038,
693
+ -0.7203871354806868,
694
+ -0.5388218156767345,
695
+ -0.537790428108587,
696
+ -0.3061254571818709,
697
+ -0.2884466988769878,
698
+ -0.1559894581262553,
699
+ -0.15253098668652454,
700
+ -0.13209265125046976,
701
+ -0.1000874519303715,
702
+ -0.08662630570010388
703
+ ],
704
+ "y0": [
705
+ 0.0,
706
+ 0.0,
707
+ 0.005025125628140704,
708
+ 0.005025125628140704,
709
+ 0.012345679012345678,
710
+ 0.012345679012345678,
711
+ 0.017162471395881007,
712
+ 0.017162471395881007,
713
+ 0.06818181818181818,
714
+ 0.06818181818181818,
715
+ 0.1,
716
+ 0.1,
717
+ 0.17391304347826086,
718
+ 0.17391304347826086,
719
+ 0.2777777777777778,
720
+ 0.2777777777777778,
721
+ 0.3333333333333333,
722
+ 0.3333333333333333,
723
+ 0.6666666666666666,
724
+ 0.6666666666666666,
725
+ 1.0,
726
+ 1.0
727
+ ],
728
+ "x_min": -1.0461184641718269,
729
+ "x_max": -0.08662630570010388
730
+ },
731
+ {
732
+ "coef": [
733
+ [
734
+ 0.9271174815446945
735
+ ]
736
+ ],
737
+ "intercept": [
738
+ -1.0479122882153202
739
+ ],
740
+ "x0": [
741
+ -1.0319262072152537,
742
+ -1.0071779613282328,
743
+ -1.0071018296169074,
744
+ -0.956338490693469,
745
+ -0.9560156035443338,
746
+ -0.858168757473151,
747
+ -0.8580213500676542,
748
+ -0.8476442002837239,
749
+ -0.8467227174951535,
750
+ -0.7462158861413584,
751
+ -0.7448229621426117,
752
+ -0.5945587817860407,
753
+ -0.59308103290728,
754
+ -0.5785077593275498,
755
+ -0.5748200045764991,
756
+ -0.5203133602761896,
757
+ -0.5116780769697351,
758
+ -0.38777501022894223,
759
+ -0.3793173894561981,
760
+ -0.29958310745308103
761
+ ],
762
+ "y0": [
763
+ 0.0,
764
+ 0.0,
765
+ 0.01060070671378092,
766
+ 0.01060070671378092,
767
+ 0.01818181818181818,
768
+ 0.01818181818181818,
769
+ 0.05263157894736842,
770
+ 0.05263157894736842,
771
+ 0.06944444444444445,
772
+ 0.06944444444444445,
773
+ 0.14035087719298245,
774
+ 0.14035087719298245,
775
+ 0.25,
776
+ 0.25,
777
+ 0.42857142857142855,
778
+ 0.42857142857142855,
779
+ 0.5384615384615384,
780
+ 0.5384615384615384,
781
+ 0.8571428571428571,
782
+ 0.8571428571428571
783
+ ],
784
+ "x_min": -1.0319262072152537,
785
+ "x_max": -0.29958310745308103
786
+ },
787
+ {
788
+ "coef": [
789
+ [
790
+ 1.0160948252701882
791
+ ]
792
+ ],
793
+ "intercept": [
794
+ -1.0600536179576314
795
+ ],
796
+ "x0": [
797
+ -1.041987056056437,
798
+ -1.0161542209435614,
799
+ -1.016072115124966,
800
+ -1.0058910087601172,
801
+ -1.0055897749235192,
802
+ -0.9718700685914733,
803
+ -0.9717126552600404,
804
+ -0.8976083592662885,
805
+ -0.8974750276838714,
806
+ -0.7153128350931109,
807
+ -0.7148678110333333,
808
+ -0.5635084844353473,
809
+ -0.5605870298785263,
810
+ -0.5474247831633192,
811
+ -0.5352055780423959,
812
+ -0.5007377741833516,
813
+ -0.49993990442783864,
814
+ -0.252559217846378,
815
+ -0.24806276693863893,
816
+ -0.19640230521440427
817
+ ],
818
+ "y0": [
819
+ 0.0,
820
+ 0.0,
821
+ 0.007751937984496124,
822
+ 0.007751937984496124,
823
+ 0.017064846416382253,
824
+ 0.017064846416382253,
825
+ 0.02348993288590604,
826
+ 0.02348993288590604,
827
+ 0.04597701149425287,
828
+ 0.04597701149425287,
829
+ 0.11320754716981132,
830
+ 0.11320754716981132,
831
+ 0.2,
832
+ 0.2,
833
+ 0.25,
834
+ 0.25,
835
+ 0.375,
836
+ 0.375,
837
+ 0.75,
838
+ 0.75
839
+ ],
840
+ "x_min": -1.041987056056437,
841
+ "x_max": -0.19640230521440427
842
+ }
843
+ ],
844
+ "Year4": [
845
+ {
846
+ "coef": [
847
+ [
848
+ 1.061178651476165
849
+ ]
850
+ ],
851
+ "intercept": [
852
+ -1.047812039492656
853
+ ],
854
+ "x0": [
855
+ -1.0308675058854666,
856
+ -1.0141953595169537,
857
+ -1.0141317209269327,
858
+ -0.9941042676526127,
859
+ -0.9940045877515457,
860
+ -0.9904036587377453,
861
+ -0.9902975114038746,
862
+ -0.9770413416790895,
863
+ -0.9769122302149273,
864
+ -0.9363598294434164,
865
+ -0.9359696013096019,
866
+ -0.88794277737788,
867
+ -0.8872786400239531,
868
+ -0.7477213231160885,
869
+ -0.7441353292863544,
870
+ -0.7162203396516881,
871
+ -0.7157749248663211,
872
+ -0.6682499515822558,
873
+ -0.6662238582689546,
874
+ -0.4063749003229957,
875
+ -0.400504811630754,
876
+ -0.196814833949028,
877
+ -0.19386770862818337,
878
+ -0.06756940379485055,
879
+ -0.05896793954502555
880
+ ],
881
+ "y0": [
882
+ 0.0,
883
+ 0.0,
884
+ 0.0033003300330033004,
885
+ 0.0033003300330033004,
886
+ 0.017857142857142856,
887
+ 0.017857142857142856,
888
+ 0.020833333333333332,
889
+ 0.020833333333333332,
890
+ 0.02364864864864865,
891
+ 0.02364864864864865,
892
+ 0.04929577464788732,
893
+ 0.04929577464788732,
894
+ 0.06493506493506493,
895
+ 0.06493506493506493,
896
+ 0.07692307692307693,
897
+ 0.07692307692307693,
898
+ 0.10344827586206896,
899
+ 0.10344827586206896,
900
+ 0.18181818181818182,
901
+ 0.18181818181818182,
902
+ 0.4666666666666667,
903
+ 0.4666666666666667,
904
+ 0.6,
905
+ 0.6,
906
+ 1.0
907
+ ],
908
+ "x_min": -1.0308675058854666,
909
+ "x_max": -0.05896793954502555
910
+ },
911
+ {
912
+ "coef": [
913
+ [
914
+ 1.0525741500516044
915
+ ]
916
+ ],
917
+ "intercept": [
918
+ -1.0454983423729916
919
+ ],
920
+ "x0": [
921
+ -1.0267831638634979,
922
+ -1.0127171488744182,
923
+ -1.0126550614760534,
924
+ -0.9985560853482436,
925
+ -0.9984684164046639,
926
+ -0.9918295388052385,
927
+ -0.9917299731099448,
928
+ -0.9694572305909621,
929
+ -0.9693193239470004,
930
+ -0.8933901608338679,
931
+ -0.8923707103775034,
932
+ -0.8195196925697376,
933
+ -0.8188256970877498,
934
+ -0.73367652786943,
935
+ -0.7333549626701688,
936
+ -0.5529892588516818,
937
+ -0.5524773769941512,
938
+ -0.5063248815578874,
939
+ -0.4809572739743726,
940
+ -0.3333056767971503,
941
+ -0.29267089010044967,
942
+ -0.1613395972797651,
943
+ -0.13430710320853267,
944
+ -0.06910324211653252
945
+ ],
946
+ "y0": [
947
+ 0.0,
948
+ 0.0,
949
+ 0.009174311926605505,
950
+ 0.009174311926605505,
951
+ 0.010752688172043012,
952
+ 0.010752688172043012,
953
+ 0.025,
954
+ 0.025,
955
+ 0.027932960893854747,
956
+ 0.027932960893854747,
957
+ 0.04132231404958678,
958
+ 0.04132231404958678,
959
+ 0.08695652173913043,
960
+ 0.08695652173913043,
961
+ 0.10126582278481013,
962
+ 0.10126582278481013,
963
+ 0.125,
964
+ 0.125,
965
+ 0.3333333333333333,
966
+ 0.3333333333333333,
967
+ 0.5555555555555556,
968
+ 0.5555555555555556,
969
+ 1.0,
970
+ 1.0
971
+ ],
972
+ "x_min": -1.0267831638634979,
973
+ "x_max": -0.06910324211653252
974
+ },
975
+ {
976
+ "coef": [
977
+ [
978
+ 1.0561713682626446
979
+ ]
980
+ ],
981
+ "intercept": [
982
+ -1.0472021771419031
983
+ ],
984
+ "x0": [
985
+ -1.027837853820342,
986
+ -1.0227482071289917,
987
+ -1.0227015099822325,
988
+ -1.008513178908259,
989
+ -1.0084403150702985,
990
+ -0.9470293472823899,
991
+ -0.9468521117704956,
992
+ -0.9315354004189136,
993
+ -0.9311324479322299,
994
+ -0.8322193806753526,
995
+ -0.8308785979230713,
996
+ -0.8244252202460087,
997
+ -0.8233934723924138,
998
+ -0.7825828140735589,
999
+ -0.7820013827587762,
1000
+ -0.7061085747125873,
1001
+ -0.6946216235115535,
1002
+ -0.6474845159357782,
1003
+ -0.6443256429140345,
1004
+ -0.5088841580273863,
1005
+ -0.507829070453138,
1006
+ -0.15522610565474348,
1007
+ -0.1534733130932996,
1008
+ -0.1172547880930147,
1009
+ -0.1137168452724443,
1010
+ -0.09280886225725715,
1011
+ -0.060068223183399994,
1012
+ -0.046297756521477273
1013
+ ],
1014
+ "y0": [
1015
+ 0.0,
1016
+ 0.0,
1017
+ 0.005208333333333333,
1018
+ 0.005208333333333333,
1019
+ 0.018363939899833055,
1020
+ 0.018363939899833055,
1021
+ 0.02564102564102564,
1022
+ 0.02564102564102564,
1023
+ 0.03041825095057034,
1024
+ 0.03041825095057034,
1025
+ 0.09090909090909091,
1026
+ 0.09090909090909091,
1027
+ 0.09302325581395349,
1028
+ 0.09302325581395349,
1029
+ 0.12,
1030
+ 0.12,
1031
+ 0.125,
1032
+ 0.125,
1033
+ 0.26666666666666666,
1034
+ 0.26666666666666666,
1035
+ 0.2727272727272727,
1036
+ 0.2727272727272727,
1037
+ 0.3333333333333333,
1038
+ 0.3333333333333333,
1039
+ 0.6666666666666666,
1040
+ 0.6666666666666666,
1041
+ 1.0,
1042
+ 1.0
1043
+ ],
1044
+ "x_min": -1.027837853820342,
1045
+ "x_max": -0.046297756521477273
1046
+ },
1047
+ {
1048
+ "coef": [
1049
+ [
1050
+ 0.9845817249122353
1051
+ ]
1052
+ ],
1053
+ "intercept": [
1054
+ -1.037059568862467
1055
+ ],
1056
+ "x0": [
1057
+ -1.0200826446657536,
1058
+ -1.0030387014636313,
1059
+ -1.00297449570128,
1060
+ -0.9965411883492661,
1061
+ -0.9964652381224162,
1062
+ -0.9886862946292371,
1063
+ -0.9884160692458913,
1064
+ -0.9398098790274668,
1065
+ -0.939466978809775,
1066
+ -0.9048095188880211,
1067
+ -0.904249496459067,
1068
+ -0.8355554267144836,
1069
+ -0.8346147545273568,
1070
+ -0.7485774044500455,
1071
+ -0.7463815930526015,
1072
+ -0.716663535062217,
1073
+ -0.7151842753775948,
1074
+ -0.5556064777057216,
1075
+ -0.5540371355576119,
1076
+ -0.5385605868737902,
1077
+ -0.5323093333929161,
1078
+ -0.4767592046986262,
1079
+ -0.46758869254432067,
1080
+ -0.33600591301317595,
1081
+ -0.3270240752042203,
1082
+ -0.24234773323894032
1083
+ ],
1084
+ "y0": [
1085
+ 0.0,
1086
+ 0.0,
1087
+ 0.009345794392523364,
1088
+ 0.009345794392523364,
1089
+ 0.014925373134328358,
1090
+ 0.014925373134328358,
1091
+ 0.016632016632016633,
1092
+ 0.016632016632016633,
1093
+ 0.027210884353741496,
1094
+ 0.027210884353741496,
1095
+ 0.031746031746031744,
1096
+ 0.031746031746031744,
1097
+ 0.0547945205479452,
1098
+ 0.0547945205479452,
1099
+ 0.06666666666666667,
1100
+ 0.06666666666666667,
1101
+ 0.18181818181818182,
1102
+ 0.18181818181818182,
1103
+ 0.25,
1104
+ 0.25,
1105
+ 0.38461538461538464,
1106
+ 0.38461538461538464,
1107
+ 0.5384615384615384,
1108
+ 0.5384615384615384,
1109
+ 0.8571428571428571,
1110
+ 0.8571428571428571
1111
+ ],
1112
+ "x_min": -1.0200826446657536,
1113
+ "x_max": -0.24234773323894032
1114
+ },
1115
+ {
1116
+ "coef": [
1117
+ [
1118
+ 1.0392362530432138
1119
+ ]
1120
+ ],
1121
+ "intercept": [
1122
+ -1.0428962104470072
1123
+ ],
1124
+ "x0": [
1125
+ -1.0244181849432576,
1126
+ -1.0022395771939843,
1127
+ -1.0021632088385033,
1128
+ -0.987500054854441,
1129
+ -0.9871919604563097,
1130
+ -0.9527042921888184,
1131
+ -0.9525432937891917,
1132
+ -0.8767512820717087,
1133
+ -0.8766149138798064,
1134
+ -0.690304000994467,
1135
+ -0.6898488415694848,
1136
+ -0.5350423259521967,
1137
+ -0.5320543356470011,
1138
+ -0.5185923204710997,
1139
+ -0.5125916244809362,
1140
+ -0.2170112301727969,
1141
+ -0.2124123731791998,
1142
+ -0.15957535114387944
1143
+ ],
1144
+ "y0": [
1145
+ 0.0,
1146
+ 0.0,
1147
+ 0.009569377990430622,
1148
+ 0.009569377990430622,
1149
+ 0.02112676056338028,
1150
+ 0.02112676056338028,
1151
+ 0.030716723549488054,
1152
+ 0.030716723549488054,
1153
+ 0.06321839080459771,
1154
+ 0.06321839080459771,
1155
+ 0.11320754716981132,
1156
+ 0.11320754716981132,
1157
+ 0.2,
1158
+ 0.2,
1159
+ 0.40625,
1160
+ 0.40625,
1161
+ 0.75,
1162
+ 0.75
1163
+ ],
1164
+ "x_min": -1.0244181849432576,
1165
+ "x_max": -0.15957535114387944
1166
+ }
1167
+ ],
1168
+ "Year5": [
1169
+ {
1170
+ "coef": [
1171
+ [
1172
+ 1.1047427848571847
1173
+ ]
1174
+ ],
1175
+ "intercept": [
1176
+ -1.0354492325829483
1177
+ ],
1178
+ "x0": [
1179
+ -1.01780908196432,
1180
+ -1.0004525007863285,
1181
+ -1.0003862496672862,
1182
+ -0.982369262370768,
1183
+ -0.9822704824379035,
1184
+ -0.9617732142423158,
1185
+ -0.9616388024179946,
1186
+ -0.9194216205149813,
1187
+ -0.9190153725051102,
1188
+ -0.8955036248917592,
1189
+ -0.8947859332438806,
1190
+ -0.8844047969080021,
1191
+ -0.8838947398394453,
1192
+ -0.6902448342394083,
1193
+ -0.6897811340229383,
1194
+ -0.6403051374383227,
1195
+ -0.638195867744475,
1196
+ -0.47206328089426086,
1197
+ -0.46511455997074025,
1198
+ -0.4064375842683211,
1199
+ -0.383899133005388,
1200
+ -0.367679436751325,
1201
+ -0.3615683657076276,
1202
+ -0.14951638663833133,
1203
+ -0.14644827418644213,
1204
+ -0.05274863088468196,
1205
+ -0.006010520028638888
1206
+ ],
1207
+ "y0": [
1208
+ 0.0,
1209
+ 0.0,
1210
+ 0.004,
1211
+ 0.004,
1212
+ 0.02127659574468085,
1213
+ 0.02127659574468085,
1214
+ 0.03806228373702422,
1215
+ 0.03806228373702422,
1216
+ 0.05813953488372093,
1217
+ 0.05813953488372093,
1218
+ 0.07407407407407407,
1219
+ 0.07407407407407407,
1220
+ 0.07692307692307693,
1221
+ 0.07692307692307693,
1222
+ 0.10714285714285714,
1223
+ 0.10714285714285714,
1224
+ 0.1951219512195122,
1225
+ 0.1951219512195122,
1226
+ 0.2,
1227
+ 0.2,
1228
+ 0.3333333333333333,
1229
+ 0.3333333333333333,
1230
+ 0.4666666666666667,
1231
+ 0.4666666666666667,
1232
+ 0.6666666666666666,
1233
+ 0.6666666666666666,
1234
+ 1.0
1235
+ ],
1236
+ "x_min": -1.01780908196432,
1237
+ "x_max": -0.006010520028638888
1238
+ },
1239
+ {
1240
+ "coef": [
1241
+ [
1242
+ 1.0969230093296765
1243
+ ]
1244
+ ],
1245
+ "intercept": [
1246
+ -1.0328631024964896
1247
+ ],
1248
+ "x0": [
1249
+ -1.0133593839890862,
1250
+ -0.9987007155329578,
1251
+ -0.9986360121618438,
1252
+ -0.9883096254661292,
1253
+ -0.9879744870122613,
1254
+ -0.9839429937917592,
1255
+ -0.9838516310298944,
1256
+ -0.9769330328536272,
1257
+ -0.976829272085702,
1258
+ -0.9536180961806603,
1259
+ -0.9534743790174621,
1260
+ -0.9168487730456454,
1261
+ -0.916645991683503,
1262
+ -0.8743460381838424,
1263
+ -0.87328363449247,
1264
+ -0.8529893816876305,
1265
+ -0.8524012078576023,
1266
+ -0.7973631326613102,
1267
+ -0.7966398965714575,
1268
+ -0.7883927135183314,
1269
+ -0.7878356450350836,
1270
+ -0.5196027816042184,
1271
+ -0.5190693322623776,
1272
+ -0.4709722607358361,
1273
+ -0.44453582160360094,
1274
+ -0.290663114108332,
1275
+ -0.2483162328889622,
1276
+ -0.11145146480306589,
1277
+ -0.08327999133029529,
1278
+ -0.01532884933669365
1279
+ ],
1280
+ "y0": [
1281
+ 0.0,
1282
+ 0.0,
1283
+ 0.014084507042253521,
1284
+ 0.014084507042253521,
1285
+ 0.016129032258064516,
1286
+ 0.016129032258064516,
1287
+ 0.021505376344086023,
1288
+ 0.021505376344086023,
1289
+ 0.025210084033613446,
1290
+ 0.025210084033613446,
1291
+ 0.035,
1292
+ 0.035,
1293
+ 0.03597122302158273,
1294
+ 0.03597122302158273,
1295
+ 0.04878048780487805,
1296
+ 0.04878048780487805,
1297
+ 0.06944444444444445,
1298
+ 0.06944444444444445,
1299
+ 0.1,
1300
+ 0.1,
1301
+ 0.1037037037037037,
1302
+ 0.1037037037037037,
1303
+ 0.125,
1304
+ 0.125,
1305
+ 0.3333333333333333,
1306
+ 0.3333333333333333,
1307
+ 0.5555555555555556,
1308
+ 0.5555555555555556,
1309
+ 1.0,
1310
+ 1.0
1311
+ ],
1312
+ "x_min": -1.0133593839890862,
1313
+ "x_max": -0.01532884933669365
1314
+ },
1315
+ {
1316
+ "coef": [
1317
+ [
1318
+ 1.101020212709057
1319
+ ]
1320
+ ],
1321
+ "intercept": [
1322
+ -1.0345430325665879
1323
+ ],
1324
+ "x0": [
1325
+ -1.01435643025645,
1326
+ -1.010005491322181,
1327
+ -1.009911603191475,
1328
+ -0.9886351512500002,
1329
+ -0.9885491484835844,
1330
+ -0.9502647430253861,
1331
+ -0.9501126139426714,
1332
+ -0.9301165031663302,
1333
+ -0.9299317415955572,
1334
+ -0.9139646274537845,
1335
+ -0.9135445641516238,
1336
+ -0.8104312914163321,
1337
+ -0.809033574194039,
1338
+ -0.7586869772261524,
1339
+ -0.7580808562413252,
1340
+ -0.617851918236652,
1341
+ -0.6145589080767171,
1342
+ -0.10469044095954028,
1343
+ -0.10286321850603797,
1344
+ -0.06510672434409304,
1345
+ -0.061418547714892524,
1346
+ -0.039622736354690824,
1347
+ -0.005491811695536253,
1348
+ 0.008863398631887565
1349
+ ],
1350
+ "y0": [
1351
+ 0.0,
1352
+ 0.0,
1353
+ 0.014598540145985401,
1354
+ 0.014598540145985401,
1355
+ 0.02610966057441253,
1356
+ 0.02610966057441253,
1357
+ 0.02654867256637168,
1358
+ 0.02654867256637168,
1359
+ 0.02666666666666667,
1360
+ 0.02666666666666667,
1361
+ 0.03543307086614173,
1362
+ 0.03543307086614173,
1363
+ 0.09615384615384616,
1364
+ 0.09615384615384616,
1365
+ 0.13636363636363635,
1366
+ 0.13636363636363635,
1367
+ 0.3,
1368
+ 0.3,
1369
+ 0.3333333333333333,
1370
+ 0.3333333333333333,
1371
+ 0.6666666666666666,
1372
+ 0.6666666666666666,
1373
+ 1.0,
1374
+ 1.0
1375
+ ],
1376
+ "x_min": -1.01435643025645,
1377
+ "x_max": 0.008863398631887565
1378
+ },
1379
+ {
1380
+ "coef": [
1381
+ [
1382
+ 1.032610167644547
1383
+ ]
1384
+ ],
1385
+ "intercept": [
1386
+ -1.0263750936161746
1387
+ ],
1388
+ "x0": [
1389
+ -1.0085700256392938,
1390
+ -0.9906946694327416,
1391
+ -0.9906273316776851,
1392
+ -0.9761111696786807,
1393
+ -0.976017693103538,
1394
+ -0.9243815099623127,
1395
+ -0.9240218828817799,
1396
+ -0.8150414676309395,
1397
+ -0.8140549089326923,
1398
+ -0.6958603268717168,
1399
+ -0.688798544756628,
1400
+ -0.5214364535894485,
1401
+ -0.5197905580607703,
1402
+ -0.5035590547466248,
1403
+ -0.4970028616531065,
1404
+ -0.43874296686499226,
1405
+ -0.4291251120405103,
1406
+ -0.2911236515290405,
1407
+ -0.2817036746891406,
1408
+ -0.19289677378907688
1409
+ ],
1410
+ "y0": [
1411
+ 0.0,
1412
+ 0.0,
1413
+ 0.017777777777777778,
1414
+ 0.017777777777777778,
1415
+ 0.023605150214592276,
1416
+ 0.023605150214592276,
1417
+ 0.03435114503816794,
1418
+ 0.03435114503816794,
1419
+ 0.09411764705882353,
1420
+ 0.09411764705882353,
1421
+ 0.19642857142857142,
1422
+ 0.19642857142857142,
1423
+ 0.25,
1424
+ 0.25,
1425
+ 0.38461538461538464,
1426
+ 0.38461538461538464,
1427
+ 0.5384615384615384,
1428
+ 0.5384615384615384,
1429
+ 0.8571428571428571,
1430
+ 0.8571428571428571
1431
+ ],
1432
+ "x_min": -1.0085700256392938,
1433
+ "x_max": -0.19289677378907688
1434
+ },
1435
+ {
1436
+ "coef": [
1437
+ [
1438
+ 1.0746232165482668
1439
+ ]
1440
+ ],
1441
+ "intercept": [
1442
+ -1.0300974249918342
1443
+ ],
1444
+ "x0": [
1445
+ -1.010990205488903,
1446
+ -1.0061481721135692,
1447
+ -1.0059645555135257,
1448
+ -0.9886830614478087,
1449
+ -0.988527245649636,
1450
+ -0.9728149786443662,
1451
+ -0.9724963933446801,
1452
+ -0.9650511388398704,
1453
+ -0.9648120227198134,
1454
+ -0.9368343878128926,
1455
+ -0.9366679072676275,
1456
+ -0.8582951068750311,
1457
+ -0.8581540952190311,
1458
+ -0.8426721010806922,
1459
+ -0.8416119675724218,
1460
+ -0.6654991220148179,
1461
+ -0.6650284639869783,
1462
+ -0.5049506421556781,
1463
+ -0.5018609079942864,
1464
+ -0.4879404986483018,
1465
+ -0.4817354733640177,
1466
+ -0.17609029100064832,
1467
+ -0.17133483863798027,
1468
+ -0.11669866673177687
1469
+ ],
1470
+ "y0": [
1471
+ 0.0,
1472
+ 0.0,
1473
+ 0.004,
1474
+ 0.004,
1475
+ 0.013953488372093023,
1476
+ 0.013953488372093023,
1477
+ 0.025,
1478
+ 0.025,
1479
+ 0.025906735751295335,
1480
+ 0.025906735751295335,
1481
+ 0.043010752688172046,
1482
+ 0.043010752688172046,
1483
+ 0.06666666666666667,
1484
+ 0.06666666666666667,
1485
+ 0.07194244604316546,
1486
+ 0.07194244604316546,
1487
+ 0.12,
1488
+ 0.12,
1489
+ 0.2,
1490
+ 0.2,
1491
+ 0.4666666666666667,
1492
+ 0.4666666666666667,
1493
+ 0.75,
1494
+ 0.75
1495
+ ],
1496
+ "x_min": -1.010990205488903,
1497
+ "x_max": -0.11669866673177687
1498
+ }
1499
+ ],
1500
+ "Year6": [
1501
+ {
1502
+ "coef": [
1503
+ [
1504
+ 1.3402047867502709
1505
+ ]
1506
+ ],
1507
+ "intercept": [
1508
+ -1.022854761481155
1509
+ ],
1510
+ "x0": [
1511
+ -1.0014548350710109,
1512
+ -0.9809573953944647,
1513
+ -0.9807189213769373,
1514
+ -0.9584614645671389,
1515
+ -0.9583416309364743,
1516
+ -0.9503514307928805,
1517
+ -0.9502173730969813,
1518
+ -0.9463673994303239,
1519
+ -0.9460851847895879,
1520
+ -0.9334756283451271,
1521
+ -0.9333125683343986,
1522
+ -0.9197114762172292,
1523
+ -0.9193389744597138,
1524
+ -0.8820973261576057,
1525
+ -0.8816044915042368,
1526
+ -0.8535154125881523,
1527
+ -0.8522108526198943,
1528
+ -0.8396171079039692,
1529
+ -0.838998338599326,
1530
+ -0.8209495026047056,
1531
+ -0.8201107370871801,
1532
+ -0.6438582428575168,
1533
+ -0.6393293484162451,
1534
+ -0.6040743961248265,
1535
+ -0.6035118640510728,
1536
+ -0.5437913597911028,
1537
+ -0.5409318483769978,
1538
+ -0.25977720754906897,
1539
+ -0.23243496944391073,
1540
+ 0.04666817075179597,
1541
+ 0.055625547419526855,
1542
+ 0.22599583898660613
1543
+ ],
1544
+ "y0": [
1545
+ 0.0,
1546
+ 0.0,
1547
+ 0.011049723756906077,
1548
+ 0.011049723756906077,
1549
+ 0.02666666666666667,
1550
+ 0.02666666666666667,
1551
+ 0.02702702702702703,
1552
+ 0.02702702702702703,
1553
+ 0.029850746268656716,
1554
+ 0.029850746268656716,
1555
+ 0.060240963855421686,
1556
+ 0.060240963855421686,
1557
+ 0.06338028169014084,
1558
+ 0.06338028169014084,
1559
+ 0.06896551724137931,
1560
+ 0.06896551724137931,
1561
+ 0.09523809523809523,
1562
+ 0.09523809523809523,
1563
+ 0.10526315789473684,
1564
+ 0.10526315789473684,
1565
+ 0.12264150943396226,
1566
+ 0.12264150943396226,
1567
+ 0.125,
1568
+ 0.125,
1569
+ 0.15789473684210525,
1570
+ 0.15789473684210525,
1571
+ 0.23809523809523808,
1572
+ 0.23809523809523808,
1573
+ 0.5714285714285714,
1574
+ 0.5714285714285714,
1575
+ 1.0,
1576
+ 1.0
1577
+ ],
1578
+ "x_min": -1.0014548350710109,
1579
+ "x_max": 0.22599583898660613
1580
+ },
1581
+ {
1582
+ "coef": [
1583
+ [
1584
+ 1.3959008884993587
1585
+ ]
1586
+ ],
1587
+ "intercept": [
1588
+ -1.0280165717031389
1589
+ ],
1590
+ "x0": [
1591
+ -1.0031969100113278,
1592
+ -0.9937941956327353,
1593
+ -0.9934666676644789,
1594
+ -0.9883226878960072,
1595
+ -0.9880202869850842,
1596
+ -0.9753209255649484,
1597
+ -0.9752218005718007,
1598
+ -0.9663410394477044,
1599
+ -0.9662257888327044,
1600
+ -0.9271725071839694,
1601
+ -0.9269896183995291,
1602
+ -0.8803813191086527,
1603
+ -0.8801232675579257,
1604
+ -0.8271351709691199,
1605
+ -0.8249420447961032,
1606
+ -0.8020908165992627,
1607
+ -0.8006075089953704,
1608
+ -0.7283286133519078,
1609
+ -0.7274082516748954,
1610
+ -0.3954768498228912,
1611
+ -0.3853718622725649,
1612
+ -0.32872557398406976,
1613
+ -0.27933451549515187,
1614
+ -0.2723903786338845,
1615
+ -0.2706138457591073,
1616
+ -0.1530523319050906,
1617
+ -0.14748410943826828,
1618
+ 0.14453547870547512,
1619
+ 0.18038538295263606,
1620
+ 0.2668573218915218
1621
+ ],
1622
+ "y0": [
1623
+ 0.0,
1624
+ 0.0,
1625
+ 0.02564102564102564,
1626
+ 0.02564102564102564,
1627
+ 0.028846153846153848,
1628
+ 0.028846153846153848,
1629
+ 0.028985507246376812,
1630
+ 0.028985507246376812,
1631
+ 0.04435483870967742,
1632
+ 0.04435483870967742,
1633
+ 0.04964539007092199,
1634
+ 0.04964539007092199,
1635
+ 0.057692307692307696,
1636
+ 0.057692307692307696,
1637
+ 0.0625,
1638
+ 0.0625,
1639
+ 0.10344827586206896,
1640
+ 0.10344827586206896,
1641
+ 0.14150943396226415,
1642
+ 0.14150943396226415,
1643
+ 0.2222222222222222,
1644
+ 0.2222222222222222,
1645
+ 0.3333333333333333,
1646
+ 0.3333333333333333,
1647
+ 0.375,
1648
+ 0.375,
1649
+ 0.5,
1650
+ 0.5,
1651
+ 1.0,
1652
+ 1.0
1653
+ ],
1654
+ "x_min": -1.0031969100113278,
1655
+ "x_max": 0.2668573218915218
1656
+ },
1657
+ {
1658
+ "coef": [
1659
+ [
1660
+ 1.3075818322566317
1661
+ ]
1662
+ ],
1663
+ "intercept": [
1664
+ -1.0172710628987636
1665
+ ],
1666
+ "x0": [
1667
+ -0.993297266477007,
1668
+ -0.9881300509817438,
1669
+ -0.9880185485655678,
1670
+ -0.973844738251283,
1671
+ -0.9735155380900808,
1672
+ -0.969191974119178,
1673
+ -0.9689198878624192,
1674
+ -0.9635609766709075,
1675
+ -0.9633594291305876,
1676
+ -0.8851321971870609,
1677
+ -0.8844345453642725,
1678
+ -0.7414643990979217,
1679
+ -0.7401870545406178,
1680
+ -0.6908592293027302,
1681
+ -0.6889420141707834,
1682
+ -0.5917664833153542,
1683
+ -0.5807624240664113,
1684
+ -0.5224048247758735,
1685
+ -0.5184940153203661,
1686
+ -0.39915893252898393,
1687
+ -0.37565947134586164,
1688
+ -0.09479724547071178,
1689
+ -0.08205571548845425,
1690
+ 0.13404050207487672,
1691
+ 0.13842061490008084,
1692
+ 0.1643055229380257,
1693
+ 0.2048397261136614,
1694
+ 0.2218881072475345
1695
+ ],
1696
+ "y0": [
1697
+ 0.0,
1698
+ 0.0,
1699
+ 0.02040816326530612,
1700
+ 0.02040816326530612,
1701
+ 0.021739130434782608,
1702
+ 0.021739130434782608,
1703
+ 0.023809523809523808,
1704
+ 0.023809523809523808,
1705
+ 0.038461538461538464,
1706
+ 0.038461538461538464,
1707
+ 0.046218487394957986,
1708
+ 0.046218487394957986,
1709
+ 0.12121212121212122,
1710
+ 0.12121212121212122,
1711
+ 0.17142857142857143,
1712
+ 0.17142857142857143,
1713
+ 0.3333333333333333,
1714
+ 0.3333333333333333,
1715
+ 0.3684210526315789,
1716
+ 0.3684210526315789,
1717
+ 0.4375,
1718
+ 0.4375,
1719
+ 0.5,
1720
+ 0.5,
1721
+ 0.8,
1722
+ 0.8,
1723
+ 1.0,
1724
+ 1.0
1725
+ ],
1726
+ "x_min": -0.993297266477007,
1727
+ "x_max": 0.2218881072475345
1728
+ },
1729
+ {
1730
+ "coef": [
1731
+ [
1732
+ 1.2680152167715661
1733
+ ]
1734
+ ],
1735
+ "intercept": [
1736
+ -1.013908348439502
1737
+ ],
1738
+ "x0": [
1739
+ -0.9915348983662119,
1740
+ -0.9700938265385021,
1741
+ -0.9700111377361347,
1742
+ -0.9675465343293829,
1743
+ -0.967371742341151,
1744
+ -0.8886631977151296,
1745
+ -0.8882215861323977,
1746
+ -0.7633494962966725,
1747
+ -0.7619723037829558,
1748
+ -0.754799705594398,
1749
+ -0.7541952010861683,
1750
+ -0.6146197148228552,
1751
+ -0.5993741765016536,
1752
+ -0.37190547685144526,
1753
+ -0.363854662645696,
1754
+ -0.29231320834513275,
1755
+ -0.28050276268783125,
1756
+ -0.11104098771383164,
1757
+ -0.09947353045948815,
1758
+ 0.009578757832881424
1759
+ ],
1760
+ "y0": [
1761
+ 0.0,
1762
+ 0.0,
1763
+ 0.034482758620689655,
1764
+ 0.034482758620689655,
1765
+ 0.03571428571428571,
1766
+ 0.03571428571428571,
1767
+ 0.04519774011299435,
1768
+ 0.04519774011299435,
1769
+ 0.1111111111111111,
1770
+ 0.1111111111111111,
1771
+ 0.15384615384615385,
1772
+ 0.15384615384615385,
1773
+ 0.2708333333333333,
1774
+ 0.2708333333333333,
1775
+ 0.5,
1776
+ 0.5,
1777
+ 0.5833333333333334,
1778
+ 0.5833333333333334,
1779
+ 0.8571428571428571,
1780
+ 0.8571428571428571
1781
+ ],
1782
+ "x_min": -0.9915348983662119,
1783
+ "x_max": 0.009578757832881424
1784
+ },
1785
+ {
1786
+ "coef": [
1787
+ [
1788
+ 1.3192698390924997
1789
+ ]
1790
+ ],
1791
+ "intercept": [
1792
+ -1.017600861015338
1793
+ ],
1794
+ "x0": [
1795
+ -0.9941437292402543,
1796
+ -0.9881993680040662,
1797
+ -0.9879739496074936,
1798
+ -0.9667581843566854,
1799
+ -0.9665668958382373,
1800
+ -0.9527840965971894,
1801
+ -0.9526636136304931,
1802
+ -0.947277604815471,
1803
+ -0.9468864910087135,
1804
+ -0.9377462644052789,
1805
+ -0.9374527115763671,
1806
+ -0.9033097899359009,
1807
+ -0.9029013617709273,
1808
+ -0.8611498535483195,
1809
+ -0.8608803137634738,
1810
+ -0.8235830925192051,
1811
+ -0.8232596487091209,
1812
+ -0.8150280794282878,
1813
+ -0.8133479133724637,
1814
+ -0.7875066539384281,
1815
+ -0.7862051725062988,
1816
+ -0.5699988205095599,
1817
+ -0.5694210133943834,
1818
+ -0.3729001873061524,
1819
+ -0.3691070503003926,
1820
+ -0.3520175477517996,
1821
+ -0.3443998985308415,
1822
+ -0.00458113860013043,
1823
+ 0.036665938427871136,
1824
+ 0.1037404745158319
1825
+ ],
1826
+ "y0": [
1827
+ 0.0,
1828
+ 0.0,
1829
+ 0.005494505494505495,
1830
+ 0.005494505494505495,
1831
+ 0.025423728813559324,
1832
+ 0.025423728813559324,
1833
+ 0.02564102564102564,
1834
+ 0.02564102564102564,
1835
+ 0.037037037037037035,
1836
+ 0.037037037037037035,
1837
+ 0.04225352112676056,
1838
+ 0.04225352112676056,
1839
+ 0.06140350877192982,
1840
+ 0.06140350877192982,
1841
+ 0.06349206349206349,
1842
+ 0.06349206349206349,
1843
+ 0.06666666666666667,
1844
+ 0.06666666666666667,
1845
+ 0.09375,
1846
+ 0.09375,
1847
+ 0.10909090909090909,
1848
+ 0.10909090909090909,
1849
+ 0.15,
1850
+ 0.15,
1851
+ 0.25,
1852
+ 0.25,
1853
+ 0.5833333333333334,
1854
+ 0.5833333333333334,
1855
+ 0.75,
1856
+ 0.75
1857
+ ],
1858
+ "x_min": -0.9941437292402543,
1859
+ "x_max": 0.1037404745158319
1860
+ }
1861
+ ]
1862
+ }
checkpoints/sybil_3_simple_calibrator.json ADDED
@@ -0,0 +1,1936 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.708407969348261
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.1068766617046841
11
+ ],
12
+ "x0": [
13
+ -1.0891075657591485,
14
+ -1.0540046072044698,
15
+ -1.0539089689263088,
16
+ -1.0224323636998902,
17
+ -1.0222869850722045,
18
+ -0.981620433305085,
19
+ -0.9813180643382371,
20
+ -0.9323589613177254,
21
+ -0.9308130730566575,
22
+ -0.7819211214978496,
23
+ -0.7806754170906518,
24
+ -0.5823982443684491,
25
+ -0.5718329803302192,
26
+ -0.5690353179036816,
27
+ -0.5510248778131578,
28
+ -0.50041428329375,
29
+ -0.4892074194159375,
30
+ -0.46518418177645426,
31
+ -0.44511361294797414,
32
+ -0.44286769682639393
33
+ ],
34
+ "y0": [
35
+ 0.0,
36
+ 0.0,
37
+ 0.004166666666666667,
38
+ 0.004166666666666667,
39
+ 0.00625,
40
+ 0.00625,
41
+ 0.0125,
42
+ 0.0125,
43
+ 0.04504504504504504,
44
+ 0.04504504504504504,
45
+ 0.17142857142857143,
46
+ 0.17142857142857143,
47
+ 0.3333333333333333,
48
+ 0.3333333333333333,
49
+ 0.4,
50
+ 0.4,
51
+ 0.5,
52
+ 0.5,
53
+ 1.0,
54
+ 1.0
55
+ ],
56
+ "x_min": -1.0891075657591485,
57
+ "x_max": -0.44286769682639393
58
+ },
59
+ {
60
+ "coef": [
61
+ [
62
+ 0.7627492938659357
63
+ ]
64
+ ],
65
+ "intercept": [
66
+ -1.1220225847631993
67
+ ],
68
+ "x0": [
69
+ -1.100415184360947,
70
+ -1.086581693029596,
71
+ -1.086515634708359,
72
+ -1.0474757976620943,
73
+ -1.0473443288730808,
74
+ -0.9416200031719869,
75
+ -0.9408117207365507,
76
+ -0.8196545538340595,
77
+ -0.8177365666164562,
78
+ -0.7374124439916496,
79
+ -0.7337528220878109,
80
+ -0.6355252804571057,
81
+ -0.6353532014854049,
82
+ -0.5982538389913215,
83
+ -0.5880407133380239,
84
+ -0.4312336708146992
85
+ ],
86
+ "y0": [
87
+ 0.0,
88
+ 0.0,
89
+ 0.0016339869281045752,
90
+ 0.0016339869281045752,
91
+ 0.006493506493506494,
92
+ 0.006493506493506494,
93
+ 0.030612244897959183,
94
+ 0.030612244897959183,
95
+ 0.06896551724137931,
96
+ 0.06896551724137931,
97
+ 0.1724137931034483,
98
+ 0.1724137931034483,
99
+ 0.25,
100
+ 0.25,
101
+ 0.3157894736842105,
102
+ 0.3157894736842105
103
+ ],
104
+ "x_min": -1.100415184360947,
105
+ "x_max": -0.4312336708146992
106
+ },
107
+ {
108
+ "coef": [
109
+ [
110
+ 0.7401945578125815
111
+ ]
112
+ ],
113
+ "intercept": [
114
+ -1.1119608835506245
115
+ ],
116
+ "x0": [
117
+ -1.0910321775252485,
118
+ -1.0466830947920502,
119
+ -1.0465667473853486,
120
+ -0.8894266394857374,
121
+ -0.8871402367436615,
122
+ -0.8164993547952077,
123
+ -0.8151981962538258,
124
+ -0.7031750945792224,
125
+ -0.7026612843129492,
126
+ -0.6462265988533513,
127
+ -0.6457209064892756,
128
+ -0.5546520736839082,
129
+ -0.5441080658239851,
130
+ -0.4551122981733191,
131
+ -0.4541065165624456,
132
+ -0.4179034081408378
133
+ ],
134
+ "y0": [
135
+ 0.0,
136
+ 0.0,
137
+ 0.007556675062972292,
138
+ 0.007556675062972292,
139
+ 0.058823529411764705,
140
+ 0.058823529411764705,
141
+ 0.08,
142
+ 0.08,
143
+ 0.11764705882352941,
144
+ 0.11764705882352941,
145
+ 0.14285714285714285,
146
+ 0.14285714285714285,
147
+ 0.5,
148
+ 0.5,
149
+ 0.6666666666666666,
150
+ 0.6666666666666666
151
+ ],
152
+ "x_min": -1.0910321775252485,
153
+ "x_max": -0.4179034081408378
154
+ },
155
+ {
156
+ "coef": [
157
+ [
158
+ 0.7367014550597034
159
+ ]
160
+ ],
161
+ "intercept": [
162
+ -1.110803446441503
163
+ ],
164
+ "x0": [
165
+ -1.0887958935542985,
166
+ -1.0559189999694765,
167
+ -1.0558197066084534,
168
+ -1.0376523807195737,
169
+ -1.037523595748336,
170
+ -0.9459914956239039,
171
+ -0.9457414783439364,
172
+ -0.8468042341400579,
173
+ -0.8465560501371817,
174
+ -0.766765705562834,
175
+ -0.762969065550683,
176
+ -0.7361358388511858,
177
+ -0.7351469230817638,
178
+ -0.6819876836631696,
179
+ -0.6809381270395417,
180
+ -0.6514763322777357,
181
+ -0.6369443509500933,
182
+ -0.44776938806990374,
183
+ -0.444594679077699,
184
+ -0.42468559724188315
185
+ ],
186
+ "y0": [
187
+ 0.0,
188
+ 0.0,
189
+ 0.00546448087431694,
190
+ 0.00546448087431694,
191
+ 0.006825938566552901,
192
+ 0.006825938566552901,
193
+ 0.020618556701030927,
194
+ 0.020618556701030927,
195
+ 0.044444444444444446,
196
+ 0.044444444444444446,
197
+ 0.07692307692307693,
198
+ 0.07692307692307693,
199
+ 0.09090909090909091,
200
+ 0.09090909090909091,
201
+ 0.16666666666666666,
202
+ 0.16666666666666666,
203
+ 0.2916666666666667,
204
+ 0.2916666666666667,
205
+ 0.6666666666666666,
206
+ 0.6666666666666666
207
+ ],
208
+ "x_min": -1.0887958935542985,
209
+ "x_max": -0.42468559724188315
210
+ },
211
+ {
212
+ "coef": [
213
+ [
214
+ 0.7240565682513503
215
+ ]
216
+ ],
217
+ "intercept": [
218
+ -1.1085108888388655
219
+ ],
220
+ "x0": [
221
+ -1.0897162939083642,
222
+ -1.0805543929875239,
223
+ -1.0805018518735328,
224
+ -1.047660731733185,
225
+ -1.0475517815470188,
226
+ -0.9644261665479873,
227
+ -0.9634091147259476,
228
+ -0.8766801055671221,
229
+ -0.8765261424896224,
230
+ -0.7433422326606771,
231
+ -0.7383303946256283,
232
+ -0.6957753452617961,
233
+ -0.6952988473392526,
234
+ -0.5868523049332276,
235
+ -0.5810656237045057,
236
+ -0.5185563121396981,
237
+ -0.5142364124428559,
238
+ -0.46712047394286604,
239
+ -0.44369132873949657,
240
+ -0.43058757113384916
241
+ ],
242
+ "y0": [
243
+ 0.0,
244
+ 0.0,
245
+ 0.0014792899408284023,
246
+ 0.0014792899408284023,
247
+ 0.005405405405405406,
248
+ 0.005405405405405406,
249
+ 0.017241379310344827,
250
+ 0.017241379310344827,
251
+ 0.047619047619047616,
252
+ 0.047619047619047616,
253
+ 0.1111111111111111,
254
+ 0.1111111111111111,
255
+ 0.13636363636363635,
256
+ 0.13636363636363635,
257
+ 0.2857142857142857,
258
+ 0.2857142857142857,
259
+ 0.375,
260
+ 0.375,
261
+ 1.0,
262
+ 1.0
263
+ ],
264
+ "x_min": -1.0897162939083642,
265
+ "x_max": -0.43058757113384916
266
+ }
267
+ ],
268
+ "Year2": [
269
+ {
270
+ "coef": [
271
+ [
272
+ 0.8410958425552315
273
+ ]
274
+ ],
275
+ "intercept": [
276
+ -1.076602891748696
277
+ ],
278
+ "x0": [
279
+ -1.055505567364408,
280
+ -1.0457924034654609,
281
+ -1.04573437739789,
282
+ -1.0138276730164772,
283
+ -1.013714121275629,
284
+ -0.976341811901343,
285
+ -0.9761692032286098,
286
+ -0.8968563515724838,
287
+ -0.8965801300695528,
288
+ -0.869397272107214,
289
+ -0.8675618322961183,
290
+ -0.7760429894302621,
291
+ -0.7746268011956694,
292
+ -0.6907817749496961,
293
+ -0.6893027447251902,
294
+ -0.5676564692838721,
295
+ -0.5667736232987338,
296
+ -0.486997083234187,
297
+ -0.4718640703046072,
298
+ -0.4380215406078689,
299
+ -0.4166376672775528,
300
+ -0.31471863801402944,
301
+ -0.29088876493272553,
302
+ -0.28822217901850034
303
+ ],
304
+ "y0": [
305
+ 0.0,
306
+ 0.0,
307
+ 0.005943536404160475,
308
+ 0.005943536404160475,
309
+ 0.008298755186721992,
310
+ 0.008298755186721992,
311
+ 0.009708737864077669,
312
+ 0.009708737864077669,
313
+ 0.0625,
314
+ 0.0625,
315
+ 0.0684931506849315,
316
+ 0.0684931506849315,
317
+ 0.08108108108108109,
318
+ 0.08108108108108109,
319
+ 0.16666666666666666,
320
+ 0.16666666666666666,
321
+ 0.3333333333333333,
322
+ 0.3333333333333333,
323
+ 0.4,
324
+ 0.4,
325
+ 0.5714285714285714,
326
+ 0.5714285714285714,
327
+ 1.0,
328
+ 1.0
329
+ ],
330
+ "x_min": -1.055505567364408,
331
+ "x_max": -0.28822217901850034
332
+ },
333
+ {
334
+ "coef": [
335
+ [
336
+ 0.849389855951038
337
+ ]
338
+ ],
339
+ "intercept": [
340
+ -1.0757576924430952
341
+ ],
342
+ "x0": [
343
+ -1.0516959111176427,
344
+ -1.0362910758674098,
345
+ -1.03621751399274,
346
+ -1.0249077649618148,
347
+ -1.0248143127764013,
348
+ -1.0084772513163933,
349
+ -1.008356150143503,
350
+ -0.8748632124045623,
351
+ -0.8739631173052628,
352
+ -0.7566364583757133,
353
+ -0.7565391268519333,
354
+ -0.6474597514361848,
355
+ -0.643384433705005,
356
+ -0.5436429358314094,
357
+ -0.5426730632690931,
358
+ -0.4924941442489411,
359
+ -0.48216707972245776,
360
+ -0.3896510489026106,
361
+ -0.3859482995373589,
362
+ -0.3065021836803167
363
+ ],
364
+ "y0": [
365
+ 0.0,
366
+ 0.0,
367
+ 0.004048582995951417,
368
+ 0.004048582995951417,
369
+ 0.004484304932735426,
370
+ 0.004484304932735426,
371
+ 0.015625,
372
+ 0.015625,
373
+ 0.02247191011235955,
374
+ 0.02247191011235955,
375
+ 0.10810810810810811,
376
+ 0.10810810810810811,
377
+ 0.2222222222222222,
378
+ 0.2222222222222222,
379
+ 0.42857142857142855,
380
+ 0.42857142857142855,
381
+ 0.46153846153846156,
382
+ 0.46153846153846156,
383
+ 0.5,
384
+ 0.5
385
+ ],
386
+ "x_min": -1.0516959111176427,
387
+ "x_max": -0.3065021836803167
388
+ },
389
+ {
390
+ "coef": [
391
+ [
392
+ 0.8559114044669356
393
+ ]
394
+ ],
395
+ "intercept": [
396
+ -1.0755042738715193
397
+ ],
398
+ "x0": [
399
+ -1.0513037201403597,
400
+ -1.0292005834120888,
401
+ -1.0291149685031502,
402
+ -1.0108103887362199,
403
+ -1.0106934912727545,
404
+ -0.8923104843068135,
405
+ -0.8921698578890328,
406
+ -0.8769653438831457,
407
+ -0.8757715625749403,
408
+ -0.8454785328644283,
409
+ -0.8428408628606892,
410
+ -0.8181805805679101,
411
+ -0.8155367375924492,
412
+ -0.7825757214447621,
413
+ -0.7810685725431525,
414
+ -0.7338523536110779,
415
+ -0.7323477810323773,
416
+ -0.7025139617492364,
417
+ -0.7024625628317998,
418
+ -0.6169356314942732,
419
+ -0.615948313132833,
420
+ -0.602811770161936,
421
+ -0.6022176343877752,
422
+ -0.5488456617334209,
423
+ -0.5418507664791745,
424
+ -0.4310696976643318,
425
+ -0.4188773132691167,
426
+ -0.31596856897005143,
427
+ -0.31480555048786507,
428
+ -0.2729427009868115
429
+ ],
430
+ "y0": [
431
+ 0.0,
432
+ 0.0,
433
+ 0.0035587188612099642,
434
+ 0.0035587188612099642,
435
+ 0.011441647597254004,
436
+ 0.011441647597254004,
437
+ 0.037037037037037035,
438
+ 0.037037037037037035,
439
+ 0.05714285714285714,
440
+ 0.05714285714285714,
441
+ 0.06666666666666667,
442
+ 0.06666666666666667,
443
+ 0.07407407407407407,
444
+ 0.07407407407407407,
445
+ 0.08333333333333333,
446
+ 0.08333333333333333,
447
+ 0.09090909090909091,
448
+ 0.09090909090909091,
449
+ 0.1,
450
+ 0.1,
451
+ 0.1111111111111111,
452
+ 0.1111111111111111,
453
+ 0.14285714285714285,
454
+ 0.14285714285714285,
455
+ 0.23529411764705882,
456
+ 0.23529411764705882,
457
+ 0.625,
458
+ 0.625,
459
+ 1.0,
460
+ 1.0
461
+ ],
462
+ "x_min": -1.0513037201403597,
463
+ "x_max": -0.2729427009868115
464
+ },
465
+ {
466
+ "coef": [
467
+ [
468
+ 0.8581963338654869
469
+ ]
470
+ ],
471
+ "intercept": [
472
+ -1.0782008785781136
473
+ ],
474
+ "x0": [
475
+ -1.0525638975793195,
476
+ -1.0234208291676155,
477
+ -1.0232201579586524,
478
+ -1.0142650326190303,
479
+ -1.0141493640563826,
480
+ -0.9999161524036995,
481
+ -0.9997770879720228,
482
+ -0.9628295630358187,
483
+ -0.9626343779311537,
484
+ -0.9068878470253587,
485
+ -0.9062173402175363,
486
+ -0.7706636060718233,
487
+ -0.7703744922117521,
488
+ -0.6832086839235567,
489
+ -0.6814123875917824,
490
+ -0.5431227370690636,
491
+ -0.5261941793561243,
492
+ -0.5196865087276541,
493
+ -0.5181646199157579,
494
+ -0.4817307490781272,
495
+ -0.478367728779051,
496
+ -0.3058209759534499,
497
+ -0.30212270225046245,
498
+ -0.27893026666508625
499
+ ],
500
+ "y0": [
501
+ 0.0,
502
+ 0.0,
503
+ 0.0078125,
504
+ 0.0078125,
505
+ 0.015267175572519083,
506
+ 0.015267175572519083,
507
+ 0.0213903743315508,
508
+ 0.0213903743315508,
509
+ 0.023255813953488372,
510
+ 0.023255813953488372,
511
+ 0.03125,
512
+ 0.03125,
513
+ 0.047619047619047616,
514
+ 0.047619047619047616,
515
+ 0.1875,
516
+ 0.1875,
517
+ 0.3333333333333333,
518
+ 0.3333333333333333,
519
+ 0.4,
520
+ 0.4,
521
+ 0.4666666666666667,
522
+ 0.4666666666666667,
523
+ 0.6666666666666666,
524
+ 0.6666666666666666
525
+ ],
526
+ "x_min": -1.0525638975793195,
527
+ "x_max": -0.27893026666508625
528
+ },
529
+ {
530
+ "coef": [
531
+ [
532
+ 0.8999670774569445
533
+ ]
534
+ ],
535
+ "intercept": [
536
+ -1.0883349765002914
537
+ ],
538
+ "x0": [
539
+ -1.0649742096579435,
540
+ -1.0535864126856822,
541
+ -1.0535211066379528,
542
+ -1.0164046378643452,
543
+ -1.016275272950454,
544
+ -0.8869978830432521,
545
+ -0.886539617575208,
546
+ -0.8189658584921032,
547
+ -0.8169339717390536,
548
+ -0.8001805951520131,
549
+ -0.7999892265394359,
550
+ -0.6344481081396423,
551
+ -0.6282186373677887,
552
+ -0.4399387437008252,
553
+ -0.4327461805476932,
554
+ -0.3550501483458327,
555
+ -0.3496807232545537,
556
+ -0.29111790463958986,
557
+ -0.2619966173527226,
558
+ -0.24570928435533046
559
+ ],
560
+ "y0": [
561
+ 0.0,
562
+ 0.0,
563
+ 0.004651162790697674,
564
+ 0.004651162790697674,
565
+ 0.01797752808988764,
566
+ 0.01797752808988764,
567
+ 0.03571428571428571,
568
+ 0.03571428571428571,
569
+ 0.07692307692307693,
570
+ 0.07692307692307693,
571
+ 0.09375,
572
+ 0.09375,
573
+ 0.2,
574
+ 0.2,
575
+ 0.2857142857142857,
576
+ 0.2857142857142857,
577
+ 0.375,
578
+ 0.375,
579
+ 1.0,
580
+ 1.0
581
+ ],
582
+ "x_min": -1.0649742096579435,
583
+ "x_max": -0.24570928435533046
584
+ }
585
+ ],
586
+ "Year3": [
587
+ {
588
+ "coef": [
589
+ [
590
+ 0.8632995165133589
591
+ ]
592
+ ],
593
+ "intercept": [
594
+ -1.0469064270139814
595
+ ],
596
+ "x0": [
597
+ -1.0252521647775286,
598
+ -1.0152825878595146,
599
+ -1.0152230299904292,
600
+ -0.9988031290590168,
601
+ -0.9987143341583502,
602
+ -0.9824740362701334,
603
+ -0.9823574869329309,
604
+ -0.9010139417309868,
605
+ -0.9007769966711708,
606
+ -0.8624148466518025,
607
+ -0.8621313333137666,
608
+ -0.8342308885023331,
609
+ -0.832346995821691,
610
+ -0.7384121921993945,
611
+ -0.7369586187106687,
612
+ -0.6509002090051832,
613
+ -0.6493821345918731,
614
+ -0.5496411928954441,
615
+ -0.5407659994599714,
616
+ -0.5245245791733362,
617
+ -0.5236184273728348,
618
+ -0.45627272128429575,
619
+ -0.44751526068922887,
620
+ -0.26490956695330636,
621
+ -0.24045062081565083,
622
+ -0.23771364101618087
623
+ ],
624
+ "y0": [
625
+ 0.0,
626
+ 0.0,
627
+ 0.007352941176470588,
628
+ 0.007352941176470588,
629
+ 0.007751937984496124,
630
+ 0.007751937984496124,
631
+ 0.015873015873015872,
632
+ 0.015873015873015872,
633
+ 0.04411764705882353,
634
+ 0.04411764705882353,
635
+ 0.0625,
636
+ 0.0625,
637
+ 0.0821917808219178,
638
+ 0.0821917808219178,
639
+ 0.13513513513513514,
640
+ 0.13513513513513514,
641
+ 0.1875,
642
+ 0.1875,
643
+ 0.3333333333333333,
644
+ 0.3333333333333333,
645
+ 0.4,
646
+ 0.4,
647
+ 0.5714285714285714,
648
+ 0.5714285714285714,
649
+ 1.0,
650
+ 1.0
651
+ ],
652
+ "x_min": -1.0252521647775286,
653
+ "x_max": -0.23771364101618087
654
+ },
655
+ {
656
+ "coef": [
657
+ [
658
+ 0.8844983984643242
659
+ ]
660
+ ],
661
+ "intercept": [
662
+ -1.0486338445203025
663
+ ],
664
+ "x0": [
665
+ -1.0235774974289755,
666
+ -1.0088918752068947,
667
+ -1.0088176780973421,
668
+ -0.9785724445546647,
669
+ -0.9784463378055399,
670
+ -0.9718711189897142,
671
+ -0.9717340925665038,
672
+ -0.8636441532700095,
673
+ -0.8633582515557519,
674
+ -0.7163221051335436,
675
+ -0.7162207505243493,
676
+ -0.6980022002114419,
677
+ -0.695778066232049,
678
+ -0.6249043334568177,
679
+ -0.6077983905157884,
680
+ -0.4945247428813492,
681
+ -0.49351478176388,
682
+ -0.44126177544524325,
683
+ -0.4305078537089343,
684
+ -0.3341677802796281,
685
+ -0.330311982072793,
686
+ -0.24758205335109218
687
+ ],
688
+ "y0": [
689
+ 0.0,
690
+ 0.0,
691
+ 0.008130081300813009,
692
+ 0.008130081300813009,
693
+ 0.01639344262295082,
694
+ 0.01639344262295082,
695
+ 0.01694915254237288,
696
+ 0.01694915254237288,
697
+ 0.06666666666666667,
698
+ 0.06666666666666667,
699
+ 0.14285714285714285,
700
+ 0.14285714285714285,
701
+ 0.19230769230769232,
702
+ 0.19230769230769232,
703
+ 0.23333333333333334,
704
+ 0.23333333333333334,
705
+ 0.42857142857142855,
706
+ 0.42857142857142855,
707
+ 0.46153846153846156,
708
+ 0.46153846153846156,
709
+ 0.5714285714285714,
710
+ 0.5714285714285714
711
+ ],
712
+ "x_min": -1.0235774974289755,
713
+ "x_max": -0.24758205335109218
714
+ },
715
+ {
716
+ "coef": [
717
+ [
718
+ 0.8807099835192111
719
+ ]
720
+ ],
721
+ "intercept": [
722
+ -1.046850983982153
723
+ ],
724
+ "x0": [
725
+ -1.0219492603148541,
726
+ -0.9992057227453294,
727
+ -0.9991176272898339,
728
+ -0.9820632742883373,
729
+ -0.9819459427297573,
730
+ -0.8845126904799195,
731
+ -0.8837353926908545,
732
+ -0.8548538236990124,
733
+ -0.8527931951733644,
734
+ -0.8101606378621352,
735
+ -0.8042841253668529,
736
+ -0.7454353243313159,
737
+ -0.7438845083503978,
738
+ -0.6662229196769318,
739
+ -0.6630539111453566,
740
+ -0.6408555755522665,
741
+ -0.6396532699309088,
742
+ -0.5604630179157375,
743
+ -0.559851668066748,
744
+ -0.5049333331649257,
745
+ -0.4977357727025521,
746
+ -0.38374501059683497,
747
+ -0.3711993725743373,
748
+ -0.26530902221493435,
749
+ -0.26411230724778567,
750
+ -0.22103655279268253
751
+ ],
752
+ "y0": [
753
+ 0.0,
754
+ 0.0,
755
+ 0.003875968992248062,
756
+ 0.003875968992248062,
757
+ 0.018561484918793503,
758
+ 0.018561484918793503,
759
+ 0.03225806451612903,
760
+ 0.03225806451612903,
761
+ 0.07272727272727272,
762
+ 0.07272727272727272,
763
+ 0.1,
764
+ 0.1,
765
+ 0.11428571428571428,
766
+ 0.11428571428571428,
767
+ 0.125,
768
+ 0.125,
769
+ 0.16129032258064516,
770
+ 0.16129032258064516,
771
+ 0.2,
772
+ 0.2,
773
+ 0.3333333333333333,
774
+ 0.3333333333333333,
775
+ 0.5714285714285714,
776
+ 0.5714285714285714,
777
+ 1.0,
778
+ 1.0
779
+ ],
780
+ "x_min": -1.0219492603148541,
781
+ "x_max": -0.22103655279268253
782
+ },
783
+ {
784
+ "coef": [
785
+ [
786
+ 0.9420359986339971
787
+ ]
788
+ ],
789
+ "intercept": [
790
+ -1.0592936127919221
791
+ ],
792
+ "x0": [
793
+ -1.0311520814847686,
794
+ -1.0247205590784865,
795
+ -1.024655449967555,
796
+ -0.9991619430151472,
797
+ -0.9989416676594123,
798
+ -0.989111690404434,
799
+ -0.9889847218476776,
800
+ -0.983321601355444,
801
+ -0.9831850733086764,
802
+ -0.935408840828615,
803
+ -0.9345658510288477,
804
+ -0.871244519141154,
805
+ -0.8705085085974442,
806
+ -0.8485450258182587,
807
+ -0.8482253233439494,
808
+ -0.7769468179602227,
809
+ -0.7752059800832085,
810
+ -0.6193651525309658,
811
+ -0.6145103072734517,
812
+ -0.4462163699847044,
813
+ -0.44454580348360195,
814
+ -0.4045526031584079,
815
+ -0.40086103974704146,
816
+ -0.21145769904878609,
817
+ -0.20739813036556476,
818
+ -0.18193995913449423
819
+ ],
820
+ "y0": [
821
+ 0.0,
822
+ 0.0,
823
+ 0.0078125,
824
+ 0.0078125,
825
+ 0.015625,
826
+ 0.015625,
827
+ 0.017543859649122806,
828
+ 0.017543859649122806,
829
+ 0.020080321285140562,
830
+ 0.020080321285140562,
831
+ 0.05185185185185185,
832
+ 0.05185185185185185,
833
+ 0.0625,
834
+ 0.0625,
835
+ 0.07017543859649122,
836
+ 0.07017543859649122,
837
+ 0.07142857142857142,
838
+ 0.07142857142857142,
839
+ 0.10714285714285714,
840
+ 0.10714285714285714,
841
+ 0.4,
842
+ 0.4,
843
+ 0.5384615384615384,
844
+ 0.5384615384615384,
845
+ 0.6666666666666666,
846
+ 0.6666666666666666
847
+ ],
848
+ "x_min": -1.0311520814847686,
849
+ "x_max": -0.18193995913449423
850
+ },
851
+ {
852
+ "coef": [
853
+ [
854
+ 0.9640917943688888
855
+ ]
856
+ ],
857
+ "intercept": [
858
+ -1.0627451326793407
859
+ ],
860
+ "x0": [
861
+ -1.037719857658711,
862
+ -1.0287983666427565,
863
+ -1.0287343369919564,
864
+ -0.9950887416081365,
865
+ -0.9948425858864332,
866
+ -0.9880109942277365,
867
+ -0.9878762331464421,
868
+ -0.8865891622814883,
869
+ -0.886026083492369,
870
+ -0.8069628683138049,
871
+ -0.8058602711186295,
872
+ -0.7787037403671182,
873
+ -0.7779204725589702,
874
+ -0.5765177846803484,
875
+ -0.5698444498386166,
876
+ -0.3681491822273961,
877
+ -0.36044413246489926,
878
+ -0.2772120798963783,
879
+ -0.271460070961109,
880
+ -0.20872451729914587,
881
+ -0.1627152266101659,
882
+ -0.16008042874718265
883
+ ],
884
+ "y0": [
885
+ 0.0,
886
+ 0.0,
887
+ 0.011784511784511785,
888
+ 0.011784511784511785,
889
+ 0.02564102564102564,
890
+ 0.02564102564102564,
891
+ 0.02763819095477387,
892
+ 0.02763819095477387,
893
+ 0.038834951456310676,
894
+ 0.038834951456310676,
895
+ 0.05,
896
+ 0.05,
897
+ 0.06666666666666667,
898
+ 0.06666666666666667,
899
+ 0.2,
900
+ 0.2,
901
+ 0.2857142857142857,
902
+ 0.2857142857142857,
903
+ 0.625,
904
+ 0.625,
905
+ 1.0,
906
+ 1.0
907
+ ],
908
+ "x_min": -1.037719857658711,
909
+ "x_max": -0.16008042874718265
910
+ }
911
+ ],
912
+ "Year4": [
913
+ {
914
+ "coef": [
915
+ [
916
+ 0.919539656912959
917
+ ]
918
+ ],
919
+ "intercept": [
920
+ -1.0376977812078418
921
+ ],
922
+ "x0": [
923
+ -1.014632839682066,
924
+ -1.0040137889778762,
925
+ -1.0039503511773706,
926
+ -0.9695624114034712,
927
+ -0.969439091525605,
928
+ -0.8609292458807398,
929
+ -0.8586874823320542,
930
+ -0.8411873914016147,
931
+ -0.8408854084251378,
932
+ -0.8111673731906914,
933
+ -0.8091607532446792,
934
+ -0.7091065131544194,
935
+ -0.7075582457900185,
936
+ -0.654382166365785,
937
+ -0.65066620959267,
938
+ -0.4812850693358882,
939
+ -0.48031988575845574,
940
+ -0.4085869051570957,
941
+ -0.3992589347864649,
942
+ -0.3395598915291268,
943
+ -0.31618167640694506,
944
+ -0.2047572887685909,
945
+ -0.17870495060592473,
946
+ -0.1757896686931688
947
+ ],
948
+ "y0": [
949
+ 0.0,
950
+ 0.0,
951
+ 0.012195121951219513,
952
+ 0.012195121951219513,
953
+ 0.03333333333333333,
954
+ 0.03333333333333333,
955
+ 0.037037037037037035,
956
+ 0.037037037037037035,
957
+ 0.0625,
958
+ 0.0625,
959
+ 0.08450704225352113,
960
+ 0.08450704225352113,
961
+ 0.15,
962
+ 0.15,
963
+ 0.17647058823529413,
964
+ 0.17647058823529413,
965
+ 0.4,
966
+ 0.4,
967
+ 0.5714285714285714,
968
+ 0.5714285714285714,
969
+ 0.6666666666666666,
970
+ 0.6666666666666666,
971
+ 1.0,
972
+ 1.0
973
+ ],
974
+ "x_min": -1.014632839682066,
975
+ "x_max": -0.1757896686931688
976
+ },
977
+ {
978
+ "coef": [
979
+ [
980
+ 0.9263010215214922
981
+ ]
982
+ ],
983
+ "intercept": [
984
+ -1.0370874119008826
985
+ ],
986
+ "x0": [
987
+ -1.010846867037726,
988
+ -0.9954671819081538,
989
+ -0.9953894781401291,
990
+ -0.9678278467192757,
991
+ -0.9677025848496916,
992
+ -0.9603474218136041,
993
+ -0.9600720527449315,
994
+ -0.8433548508543027,
995
+ -0.8430554370278543,
996
+ -0.7211876050895343,
997
+ -0.7209842874764242,
998
+ -0.6890701580630234,
999
+ -0.6889640132941967,
1000
+ -0.6698844289842794,
1001
+ -0.6675551793432521,
1002
+ -0.6042538071374715,
1003
+ -0.601438003126985,
1004
+ -0.45679034434975196,
1005
+ -0.4557326510668326,
1006
+ -0.4010100950796671,
1007
+ -0.38974792806274516,
1008
+ -0.19817680025935192
1009
+ ],
1010
+ "y0": [
1011
+ 0.0,
1012
+ 0.0,
1013
+ 0.011210762331838564,
1014
+ 0.011210762331838564,
1015
+ 0.02631578947368421,
1016
+ 0.02631578947368421,
1017
+ 0.026737967914438502,
1018
+ 0.026737967914438502,
1019
+ 0.08653846153846154,
1020
+ 0.08653846153846154,
1021
+ 0.13333333333333333,
1022
+ 0.13333333333333333,
1023
+ 0.14285714285714285,
1024
+ 0.14285714285714285,
1025
+ 0.17391304347826086,
1026
+ 0.17391304347826086,
1027
+ 0.28125,
1028
+ 0.28125,
1029
+ 0.42857142857142855,
1030
+ 0.42857142857142855,
1031
+ 0.5,
1032
+ 0.5
1033
+ ],
1034
+ "x_min": -1.010846867037726,
1035
+ "x_max": -0.19817680025935192
1036
+ },
1037
+ {
1038
+ "coef": [
1039
+ [
1040
+ 0.9290658663411935
1041
+ ]
1042
+ ],
1043
+ "intercept": [
1044
+ -1.0361386245399402
1045
+ ],
1046
+ "x0": [
1047
+ -1.0098696575641124,
1048
+ -0.9963726102290889,
1049
+ -0.9962981978678308,
1050
+ -0.9858773731218945,
1051
+ -0.9857844407352834,
1052
+ -0.9679172679073778,
1053
+ -0.9677937087772889,
1054
+ -0.9336818294801074,
1055
+ -0.9333251969903981,
1056
+ -0.8648870546527305,
1057
+ -0.8640670788862279,
1058
+ -0.8335997509135418,
1059
+ -0.8314259824060717,
1060
+ -0.7864526602751847,
1061
+ -0.7835895494971805,
1062
+ -0.7181735665723661,
1063
+ -0.7165376021575083,
1064
+ -0.6346119597638187,
1065
+ -0.6312689550154613,
1066
+ -0.46446667672091213,
1067
+ -0.4568739301055078,
1068
+ -0.33662444033878847,
1069
+ -0.3233899769214442,
1070
+ -0.2116856566175911,
1071
+ -0.2104232353341684,
1072
+ -0.16498238206801719
1073
+ ],
1074
+ "y0": [
1075
+ 0.0,
1076
+ 0.0,
1077
+ 0.004201680672268907,
1078
+ 0.004201680672268907,
1079
+ 0.008032128514056224,
1080
+ 0.008032128514056224,
1081
+ 0.02531645569620253,
1082
+ 0.02531645569620253,
1083
+ 0.031413612565445025,
1084
+ 0.031413612565445025,
1085
+ 0.03225806451612903,
1086
+ 0.03225806451612903,
1087
+ 0.09090909090909091,
1088
+ 0.09090909090909091,
1089
+ 0.1,
1090
+ 0.1,
1091
+ 0.11428571428571428,
1092
+ 0.11428571428571428,
1093
+ 0.2037037037037037,
1094
+ 0.2037037037037037,
1095
+ 0.29411764705882354,
1096
+ 0.29411764705882354,
1097
+ 0.625,
1098
+ 0.625,
1099
+ 1.0,
1100
+ 1.0
1101
+ ],
1102
+ "x_min": -1.0098696575641124,
1103
+ "x_max": -0.16498238206801719
1104
+ },
1105
+ {
1106
+ "coef": [
1107
+ [
1108
+ 0.972422235035031
1109
+ ]
1110
+ ],
1111
+ "intercept": [
1112
+ -1.0431714828626601
1113
+ ],
1114
+ "x0": [
1115
+ -1.0141222206150478,
1116
+ -1.0074832435461631,
1117
+ -1.0074160342810556,
1118
+ -0.9811002108459757,
1119
+ -0.9808728303063174,
1120
+ -0.9707257781060932,
1121
+ -0.9705947140619173,
1122
+ -0.9647489244166003,
1123
+ -0.9646079925322825,
1124
+ -0.9544670624502081,
1125
+ -0.9543094885476773,
1126
+ -0.9146385324380355,
1127
+ -0.9144205125808027,
1128
+ -0.8754768713524594,
1129
+ -0.873980872010413,
1130
+ -0.5890527260393472,
1131
+ -0.5840412832888506,
1132
+ -0.436874459964662,
1133
+ -0.4176927118290239,
1134
+ -0.41031887047397475,
1135
+ -0.4085944183159551,
1136
+ -0.36731120058030386,
1137
+ -0.3635005624003831,
1138
+ -0.16798784297992586,
1139
+ -0.1637973291800917,
1140
+ -0.1375179812524968
1141
+ ],
1142
+ "y0": [
1143
+ 0.0,
1144
+ 0.0,
1145
+ 0.009940357852882704,
1146
+ 0.009940357852882704,
1147
+ 0.015748031496062992,
1148
+ 0.015748031496062992,
1149
+ 0.017543859649122806,
1150
+ 0.017543859649122806,
1151
+ 0.0273972602739726,
1152
+ 0.0273972602739726,
1153
+ 0.03409090909090909,
1154
+ 0.03409090909090909,
1155
+ 0.052083333333333336,
1156
+ 0.052083333333333336,
1157
+ 0.07729468599033816,
1158
+ 0.07729468599033816,
1159
+ 0.15384615384615385,
1160
+ 0.15384615384615385,
1161
+ 0.3333333333333333,
1162
+ 0.3333333333333333,
1163
+ 0.4,
1164
+ 0.4,
1165
+ 0.5384615384615384,
1166
+ 0.5384615384615384,
1167
+ 0.6666666666666666,
1168
+ 0.6666666666666666
1169
+ ],
1170
+ "x_min": -1.0141222206150478,
1171
+ "x_max": -0.1375179812524968
1172
+ },
1173
+ {
1174
+ "coef": [
1175
+ [
1176
+ 0.9831658915419729
1177
+ ]
1178
+ ],
1179
+ "intercept": [
1180
+ -1.0452521737820226
1181
+ ],
1182
+ "x0": [
1183
+ -1.0197317856089787,
1184
+ -1.0106337871405584,
1185
+ -1.0105684906936003,
1186
+ -0.976257233222886,
1187
+ -0.976006207427417,
1188
+ -0.9690394559800924,
1189
+ -0.9689020287149608,
1190
+ -0.8663268117362861,
1191
+ -0.8660407790168757,
1192
+ -0.7555911577474677,
1193
+ -0.7547923933586286,
1194
+ -0.5494050491828002,
1195
+ -0.5425996855882222,
1196
+ -0.5244948282512307,
1197
+ -0.5117955849624458,
1198
+ -0.33691397312907523,
1199
+ -0.32905648262519693,
1200
+ -0.24417772352117806,
1201
+ -0.23831191382750316,
1202
+ -0.1743351671030694,
1203
+ -0.1274156045016096,
1204
+ -0.12472867841726454
1205
+ ],
1206
+ "y0": [
1207
+ 0.0,
1208
+ 0.0,
1209
+ 0.013582342954159592,
1210
+ 0.013582342954159592,
1211
+ 0.02564102564102564,
1212
+ 0.02564102564102564,
1213
+ 0.03316326530612245,
1214
+ 0.03316326530612245,
1215
+ 0.06504065040650407,
1216
+ 0.06504065040650407,
1217
+ 0.10666666666666667,
1218
+ 0.10666666666666667,
1219
+ 0.2,
1220
+ 0.2,
1221
+ 0.21739130434782608,
1222
+ 0.21739130434782608,
1223
+ 0.3333333333333333,
1224
+ 0.3333333333333333,
1225
+ 0.625,
1226
+ 0.625,
1227
+ 1.0,
1228
+ 1.0
1229
+ ],
1230
+ "x_min": -1.0197317856089787,
1231
+ "x_max": -0.12472867841726454
1232
+ }
1233
+ ],
1234
+ "Year5": [
1235
+ {
1236
+ "coef": [
1237
+ [
1238
+ 0.9835129805441817
1239
+ ]
1240
+ ],
1241
+ "intercept": [
1242
+ -1.0302159677726066
1243
+ ],
1244
+ "x0": [
1245
+ -1.0055463744434303,
1246
+ -0.9941885454144034,
1247
+ -0.994120694180598,
1248
+ -0.9907155470921931,
1249
+ -0.9906414306383539,
1250
+ -0.9573403499207931,
1251
+ -0.957208450551659,
1252
+ -0.820034147191794,
1253
+ -0.8197111549477559,
1254
+ -0.7879256053092871,
1255
+ -0.7857793827411955,
1256
+ -0.7646687128454774,
1257
+ -0.7645740384094102,
1258
+ -0.694049116458817,
1259
+ -0.6897142876586853,
1260
+ -0.6202326897179415,
1261
+ -0.6162582099942839,
1262
+ -0.5802287541874732,
1263
+ -0.579066339702781,
1264
+ -0.46887587738097525,
1265
+ -0.46370712214723675,
1266
+ -0.43509304887313804,
1267
+ -0.43406071647738276,
1268
+ -0.3573371983298238,
1269
+ -0.3473602714265882,
1270
+ -0.2835079040727152,
1271
+ -0.2585032423794822,
1272
+ -0.13932694501411347,
1273
+ -0.11146211877863754,
1274
+ -0.10834401769231039
1275
+ ],
1276
+ "y0": [
1277
+ 0.0,
1278
+ 0.0,
1279
+ 0.01694915254237288,
1280
+ 0.01694915254237288,
1281
+ 0.019064124783362217,
1282
+ 0.019064124783362217,
1283
+ 0.0397196261682243,
1284
+ 0.0397196261682243,
1285
+ 0.06451612903225806,
1286
+ 0.06451612903225806,
1287
+ 0.10526315789473684,
1288
+ 0.10526315789473684,
1289
+ 0.10869565217391304,
1290
+ 0.10869565217391304,
1291
+ 0.16666666666666666,
1292
+ 0.16666666666666666,
1293
+ 0.1875,
1294
+ 0.1875,
1295
+ 0.26666666666666666,
1296
+ 0.26666666666666666,
1297
+ 0.3333333333333333,
1298
+ 0.3333333333333333,
1299
+ 0.4,
1300
+ 0.4,
1301
+ 0.5,
1302
+ 0.5,
1303
+ 0.6,
1304
+ 0.6,
1305
+ 1.0,
1306
+ 1.0
1307
+ ],
1308
+ "x_min": -1.0055463744434303,
1309
+ "x_max": -0.10834401769231039
1310
+ },
1311
+ {
1312
+ "coef": [
1313
+ [
1314
+ 0.9842763425904458
1315
+ ]
1316
+ ],
1317
+ "intercept": [
1318
+ -1.0285429842903975
1319
+ ],
1320
+ "x0": [
1321
+ -1.0006600964111803,
1322
+ -0.990108674509388,
1323
+ -0.9899641435998948,
1324
+ -0.9843178276693586,
1325
+ -0.9842352605785103,
1326
+ -0.9724723211705615,
1327
+ -0.9723689564716089,
1328
+ -0.9550814837420744,
1329
+ -0.9549486019864858,
1330
+ -0.8554866152619288,
1331
+ -0.8553472800877466,
1332
+ -0.7592701627495976,
1333
+ -0.7562992141651035,
1334
+ -0.6928716428483024,
1335
+ -0.6926555999940177,
1336
+ -0.6587440292992298,
1337
+ -0.6586312411424444,
1338
+ -0.6383575039594009,
1339
+ -0.635882471260112,
1340
+ -0.5898110172464208,
1341
+ -0.5835095179931591,
1342
+ -0.5702040355389904,
1343
+ -0.5656271537374535,
1344
+ -0.41192628842730716,
1345
+ -0.4108023962454932,
1346
+ -0.35265486535345425,
1347
+ -0.3406878219156192,
1348
+ -0.23347987752077448,
1349
+ -0.2291891168327057,
1350
+ -0.13712664186797774
1351
+ ],
1352
+ "y0": [
1353
+ 0.0,
1354
+ 0.0,
1355
+ 0.007575757575757576,
1356
+ 0.007575757575757576,
1357
+ 0.017699115044247787,
1358
+ 0.017699115044247787,
1359
+ 0.019417475728155338,
1360
+ 0.019417475728155338,
1361
+ 0.033591731266149866,
1362
+ 0.033591731266149866,
1363
+ 0.07142857142857142,
1364
+ 0.07142857142857142,
1365
+ 0.08333333333333333,
1366
+ 0.08333333333333333,
1367
+ 0.13333333333333333,
1368
+ 0.13333333333333333,
1369
+ 0.14285714285714285,
1370
+ 0.14285714285714285,
1371
+ 0.1875,
1372
+ 0.1875,
1373
+ 0.2,
1374
+ 0.2,
1375
+ 0.26666666666666666,
1376
+ 0.26666666666666666,
1377
+ 0.42857142857142855,
1378
+ 0.42857142857142855,
1379
+ 0.5384615384615384,
1380
+ 0.5384615384615384,
1381
+ 0.5714285714285714,
1382
+ 0.5714285714285714
1383
+ ],
1384
+ "x_min": -1.0006600964111803,
1385
+ "x_max": -0.13712664186797774
1386
+ },
1387
+ {
1388
+ "coef": [
1389
+ [
1390
+ 0.9595905266726897
1391
+ ]
1392
+ ],
1393
+ "intercept": [
1394
+ -1.024985683505103
1395
+ ],
1396
+ "x0": [
1397
+ -0.9978536439278091,
1398
+ -0.9880738893144022,
1399
+ -0.9880045069280001,
1400
+ -0.9730730877820365,
1401
+ -0.9729771020817284,
1402
+ -0.9569076959767655,
1403
+ -0.956784066709347,
1404
+ -0.9191626482451306,
1405
+ -0.9187942985177034,
1406
+ -0.8481076061856174,
1407
+ -0.8472606899376491,
1408
+ -0.8225804074087435,
1409
+ -0.8222682885504029,
1410
+ -0.7670962327870794,
1411
+ -0.7641390538841377,
1412
+ -0.61026677316237,
1413
+ -0.6068139332687046,
1414
+ -0.4352525150067684,
1415
+ -0.42668912203063725,
1416
+ -0.30248880922419075,
1417
+ -0.2888195246438703,
1418
+ -0.17344513469440215,
1419
+ -0.17214123628619438,
1420
+ -0.1252074139406978
1421
+ ],
1422
+ "y0": [
1423
+ 0.0,
1424
+ 0.0,
1425
+ 0.006230529595015576,
1426
+ 0.006230529595015576,
1427
+ 0.009302325581395349,
1428
+ 0.009302325581395349,
1429
+ 0.026923076923076925,
1430
+ 0.026923076923076925,
1431
+ 0.03932584269662921,
1432
+ 0.03932584269662921,
1433
+ 0.05555555555555555,
1434
+ 0.05555555555555555,
1435
+ 0.125,
1436
+ 0.125,
1437
+ 0.1267605633802817,
1438
+ 0.1267605633802817,
1439
+ 0.22,
1440
+ 0.22,
1441
+ 0.375,
1442
+ 0.375,
1443
+ 0.7142857142857143,
1444
+ 0.7142857142857143,
1445
+ 1.0,
1446
+ 1.0
1447
+ ],
1448
+ "x_min": -0.9978536439278091,
1449
+ "x_max": -0.1252074139406978
1450
+ },
1451
+ {
1452
+ "coef": [
1453
+ [
1454
+ 1.032420898569374
1455
+ ]
1456
+ ],
1457
+ "intercept": [
1458
+ -1.0348125618378043
1459
+ ],
1460
+ "x0": [
1461
+ -1.0039709537873909,
1462
+ -0.9969223503884854,
1463
+ -0.9968509942970936,
1464
+ -0.98437077045209,
1465
+ -0.984276980248636,
1466
+ -0.9689114788288367,
1467
+ -0.9686700688603956,
1468
+ -0.9578969413310684,
1469
+ -0.9577577906068427,
1470
+ -0.951551314468164,
1471
+ -0.951401687055912,
1472
+ -0.8990415002489869,
1473
+ -0.898117628668896,
1474
+ -0.8567711563012819,
1475
+ -0.8551828534742499,
1476
+ -0.8306470501032519,
1477
+ -0.8303269649768574,
1478
+ -0.5526745788865589,
1479
+ -0.5473539290276935,
1480
+ -0.5097495727035086,
1481
+ -0.5083636961041562,
1482
+ -0.4839336595909858,
1483
+ -0.47106711749018215,
1484
+ -0.42481880125215976,
1485
+ -0.3995442913775529,
1486
+ -0.36291280553413974,
1487
+ -0.36108195430266987,
1488
+ -0.3172515530480742,
1489
+ -0.31320579766312573,
1490
+ -0.07328004207679606
1491
+ ],
1492
+ "y0": [
1493
+ 0.0,
1494
+ 0.0,
1495
+ 0.016129032258064516,
1496
+ 0.016129032258064516,
1497
+ 0.01652892561983471,
1498
+ 0.01652892561983471,
1499
+ 0.017094017094017096,
1500
+ 0.017094017094017096,
1501
+ 0.03571428571428571,
1502
+ 0.03571428571428571,
1503
+ 0.04149377593360996,
1504
+ 0.04149377593360996,
1505
+ 0.056179775280898875,
1506
+ 0.056179775280898875,
1507
+ 0.08333333333333333,
1508
+ 0.08333333333333333,
1509
+ 0.09090909090909091,
1510
+ 0.09090909090909091,
1511
+ 0.16666666666666666,
1512
+ 0.16666666666666666,
1513
+ 0.2,
1514
+ 0.2,
1515
+ 0.25,
1516
+ 0.25,
1517
+ 0.3333333333333333,
1518
+ 0.3333333333333333,
1519
+ 0.4,
1520
+ 0.4,
1521
+ 0.5333333333333333,
1522
+ 0.5333333333333333
1523
+ ],
1524
+ "x_min": -1.0039709537873909,
1525
+ "x_max": -0.07328004207679606
1526
+ },
1527
+ {
1528
+ "coef": [
1529
+ [
1530
+ 1.0309350174478271
1531
+ ]
1532
+ ],
1533
+ "intercept": [
1534
+ -1.0344109585131007
1535
+ ],
1536
+ "x0": [
1537
+ -1.0076506100787297,
1538
+ -0.9981105667447703,
1539
+ -0.9980420977363728,
1540
+ -0.9660322640712251,
1541
+ -0.9659074621362416,
1542
+ -0.9544952899236916,
1543
+ -0.9543511854737762,
1544
+ -0.846792141760643,
1545
+ -0.8464922115564802,
1546
+ -0.7306761695130588,
1547
+ -0.7298385955225157,
1548
+ -0.5144720871102059,
1549
+ -0.5073360710050179,
1550
+ -0.4883515521408329,
1551
+ -0.47503529014056733,
1552
+ -0.29165669747603207,
1553
+ -0.2834174347235304,
1554
+ -0.19441466748898795,
1555
+ -0.18826385543283541,
1556
+ -0.121178667604395,
1557
+ -0.08781949750894669,
1558
+ -0.06916194619574512
1559
+ ],
1560
+ "y0": [
1561
+ 0.0,
1562
+ 0.0,
1563
+ 0.015037593984962405,
1564
+ 0.015037593984962405,
1565
+ 0.028037383177570093,
1566
+ 0.028037383177570093,
1567
+ 0.03978779840848806,
1568
+ 0.03978779840848806,
1569
+ 0.09243697478991597,
1570
+ 0.09243697478991597,
1571
+ 0.12162162162162163,
1572
+ 0.12162162162162163,
1573
+ 0.2,
1574
+ 0.2,
1575
+ 0.21739130434782608,
1576
+ 0.21739130434782608,
1577
+ 0.3333333333333333,
1578
+ 0.3333333333333333,
1579
+ 0.625,
1580
+ 0.625,
1581
+ 1.0,
1582
+ 1.0
1583
+ ],
1584
+ "x_min": -1.0076506100787297,
1585
+ "x_max": -0.06916194619574512
1586
+ }
1587
+ ],
1588
+ "Year6": [
1589
+ {
1590
+ "coef": [
1591
+ [
1592
+ 1.204185884229785
1593
+ ]
1594
+ ],
1595
+ "intercept": [
1596
+ -1.017819324091
1597
+ ],
1598
+ "x0": [
1599
+ -0.9876145615262533,
1600
+ -0.9737912703419037,
1601
+ -0.9736252770303713,
1602
+ -0.9695466944587208,
1603
+ -0.9693653637115175,
1604
+ -0.9520700476300906,
1605
+ -0.9519485369193516,
1606
+ -0.9285924485360659,
1607
+ -0.9284309546243515,
1608
+ -0.7604785604489264,
1609
+ -0.7600830977466737,
1610
+ -0.7211657565887044,
1611
+ -0.7185379814885919,
1612
+ -0.6062259998482871,
1613
+ -0.6009185562710979,
1614
+ -0.5197020837812524,
1615
+ -0.5109809818982448,
1616
+ -0.46686752029956147,
1617
+ -0.46544429239939067,
1618
+ -0.3305301611885807,
1619
+ -0.32420168132646143,
1620
+ -0.216410452588081,
1621
+ -0.18174983973015102,
1622
+ -0.07977562169172225,
1623
+ -0.07295576968756012,
1624
+ 0.07296036752777524,
1625
+ 0.10707728421626683,
1626
+ 0.11089500028919463
1627
+ ],
1628
+ "y0": [
1629
+ 0.0,
1630
+ 0.0,
1631
+ 0.025,
1632
+ 0.025,
1633
+ 0.029661016949152543,
1634
+ 0.029661016949152543,
1635
+ 0.031413612565445025,
1636
+ 0.031413612565445025,
1637
+ 0.06031746031746032,
1638
+ 0.06031746031746032,
1639
+ 0.10714285714285714,
1640
+ 0.10714285714285714,
1641
+ 0.14893617021276595,
1642
+ 0.14893617021276595,
1643
+ 0.21052631578947367,
1644
+ 0.21052631578947367,
1645
+ 0.3,
1646
+ 0.3,
1647
+ 0.3333333333333333,
1648
+ 0.3333333333333333,
1649
+ 0.45454545454545453,
1650
+ 0.45454545454545453,
1651
+ 0.5,
1652
+ 0.5,
1653
+ 0.6,
1654
+ 0.6,
1655
+ 1.0,
1656
+ 1.0
1657
+ ],
1658
+ "x_min": -0.9876145615262533,
1659
+ "x_max": 0.11089500028919463
1660
+ },
1661
+ {
1662
+ "coef": [
1663
+ [
1664
+ 1.180720670609817
1665
+ ]
1666
+ ],
1667
+ "intercept": [
1668
+ -1.0137137740059226
1669
+ ],
1670
+ "x0": [
1671
+ -0.9784419927097185,
1672
+ -0.9705436672731664,
1673
+ -0.9704623648953034,
1674
+ -0.9606620502938708,
1675
+ -0.9605630042570432,
1676
+ -0.9255906439069694,
1677
+ -0.9254312412790883,
1678
+ -0.8983168366823797,
1679
+ -0.8981133256231411,
1680
+ -0.8061183831070324,
1681
+ -0.8059512390711746,
1682
+ -0.6110483088084919,
1683
+ -0.6107891475823671,
1684
+ -0.5701094210059836,
1685
+ -0.5699741223074839,
1686
+ -0.5285858457719355,
1687
+ -0.523064251344427,
1688
+ -0.46389839440216907,
1689
+ -0.45840804711231165,
1690
+ -0.3814100680253273,
1691
+ -0.3797612185027536,
1692
+ -0.2740311796518108,
1693
+ -0.2726829782644725,
1694
+ -0.20293021809098055,
1695
+ -0.18857476226853298,
1696
+ 0.05561366593590811
1697
+ ],
1698
+ "y0": [
1699
+ 0.0,
1700
+ 0.0,
1701
+ 0.015503875968992248,
1702
+ 0.015503875968992248,
1703
+ 0.03164556962025317,
1704
+ 0.03164556962025317,
1705
+ 0.043795620437956206,
1706
+ 0.043795620437956206,
1707
+ 0.047619047619047616,
1708
+ 0.047619047619047616,
1709
+ 0.11607142857142858,
1710
+ 0.11607142857142858,
1711
+ 0.18181818181818182,
1712
+ 0.18181818181818182,
1713
+ 0.2857142857142857,
1714
+ 0.2857142857142857,
1715
+ 0.3,
1716
+ 0.3,
1717
+ 0.3333333333333333,
1718
+ 0.3333333333333333,
1719
+ 0.35714285714285715,
1720
+ 0.35714285714285715,
1721
+ 0.6,
1722
+ 0.6,
1723
+ 0.6666666666666666,
1724
+ 0.6666666666666666
1725
+ ],
1726
+ "x_min": -0.9784419927097185,
1727
+ "x_max": 0.05561366593590811
1728
+ },
1729
+ {
1730
+ "coef": [
1731
+ [
1732
+ 1.1790067493412748
1733
+ ]
1734
+ ],
1735
+ "intercept": [
1736
+ -1.0114306895427374
1737
+ ],
1738
+ "x0": [
1739
+ -0.9780947437451656,
1740
+ -0.966078788631385,
1741
+ -0.9659935415394436,
1742
+ -0.9506432366170191,
1743
+ -0.9504176386145214,
1744
+ -0.937401788125427,
1745
+ -0.9372661675522409,
1746
+ -0.9277862552278302,
1747
+ -0.9276343573748908,
1748
+ -0.883875179063915,
1749
+ -0.8829837498413673,
1750
+ -0.7963497598769761,
1751
+ -0.7953175010003499,
1752
+ -0.7627442133982206,
1753
+ -0.7623607266605429,
1754
+ -0.757725206860447,
1755
+ -0.7516454627946922,
1756
+ -0.6945732440709205,
1757
+ -0.6909398881876907,
1758
+ -0.5018837726208271,
1759
+ -0.4976414198402699,
1760
+ -0.3603029567796515,
1761
+ -0.359484542532447,
1762
+ -0.2868514376186362,
1763
+ -0.2859653492412533,
1764
+ -0.1237305013084663,
1765
+ -0.10693565149398743,
1766
+ 0.03481979592921647,
1767
+ 0.03642183865577686,
1768
+ 0.09408736554420494
1769
+ ],
1770
+ "y0": [
1771
+ 0.0,
1772
+ 0.0,
1773
+ 0.009900990099009901,
1774
+ 0.009900990099009901,
1775
+ 0.02631578947368421,
1776
+ 0.02631578947368421,
1777
+ 0.028169014084507043,
1778
+ 0.028169014084507043,
1779
+ 0.041025641025641026,
1780
+ 0.041025641025641026,
1781
+ 0.05714285714285714,
1782
+ 0.05714285714285714,
1783
+ 0.10526315789473684,
1784
+ 0.10526315789473684,
1785
+ 0.14285714285714285,
1786
+ 0.14285714285714285,
1787
+ 0.14705882352941177,
1788
+ 0.14705882352941177,
1789
+ 0.19607843137254902,
1790
+ 0.19607843137254902,
1791
+ 0.23333333333333334,
1792
+ 0.23333333333333334,
1793
+ 0.25,
1794
+ 0.25,
1795
+ 0.4666666666666667,
1796
+ 0.4666666666666667,
1797
+ 0.8333333333333334,
1798
+ 0.8333333333333334,
1799
+ 1.0,
1800
+ 1.0
1801
+ ],
1802
+ "x_min": -0.9780947437451656,
1803
+ "x_max": 0.09408736554420494
1804
+ },
1805
+ {
1806
+ "coef": [
1807
+ [
1808
+ 1.258461735868099
1809
+ ]
1810
+ ],
1811
+ "intercept": [
1812
+ -1.023750690903164
1813
+ ],
1814
+ "x0": [
1815
+ -0.9861565433438981,
1816
+ -0.9775647009266011,
1817
+ -0.9774777219524615,
1818
+ -0.9567927173367432,
1819
+ -0.9565446446575758,
1820
+ -0.9493736635331326,
1821
+ -0.9492368496808006,
1822
+ -0.929994970312455,
1823
+ -0.9298253535774597,
1824
+ -0.9222600158882199,
1825
+ -0.9220776286726793,
1826
+ -0.8586742086636645,
1827
+ -0.858393895678069,
1828
+ -0.815358088837124,
1829
+ -0.8145076798470406,
1830
+ -0.4394540995742894,
1831
+ -0.42956663471042555,
1832
+ -0.38372908570157394,
1833
+ -0.3820397817816933,
1834
+ -0.3522609714144411,
1835
+ -0.33657739611173787,
1836
+ -0.23911046323458485,
1837
+ -0.21428637428839759,
1838
+ -0.20558174471215862,
1839
+ -0.20251180370026056,
1840
+ 0.10886956701443729,
1841
+ 0.11429272691423975
1842
+ ],
1843
+ "y0": [
1844
+ 0.0,
1845
+ 0.0,
1846
+ 0.02608695652173913,
1847
+ 0.02608695652173913,
1848
+ 0.038461538461538464,
1849
+ 0.038461538461538464,
1850
+ 0.04316546762589928,
1851
+ 0.04316546762589928,
1852
+ 0.047619047619047616,
1853
+ 0.047619047619047616,
1854
+ 0.05813953488372093,
1855
+ 0.05813953488372093,
1856
+ 0.0967741935483871,
1857
+ 0.0967741935483871,
1858
+ 0.1111111111111111,
1859
+ 0.1111111111111111,
1860
+ 0.2222222222222222,
1861
+ 0.2222222222222222,
1862
+ 0.25,
1863
+ 0.25,
1864
+ 0.2857142857142857,
1865
+ 0.2857142857142857,
1866
+ 0.5,
1867
+ 0.5,
1868
+ 0.6,
1869
+ 0.6,
1870
+ 1.0
1871
+ ],
1872
+ "x_min": -0.9861565433438981,
1873
+ "x_max": 0.11429272691423975
1874
+ },
1875
+ {
1876
+ "coef": [
1877
+ [
1878
+ 1.2375206717704992
1879
+ ]
1880
+ ],
1881
+ "intercept": [
1882
+ -1.020609677668493
1883
+ ],
1884
+ "x0": [
1885
+ -0.9884869116251993,
1886
+ -0.9771172031403683,
1887
+ -0.9769529813120499,
1888
+ -0.9570413266599386,
1889
+ -0.9568053528655333,
1890
+ -0.9385288030756557,
1891
+ -0.9383789924941881,
1892
+ -0.9246799728820717,
1893
+ -0.9245069918186232,
1894
+ -0.9217001917337763,
1895
+ -0.9215223054986549,
1896
+ -0.7953945475053179,
1897
+ -0.7950345152807275,
1898
+ -0.6560104800838356,
1899
+ -0.6550050674148582,
1900
+ -0.4217075051694523,
1901
+ -0.41171493285202576,
1902
+ -0.1290173498082059,
1903
+ -0.11912704847610911,
1904
+ 0.07562220795086128,
1905
+ 0.11566611167665042,
1906
+ 0.13806238791515169
1907
+ ],
1908
+ "y0": [
1909
+ 0.0,
1910
+ 0.0,
1911
+ 0.021929824561403508,
1912
+ 0.021929824561403508,
1913
+ 0.025477707006369428,
1914
+ 0.025477707006369428,
1915
+ 0.0375,
1916
+ 0.0375,
1917
+ 0.05263157894736842,
1918
+ 0.05263157894736842,
1919
+ 0.053846153846153856,
1920
+ 0.053846153846153856,
1921
+ 0.15730337078651685,
1922
+ 0.15730337078651685,
1923
+ 0.1836734693877551,
1924
+ 0.1836734693877551,
1925
+ 0.25,
1926
+ 0.25,
1927
+ 0.6363636363636364,
1928
+ 0.6363636363636364,
1929
+ 1.0,
1930
+ 1.0
1931
+ ],
1932
+ "x_min": -0.9884869116251993,
1933
+ "x_max": 0.13806238791515169
1934
+ }
1935
+ ]
1936
+ }
checkpoints/sybil_4_simple_calibrator.json ADDED
@@ -0,0 +1,1878 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.8423033376667796
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.1356609940834816
11
+ ],
12
+ "x0": [
13
+ -1.1147336002334625,
14
+ -1.0801997837244675,
15
+ -1.0799970614379104,
16
+ -1.0378181113693672,
17
+ -1.0373102858600278,
18
+ -0.9216771810805804,
19
+ -0.9213652813300345,
20
+ -0.7864399092982439,
21
+ -0.786340051172878,
22
+ -0.727023973269179,
23
+ -0.7263112854770062,
24
+ -0.6022329458322491,
25
+ -0.6005156772660644,
26
+ -0.5509348377895055,
27
+ -0.5414322000133561,
28
+ -0.4380271782970768,
29
+ -0.4365123872671418,
30
+ -0.3843269526745151
31
+ ],
32
+ "y0": [
33
+ 0.0,
34
+ 0.0,
35
+ 0.002890173410404624,
36
+ 0.002890173410404624,
37
+ 0.007662835249042145,
38
+ 0.007662835249042145,
39
+ 0.01904761904761905,
40
+ 0.01904761904761905,
41
+ 0.1,
42
+ 0.1,
43
+ 0.15384615384615385,
44
+ 0.15384615384615385,
45
+ 0.2727272727272727,
46
+ 0.2727272727272727,
47
+ 0.4444444444444444,
48
+ 0.4444444444444444,
49
+ 0.5,
50
+ 0.5
51
+ ],
52
+ "x_min": -1.1147336002334625,
53
+ "x_max": -0.3843269526745151
54
+ },
55
+ {
56
+ "coef": [
57
+ [
58
+ 0.8360936422868085
59
+ ]
60
+ ],
61
+ "intercept": [
62
+ -1.1356986096082622
63
+ ],
64
+ "x0": [
65
+ -1.1131117169129112,
66
+ -1.0843423577477067,
67
+ -1.0842481352141051,
68
+ -1.0510579386198102,
69
+ -1.050611161036759,
70
+ -0.9888141423402812,
71
+ -0.9884590675053805,
72
+ -0.9114799645878594,
73
+ -0.9101956900569389,
74
+ -0.73378237724005,
75
+ -0.7326102814394259,
76
+ -0.6511661311611776,
77
+ -0.6448651351049894,
78
+ -0.5412950633637628,
79
+ -0.5390360897228905,
80
+ -0.43749315890226126,
81
+ -0.4223599441913899,
82
+ -0.40488821907662864
83
+ ],
84
+ "y0": [
85
+ 0.0,
86
+ 0.0,
87
+ 0.0029940119760479044,
88
+ 0.0029940119760479044,
89
+ 0.00423728813559322,
90
+ 0.00423728813559322,
91
+ 0.008130081300813009,
92
+ 0.008130081300813009,
93
+ 0.046296296296296294,
94
+ 0.046296296296296294,
95
+ 0.11764705882352941,
96
+ 0.11764705882352941,
97
+ 0.25,
98
+ 0.25,
99
+ 0.2857142857142857,
100
+ 0.2857142857142857,
101
+ 0.625,
102
+ 0.625
103
+ ],
104
+ "x_min": -1.1131117169129112,
105
+ "x_max": -0.40488821907662864
106
+ },
107
+ {
108
+ "coef": [
109
+ [
110
+ 0.8301483610578962
111
+ ]
112
+ ],
113
+ "intercept": [
114
+ -1.1359810592774804
115
+ ],
116
+ "x0": [
117
+ -1.1166868125135183,
118
+ -1.0872774183600151,
119
+ -1.0871877964454515,
120
+ -1.019871817728247,
121
+ -1.0197742541616268,
122
+ -0.8590338063369052,
123
+ -0.8578610890498861,
124
+ -0.6425618627018166,
125
+ -0.6405116299730711,
126
+ -0.5890323074407899,
127
+ -0.586396173764993,
128
+ -0.3861128548910979,
129
+ -0.37194465073800154,
130
+ -0.36558811284737036
131
+ ],
132
+ "y0": [
133
+ 0.0,
134
+ 0.0,
135
+ 0.003937007874015748,
136
+ 0.003937007874015748,
137
+ 0.01107011070110701,
138
+ 0.01107011070110701,
139
+ 0.07317073170731707,
140
+ 0.07317073170731707,
141
+ 0.14285714285714285,
142
+ 0.14285714285714285,
143
+ 0.5454545454545454,
144
+ 0.5454545454545454,
145
+ 1.0,
146
+ 1.0
147
+ ],
148
+ "x_min": -1.1166868125135183,
149
+ "x_max": -0.36558811284737036
150
+ },
151
+ {
152
+ "coef": [
153
+ [
154
+ 0.8576612884287872
155
+ ]
156
+ ],
157
+ "intercept": [
158
+ -1.1444322403873861
159
+ ],
160
+ "x0": [
161
+ -1.1235651787546315,
162
+ -1.0488592245075605,
163
+ -1.048526998141408,
164
+ -0.9777305058843256,
165
+ -0.9769421623865616,
166
+ -0.8965936588842203,
167
+ -0.8965076229204212,
168
+ -0.7277887208026557,
169
+ -0.7271872103047103,
170
+ -0.6817249993278431,
171
+ -0.6575919370424944,
172
+ -0.46094020426670923,
173
+ -0.4555811810218945,
174
+ -0.378595147530175
175
+ ],
176
+ "y0": [
177
+ 0.0,
178
+ 0.0,
179
+ 0.009216589861751152,
180
+ 0.009216589861751152,
181
+ 0.01904761904761905,
182
+ 0.01904761904761905,
183
+ 0.07228915662650602,
184
+ 0.07228915662650602,
185
+ 0.1,
186
+ 0.1,
187
+ 0.15,
188
+ 0.15,
189
+ 0.625,
190
+ 0.625
191
+ ],
192
+ "x_min": -1.1235651787546315,
193
+ "x_max": -0.378595147530175
194
+ },
195
+ {
196
+ "coef": [
197
+ [
198
+ 0.9032798137184733
199
+ ]
200
+ ],
201
+ "intercept": [
202
+ -1.1589002915315556
203
+ ],
204
+ "x0": [
205
+ -1.138731152739328,
206
+ -1.1136899610395719,
207
+ -1.113606004800377,
208
+ -1.0153184322101556,
209
+ -1.013421499031448,
210
+ -0.8823954551181439,
211
+ -0.8804242231914837,
212
+ -0.7697080785289945,
213
+ -0.7636402666866844,
214
+ -0.7357257425238146,
215
+ -0.7313714051764088,
216
+ -0.7236961829938807,
217
+ -0.7147369115437461,
218
+ -0.6668468728756027,
219
+ -0.6588483972998082,
220
+ -0.3795372218006827
221
+ ],
222
+ "y0": [
223
+ 0.0,
224
+ 0.0,
225
+ 0.004137931034482759,
226
+ 0.004137931034482759,
227
+ 0.006535947712418301,
228
+ 0.006535947712418301,
229
+ 0.034482758620689655,
230
+ 0.034482758620689655,
231
+ 0.08333333333333333,
232
+ 0.08333333333333333,
233
+ 0.16666666666666666,
234
+ 0.16666666666666666,
235
+ 0.1875,
236
+ 0.1875,
237
+ 0.2903225806451613,
238
+ 0.2903225806451613
239
+ ],
240
+ "x_min": -1.138731152739328,
241
+ "x_max": -0.3795372218006827
242
+ }
243
+ ],
244
+ "Year2": [
245
+ {
246
+ "coef": [
247
+ [
248
+ 0.9513716918568862
249
+ ]
250
+ ],
251
+ "intercept": [
252
+ -1.0949656196455264
253
+ ],
254
+ "x0": [
255
+ -1.0713283749583582,
256
+ -1.03642131025773,
257
+ -1.0363139123125855,
258
+ -0.9844532368717247,
259
+ -0.9838796539445495,
260
+ -0.9219647297083793,
261
+ -0.9214111357067432,
262
+ -0.7363297897662625,
263
+ -0.7342544856459167,
264
+ -0.7005245205700474,
265
+ -0.7004117319944516,
266
+ -0.6334149211473343,
267
+ -0.6326099486863638,
268
+ -0.5304467203738823,
269
+ -0.5282630224062507,
270
+ -0.5103384850493077,
271
+ -0.5017934320294315,
272
+ -0.3069964475657945,
273
+ -0.3052855089519799,
274
+ -0.24634267567744872
275
+ ],
276
+ "y0": [
277
+ 0.0,
278
+ 0.0,
279
+ 0.007371007371007371,
280
+ 0.007371007371007371,
281
+ 0.017543859649122806,
282
+ 0.017543859649122806,
283
+ 0.03314917127071823,
284
+ 0.03314917127071823,
285
+ 0.07142857142857142,
286
+ 0.07142857142857142,
287
+ 0.15789473684210525,
288
+ 0.15789473684210525,
289
+ 0.16666666666666666,
290
+ 0.16666666666666666,
291
+ 0.2,
292
+ 0.2,
293
+ 0.47619047619047616,
294
+ 0.47619047619047616,
295
+ 0.75,
296
+ 0.75
297
+ ],
298
+ "x_min": -1.0713283749583582,
299
+ "x_max": -0.24634267567744872
300
+ },
301
+ {
302
+ "coef": [
303
+ [
304
+ 1.0024598007562044
305
+ ]
306
+ ],
307
+ "intercept": [
308
+ -1.108145387593647
309
+ ],
310
+ "x0": [
311
+ -1.0810641483569106,
312
+ -1.049332475997934,
313
+ -1.049224251527669,
314
+ -0.9337285757046692,
315
+ -0.9334470128281995,
316
+ -0.8393116507430618,
317
+ -0.8377718308888388,
318
+ -0.698982589300139,
319
+ -0.6967933329974362,
320
+ -0.679098296008287,
321
+ -0.6742983876394344,
322
+ -0.5307230700986475,
323
+ -0.5196457241956088,
324
+ -0.39546724916493714,
325
+ -0.39275878428563427,
326
+ -0.2710108112712303,
327
+ -0.2528663850531715,
328
+ -0.23191813094433023
329
+ ],
330
+ "y0": [
331
+ 0.0,
332
+ 0.0,
333
+ 0.011705685618729096,
334
+ 0.011705685618729096,
335
+ 0.016129032258064516,
336
+ 0.016129032258064516,
337
+ 0.07865168539325842,
338
+ 0.07865168539325842,
339
+ 0.16666666666666666,
340
+ 0.16666666666666666,
341
+ 0.1875,
342
+ 0.1875,
343
+ 0.25,
344
+ 0.25,
345
+ 0.2857142857142857,
346
+ 0.2857142857142857,
347
+ 0.625,
348
+ 0.625
349
+ ],
350
+ "x_min": -1.0810641483569106,
351
+ "x_max": -0.23191813094433023
352
+ },
353
+ {
354
+ "coef": [
355
+ [
356
+ 0.946735328503289
357
+ ]
358
+ ],
359
+ "intercept": [
360
+ -1.096154948038966
361
+ ],
362
+ "x0": [
363
+ -1.0741509956068667,
364
+ -1.0579887924675622,
365
+ -1.0579171900759643,
366
+ -1.0383216236919424,
367
+ -1.0382154791949703,
368
+ -0.9876908044421,
369
+ -0.9865602541004452,
370
+ -0.9637391943051407,
371
+ -0.9636279288017355,
372
+ -0.7803129120965583,
373
+ -0.7789754970776903,
374
+ -0.6106480438441179,
375
+ -0.5964216904692208,
376
+ -0.5509431468278928,
377
+ -0.5334394057657809,
378
+ -0.47239209969135665,
379
+ -0.4693857444437791,
380
+ -0.24097441150303778,
381
+ -0.22481640885867915,
382
+ -0.2175671516531824
383
+ ],
384
+ "y0": [
385
+ 0.0,
386
+ 0.0,
387
+ 0.005390835579514825,
388
+ 0.005390835579514825,
389
+ 0.010178117048346057,
390
+ 0.010178117048346057,
391
+ 0.0125,
392
+ 0.0125,
393
+ 0.01845018450184502,
394
+ 0.01845018450184502,
395
+ 0.09722222222222222,
396
+ 0.09722222222222222,
397
+ 0.14285714285714285,
398
+ 0.14285714285714285,
399
+ 0.5,
400
+ 0.5,
401
+ 0.6363636363636364,
402
+ 0.6363636363636364,
403
+ 1.0,
404
+ 1.0
405
+ ],
406
+ "x_min": -1.0741509956068667,
407
+ "x_max": -0.2175671516531824
408
+ },
409
+ {
410
+ "coef": [
411
+ [
412
+ 0.9896424144559758
413
+ ]
414
+ ],
415
+ "intercept": [
416
+ -1.1089717455219388
417
+ ],
418
+ "x0": [
419
+ -1.0848935580889105,
420
+ -1.0759802088767578,
421
+ -1.0757928357673268,
422
+ -1.0490692953537848,
423
+ -1.0489592877547702,
424
+ -1.0154402167635792,
425
+ -1.0152746763228488,
426
+ -0.9986914851578228,
427
+ -0.9983081341688239,
428
+ -0.9166171304152714,
429
+ -0.9157074727531224,
430
+ -0.879067771639477,
431
+ -0.8785502761919592,
432
+ -0.862469885267183,
433
+ -0.862108160491389,
434
+ -0.82299454740977,
435
+ -0.8228952718098416,
436
+ -0.7156180172360453,
437
+ -0.7120830272464358,
438
+ -0.70106567717119,
439
+ -0.6996600396735695,
440
+ -0.32030060224687285,
441
+ -0.3141169062182926,
442
+ -0.22528388426424173
443
+ ],
444
+ "y0": [
445
+ 0.0,
446
+ 0.0,
447
+ 0.002136752136752137,
448
+ 0.002136752136752137,
449
+ 0.009836065573770493,
450
+ 0.009836065573770493,
451
+ 0.01098901098901099,
452
+ 0.01098901098901099,
453
+ 0.013824884792626729,
454
+ 0.013824884792626729,
455
+ 0.02040816326530612,
456
+ 0.02040816326530612,
457
+ 0.047619047619047616,
458
+ 0.047619047619047616,
459
+ 0.058823529411764705,
460
+ 0.058823529411764705,
461
+ 0.10344827586206896,
462
+ 0.10344827586206896,
463
+ 0.16666666666666666,
464
+ 0.16666666666666666,
465
+ 0.1836734693877551,
466
+ 0.1836734693877551,
467
+ 0.75,
468
+ 0.75
469
+ ],
470
+ "x_min": -1.0848935580889105,
471
+ "x_max": -0.22528388426424173
472
+ },
473
+ {
474
+ "coef": [
475
+ [
476
+ 0.9725774284418874
477
+ ]
478
+ ],
479
+ "intercept": [
480
+ -1.1039220101055847
481
+ ],
482
+ "x0": [
483
+ -1.0822055399237922,
484
+ -1.0552432437907584,
485
+ -1.0551528466159543,
486
+ -1.0444010247604323,
487
+ -1.0442917945389496,
488
+ -1.0364100884181544,
489
+ -1.0362872786932182,
490
+ -0.9940295016020857,
491
+ -0.9938389755165449,
492
+ -0.951847513212458,
493
+ -0.9517221817867738,
494
+ -0.8062043387190787,
495
+ -0.8040818782710794,
496
+ -0.7555051104037513,
497
+ -0.7527709201363568,
498
+ -0.6941618122160149,
499
+ -0.6931194222849603,
500
+ -0.6482824525672393,
501
+ -0.6435940601603785,
502
+ -0.5741193495076586,
503
+ -0.5655072487069802,
504
+ -0.3149401639969226,
505
+ -0.30275733493702006,
506
+ -0.28965967922183444,
507
+ -0.26476794215286936
508
+ ],
509
+ "y0": [
510
+ 0.0,
511
+ 0.0,
512
+ 0.005847953216374269,
513
+ 0.005847953216374269,
514
+ 0.009615384615384616,
515
+ 0.009615384615384616,
516
+ 0.010238907849829351,
517
+ 0.010238907849829351,
518
+ 0.013422818791946308,
519
+ 0.013422818791946308,
520
+ 0.03125,
521
+ 0.03125,
522
+ 0.034482758620689655,
523
+ 0.034482758620689655,
524
+ 0.043478260869565216,
525
+ 0.043478260869565216,
526
+ 0.058823529411764705,
527
+ 0.058823529411764705,
528
+ 0.22727272727272727,
529
+ 0.22727272727272727,
530
+ 0.4444444444444444,
531
+ 0.4444444444444444,
532
+ 0.5,
533
+ 0.5,
534
+ 1.0
535
+ ],
536
+ "x_min": -1.0822055399237922,
537
+ "x_max": -0.26476794215286936
538
+ }
539
+ ],
540
+ "Year3": [
541
+ {
542
+ "coef": [
543
+ [
544
+ 0.9868928130607569
545
+ ]
546
+ ],
547
+ "intercept": [
548
+ -1.065474968912233
549
+ ],
550
+ "x0": [
551
+ -1.0409551864738946,
552
+ -1.0212148968358639,
553
+ -1.0211322499651105,
554
+ -1.0075753506679874,
555
+ -1.0074688067927904,
556
+ -0.9508364136060377,
557
+ -0.9502414149600101,
558
+ -0.8918188640822152,
559
+ -0.8916790702826815,
560
+ -0.6934488449026823,
561
+ -0.6912960556838996,
562
+ -0.6563067235405451,
563
+ -0.6561897238067885,
564
+ -0.5866914701915682,
565
+ -0.5858564426799833,
566
+ -0.47987877207693563,
567
+ -0.47761354193755157,
568
+ -0.45919099562440757,
569
+ -0.4501556632439372,
570
+ -0.2480855936606703,
571
+ -0.2463107741700189,
572
+ -0.18516720742531512
573
+ ],
574
+ "y0": [
575
+ 0.0,
576
+ 0.0,
577
+ 0.004464285714285714,
578
+ 0.004464285714285714,
579
+ 0.01583710407239819,
580
+ 0.01583710407239819,
581
+ 0.01935483870967742,
582
+ 0.01935483870967742,
583
+ 0.06315789473684211,
584
+ 0.06315789473684211,
585
+ 0.14285714285714285,
586
+ 0.14285714285714285,
587
+ 0.15789473684210525,
588
+ 0.15789473684210525,
589
+ 0.16666666666666666,
590
+ 0.16666666666666666,
591
+ 0.25,
592
+ 0.25,
593
+ 0.5,
594
+ 0.5,
595
+ 0.75,
596
+ 0.75
597
+ ],
598
+ "x_min": -1.0409551864738946,
599
+ "x_max": -0.18516720742531512
600
+ },
601
+ {
602
+ "coef": [
603
+ [
604
+ 1.0201403904694897
605
+ ]
606
+ ],
607
+ "intercept": [
608
+ -1.0717679161421951
609
+ ],
610
+ "x0": [
611
+ -1.0442090395183927,
612
+ -1.0366510637012356,
613
+ -1.0364518433733918,
614
+ -1.0255019155457252,
615
+ -1.0254155760960995,
616
+ -0.9972646287581616,
617
+ -0.9971296262224644,
618
+ -0.9684955519180218,
619
+ -0.9679504265457247,
620
+ -0.8549281536553541,
621
+ -0.8529204450749905,
622
+ -0.79819270337531,
623
+ -0.796625725401575,
624
+ -0.6553886294098391,
625
+ -0.6531607607433925,
626
+ -0.5904489286471835,
627
+ -0.5872048546534809,
628
+ -0.4841614824569783,
629
+ -0.47288876312562267,
630
+ -0.25022222978493325,
631
+ -0.24897566431513096,
632
+ -0.1800864591262129
633
+ ],
634
+ "y0": [
635
+ 0.0,
636
+ 0.0,
637
+ 0.005128205128205128,
638
+ 0.005128205128205128,
639
+ 0.01084010840108401,
640
+ 0.01084010840108401,
641
+ 0.023809523809523808,
642
+ 0.023809523809523808,
643
+ 0.026845637583892617,
644
+ 0.026845637583892617,
645
+ 0.03389830508474576,
646
+ 0.03389830508474576,
647
+ 0.07954545454545454,
648
+ 0.07954545454545454,
649
+ 0.13333333333333333,
650
+ 0.13333333333333333,
651
+ 0.14285714285714285,
652
+ 0.14285714285714285,
653
+ 0.3333333333333333,
654
+ 0.3333333333333333,
655
+ 0.6666666666666666,
656
+ 0.6666666666666666
657
+ ],
658
+ "x_min": -1.0442090395183927,
659
+ "x_max": -0.1800864591262129
660
+ },
661
+ {
662
+ "coef": [
663
+ [
664
+ 1.024096500003324
665
+ ]
666
+ ],
667
+ "intercept": [
668
+ -1.0740705892333886
669
+ ],
670
+ "x0": [
671
+ -1.050268614179202,
672
+ -1.0327857389035202,
673
+ -1.0327082856212568,
674
+ -1.0166910941103804,
675
+ -1.0165852072101134,
676
+ -0.9661364074292456,
677
+ -0.9659476689414053,
678
+ -0.9567434477512878,
679
+ -0.9559293756804333,
680
+ -0.9170812173609457,
681
+ -0.9168214272560788,
682
+ -0.722906365204481,
683
+ -0.7207624864302484,
684
+ -0.6275424596868616,
685
+ -0.6201203430689046,
686
+ -0.4843075577180517,
687
+ -0.4653735225986355,
688
+ -0.38257049306769253,
689
+ -0.3663373960498152,
690
+ -0.14901015473797685
691
+ ],
692
+ "y0": [
693
+ 0.0,
694
+ 0.0,
695
+ 0.009900990099009901,
696
+ 0.009900990099009901,
697
+ 0.014778325123152709,
698
+ 0.014778325123152709,
699
+ 0.019230769230769232,
700
+ 0.019230769230769232,
701
+ 0.024793388429752067,
702
+ 0.024793388429752067,
703
+ 0.05439330543933055,
704
+ 0.05439330543933055,
705
+ 0.1,
706
+ 0.1,
707
+ 0.1935483870967742,
708
+ 0.1935483870967742,
709
+ 0.5,
710
+ 0.5,
711
+ 0.5714285714285714,
712
+ 0.5714285714285714
713
+ ],
714
+ "x_min": -1.050268614179202,
715
+ "x_max": -0.14901015473797685
716
+ },
717
+ {
718
+ "coef": [
719
+ [
720
+ 0.9548706913354666
721
+ ]
722
+ ],
723
+ "intercept": [
724
+ -1.0604953352519118
725
+ ],
726
+ "x0": [
727
+ -1.0372631504299632,
728
+ -1.0286629774786036,
729
+ -1.028482187843957,
730
+ -1.011355048510595,
731
+ -1.0111726581492133,
732
+ -1.0026975962208933,
733
+ -1.0025914538096659,
734
+ -0.9702500969490915,
735
+ -0.9700903728782804,
736
+ -0.9540898428070211,
737
+ -0.9537199611017279,
738
+ -0.8748992233376505,
739
+ -0.8740215270828751,
740
+ -0.8473608470461125,
741
+ -0.8465513630932807,
742
+ -0.8226544764945308,
743
+ -0.8223054611515238,
744
+ -0.7845661300372602,
745
+ -0.7844703425494244,
746
+ -0.7411094867999711,
747
+ -0.7405903391052036,
748
+ -0.6139637764498954,
749
+ -0.6085335706740997,
750
+ -0.4627368469245826,
751
+ -0.4557787368085051,
752
+ -0.3848223481515548,
753
+ -0.38069244471731545,
754
+ -0.2995346601484946,
755
+ -0.2935682322594224,
756
+ -0.20785641570059754,
757
+ -0.18166932311854744,
758
+ -0.1743577725393327
759
+ ],
760
+ "y0": [
761
+ 0.0,
762
+ 0.0,
763
+ 0.006024096385542169,
764
+ 0.006024096385542169,
765
+ 0.007518796992481203,
766
+ 0.007518796992481203,
767
+ 0.009966777408637873,
768
+ 0.009966777408637873,
769
+ 0.011111111111111112,
770
+ 0.011111111111111112,
771
+ 0.018779342723004695,
772
+ 0.018779342723004695,
773
+ 0.030303030303030304,
774
+ 0.030303030303030304,
775
+ 0.05555555555555555,
776
+ 0.05555555555555555,
777
+ 0.058823529411764705,
778
+ 0.058823529411764705,
779
+ 0.1388888888888889,
780
+ 0.1388888888888889,
781
+ 0.1590909090909091,
782
+ 0.1590909090909091,
783
+ 0.2,
784
+ 0.2,
785
+ 0.2727272727272727,
786
+ 0.2727272727272727,
787
+ 0.4,
788
+ 0.4,
789
+ 0.75,
790
+ 0.75,
791
+ 1.0,
792
+ 1.0
793
+ ],
794
+ "x_min": -1.0372631504299632,
795
+ "x_max": -0.1743577725393327
796
+ },
797
+ {
798
+ "coef": [
799
+ [
800
+ 0.9726487834623457
801
+ ]
802
+ ],
803
+ "intercept": [
804
+ -1.0644506071696311
805
+ ],
806
+ "x0": [
807
+ -1.0427325437170833,
808
+ -1.0230520226440176,
809
+ -1.0229745362547593,
810
+ -1.004925254952492,
811
+ -1.0048160167171234,
812
+ -0.9969337323397442,
813
+ -0.9968109136046356,
814
+ -0.9789776955893206,
815
+ -0.9788253026709467,
816
+ -0.912364953037482,
817
+ -0.9122396124166159,
818
+ -0.804542423168929,
819
+ -0.8043563543795349,
820
+ -0.7385895160825799,
821
+ -0.7368944610072401,
822
+ -0.6546603464321601,
823
+ -0.6536178800241561,
824
+ -0.6087776207556004,
825
+ -0.6040888843757803,
826
+ -0.5346090765768027,
827
+ -0.5259963439327245,
828
+ -0.2754108758848134,
829
+ -0.2632271530081397,
830
+ -0.25012853635815946,
831
+ -0.22523497305885443
832
+ ],
833
+ "y0": [
834
+ 0.0,
835
+ 0.0,
836
+ 0.006134969325153374,
837
+ 0.006134969325153374,
838
+ 0.009615384615384616,
839
+ 0.009615384615384616,
840
+ 0.012738853503184714,
841
+ 0.012738853503184714,
842
+ 0.0176678445229682,
843
+ 0.0176678445229682,
844
+ 0.043795620437956206,
845
+ 0.043795620437956206,
846
+ 0.08333333333333333,
847
+ 0.08333333333333333,
848
+ 0.09090909090909091,
849
+ 0.09090909090909091,
850
+ 0.1111111111111111,
851
+ 0.1111111111111111,
852
+ 0.3181818181818182,
853
+ 0.3181818181818182,
854
+ 0.4444444444444444,
855
+ 0.4444444444444444,
856
+ 0.5,
857
+ 0.5,
858
+ 1.0
859
+ ],
860
+ "x_min": -1.0427325437170833,
861
+ "x_max": -0.22523497305885443
862
+ }
863
+ ],
864
+ "Year4": [
865
+ {
866
+ "coef": [
867
+ [
868
+ 1.0086821379909334
869
+ ]
870
+ ],
871
+ "intercept": [
872
+ -1.047925427929978
873
+ ],
874
+ "x0": [
875
+ -1.02286428020891,
876
+ -1.0026881503464433,
877
+ -1.0026036787390038,
878
+ -0.9887474605291058,
879
+ -0.9886385643020776,
880
+ -0.9753188497707992,
881
+ -0.9750552066693241,
882
+ -0.9307558006592946,
883
+ -0.9301476652078718,
884
+ -0.8704352194929892,
885
+ -0.8702923392260286,
886
+ -0.6676854452406609,
887
+ -0.6654851252027522,
888
+ -0.6297232735749394,
889
+ -0.6296036906374327,
890
+ -0.4494000196931438,
891
+ -0.4470847761836192,
892
+ -0.42825548372505196,
893
+ -0.41902066281808237,
894
+ -0.21248914580451372,
895
+ -0.21067514058055625,
896
+ -0.148181602465549
897
+ ],
898
+ "y0": [
899
+ 0.0,
900
+ 0.0,
901
+ 0.004545454545454545,
902
+ 0.004545454545454545,
903
+ 0.0196078431372549,
904
+ 0.0196078431372549,
905
+ 0.027777777777777776,
906
+ 0.027777777777777776,
907
+ 0.03289473684210526,
908
+ 0.03289473684210526,
909
+ 0.07567567567567568,
910
+ 0.07567567567567568,
911
+ 0.14285714285714285,
912
+ 0.14285714285714285,
913
+ 0.1891891891891892,
914
+ 0.1891891891891892,
915
+ 0.25,
916
+ 0.25,
917
+ 0.5,
918
+ 0.5,
919
+ 0.75,
920
+ 0.75
921
+ ],
922
+ "x_min": -1.02286428020891,
923
+ "x_max": -0.148181602465549
924
+ },
925
+ {
926
+ "coef": [
927
+ [
928
+ 1.0361317129583438
929
+ ]
930
+ ],
931
+ "intercept": [
932
+ -1.0519899935417487
933
+ ],
934
+ "x0": [
935
+ -1.0239991147272292,
936
+ -1.018792252440369,
937
+ -1.0187294327075376,
938
+ -1.0060390206588297,
939
+ -1.00595318053358,
940
+ -0.9883465946207174,
941
+ -0.9882298290454251,
942
+ -0.9763188217114485,
943
+ -0.9761817029287079,
944
+ -0.9450559554005158,
945
+ -0.9446807816744485,
946
+ -0.9260156359797067,
947
+ -0.9259075358606483,
948
+ -0.8423954964001338,
949
+ -0.8419052593108894,
950
+ -0.7741263225457969,
951
+ -0.7725347812371082,
952
+ -0.6795249539968491,
953
+ -0.6785924659884717,
954
+ -0.5631260375101033,
955
+ -0.5598311106789918,
956
+ -0.45517247080901235,
957
+ -0.44372304473039115,
958
+ -0.21756607774410575,
959
+ -0.21629997160066938,
960
+ -0.14633088612618605
961
+ ],
962
+ "y0": [
963
+ 0.0,
964
+ 0.0,
965
+ 0.013953488372093023,
966
+ 0.013953488372093023,
967
+ 0.015267175572519083,
968
+ 0.015267175572519083,
969
+ 0.01694915254237288,
970
+ 0.01694915254237288,
971
+ 0.023474178403755867,
972
+ 0.023474178403755867,
973
+ 0.03614457831325301,
974
+ 0.03614457831325301,
975
+ 0.036458333333333336,
976
+ 0.036458333333333336,
977
+ 0.04225352112676056,
978
+ 0.04225352112676056,
979
+ 0.08695652173913043,
980
+ 0.08695652173913043,
981
+ 0.14705882352941177,
982
+ 0.14705882352941177,
983
+ 0.15,
984
+ 0.15,
985
+ 0.3333333333333333,
986
+ 0.3333333333333333,
987
+ 0.6666666666666666,
988
+ 0.6666666666666666
989
+ ],
990
+ "x_min": -1.0239991147272292,
991
+ "x_max": -0.14633088612618605
992
+ },
993
+ {
994
+ "coef": [
995
+ [
996
+ 1.0216788450649765
997
+ ]
998
+ ],
999
+ "intercept": [
1000
+ -1.0510303693199705
1001
+ ],
1002
+ "x0": [
1003
+ -1.0272845852229173,
1004
+ -1.0113595798304742,
1005
+ -1.0112850383355512,
1006
+ -0.9666914919832523,
1007
+ -0.9663887435190113,
1008
+ -0.9339802100783183,
1009
+ -0.9331680598433085,
1010
+ -0.8944116130390996,
1011
+ -0.8941524362385745,
1012
+ -0.885942724866964,
1013
+ -0.884994378928389,
1014
+ -0.720748906835077,
1015
+ -0.7200937485624153,
1016
+ -0.605556389394603,
1017
+ -0.5981517946770668,
1018
+ -0.4626596318956623,
1019
+ -0.4437702956532652,
1020
+ -0.37789048818579807,
1021
+ -0.37464615002208357,
1022
+ -0.1281537885216668
1023
+ ],
1024
+ "y0": [
1025
+ 0.0,
1026
+ 0.0,
1027
+ 0.015332197614991482,
1028
+ 0.015332197614991482,
1029
+ 0.020833333333333332,
1030
+ 0.020833333333333332,
1031
+ 0.03333333333333333,
1032
+ 0.03333333333333333,
1033
+ 0.0625,
1034
+ 0.0625,
1035
+ 0.06965174129353234,
1036
+ 0.06965174129353234,
1037
+ 0.10344827586206896,
1038
+ 0.10344827586206896,
1039
+ 0.21428571428571427,
1040
+ 0.21428571428571427,
1041
+ 0.5,
1042
+ 0.5,
1043
+ 0.6,
1044
+ 0.6
1045
+ ],
1046
+ "x_min": -1.0272845852229173,
1047
+ "x_max": -0.1281537885216668
1048
+ },
1049
+ {
1050
+ "coef": [
1051
+ [
1052
+ 0.9833223705966153
1053
+ ]
1054
+ ],
1055
+ "intercept": [
1056
+ -1.044432609373825
1057
+ ],
1058
+ "x0": [
1059
+ -1.0205081898052373,
1060
+ -1.011651762929003,
1061
+ -1.0114655864197297,
1062
+ -0.9938281205265567,
1063
+ -0.9936402955947043,
1064
+ -0.9849127075956913,
1065
+ -0.9848034025260353,
1066
+ -0.9802742003101749,
1067
+ -0.980156971822654,
1068
+ -0.939521355155617,
1069
+ -0.9393381824385996,
1070
+ -0.8533064072638791,
1071
+ -0.8524025588478151,
1072
+ -0.8249474873566146,
1073
+ -0.8241138837213986,
1074
+ -0.8159968458036478,
1075
+ -0.8154826551800518,
1076
+ -0.7703341043964319,
1077
+ -0.7697545336701777,
1078
+ -0.7602817158020083,
1079
+ -0.76018307419486,
1080
+ -0.715530222396657,
1081
+ -0.7149956059857223,
1082
+ -0.6391315064174637,
1083
+ -0.6377348455870773,
1084
+ -0.6037819120777569,
1085
+ -0.5937280875241087,
1086
+ -0.34862702077167185,
1087
+ -0.3443740612116589,
1088
+ -0.26079806936404093,
1089
+ -0.254653863589256,
1090
+ -0.16638814613500053,
1091
+ -0.13942077328496516,
1092
+ -0.1318913650483009
1093
+ ],
1094
+ "y0": [
1095
+ 0.0,
1096
+ 0.0,
1097
+ 0.006134969325153374,
1098
+ 0.006134969325153374,
1099
+ 0.015037593984962405,
1100
+ 0.015037593984962405,
1101
+ 0.015873015873015872,
1102
+ 0.015873015873015872,
1103
+ 0.01694915254237288,
1104
+ 0.01694915254237288,
1105
+ 0.029045643153526972,
1106
+ 0.029045643153526972,
1107
+ 0.03125,
1108
+ 0.03125,
1109
+ 0.0625,
1110
+ 0.0625,
1111
+ 0.08695652173913043,
1112
+ 0.08695652173913043,
1113
+ 0.1111111111111111,
1114
+ 0.1111111111111111,
1115
+ 0.14285714285714285,
1116
+ 0.14285714285714285,
1117
+ 0.16666666666666666,
1118
+ 0.16666666666666666,
1119
+ 0.18181818181818182,
1120
+ 0.18181818181818182,
1121
+ 0.21212121212121213,
1122
+ 0.21212121212121213,
1123
+ 0.5,
1124
+ 0.5,
1125
+ 0.75,
1126
+ 0.75,
1127
+ 1.0,
1128
+ 1.0
1129
+ ],
1130
+ "x_min": -1.0205081898052373,
1131
+ "x_max": -0.1318913650483009
1132
+ },
1133
+ {
1134
+ "coef": [
1135
+ [
1136
+ 0.9880986124540125
1137
+ ]
1138
+ ],
1139
+ "intercept": [
1140
+ -1.0460240799063376
1141
+ ],
1142
+ "x0": [
1143
+ -1.023961040577526,
1144
+ -1.0039679085289306,
1145
+ -1.0038891913239005,
1146
+ -0.9965684581275036,
1147
+ -0.9964766183208399,
1148
+ -0.9922721882908206,
1149
+ -0.9921728319757317,
1150
+ -0.9591934923696197,
1151
+ -0.9590386787989318,
1152
+ -0.9017957996915743,
1153
+ -0.9016754766615053,
1154
+ -0.8915226541324832,
1155
+ -0.8913953225656651,
1156
+ -0.7988222698303049,
1157
+ -0.7979161072553451,
1158
+ -0.7819874406352229,
1159
+ -0.7817984162764335,
1160
+ -0.6297245945047414,
1161
+ -0.6286655692648064,
1162
+ -0.5831130546072345,
1163
+ -0.5783498410096488,
1164
+ -0.5077663962482655,
1165
+ -0.49901685651743166,
1166
+ -0.42893419820963474,
1167
+ -0.40417633601033387,
1168
+ -0.24445101786199697,
1169
+ -0.23207376527745027,
1170
+ -0.2187670864875585,
1171
+ -0.19347810677226984
1172
+ ],
1173
+ "y0": [
1174
+ 0.0,
1175
+ 0.0,
1176
+ 0.00641025641025641,
1177
+ 0.00641025641025641,
1178
+ 0.015151515151515152,
1179
+ 0.015151515151515152,
1180
+ 0.016713091922005572,
1181
+ 0.016713091922005572,
1182
+ 0.028225806451612902,
1183
+ 0.028225806451612902,
1184
+ 0.03125,
1185
+ 0.03125,
1186
+ 0.05172413793103448,
1187
+ 0.05172413793103448,
1188
+ 0.05555555555555555,
1189
+ 0.05555555555555555,
1190
+ 0.10144927536231885,
1191
+ 0.10144927536231885,
1192
+ 0.16666666666666666,
1193
+ 0.16666666666666666,
1194
+ 0.3181818181818182,
1195
+ 0.3181818181818182,
1196
+ 0.4444444444444444,
1197
+ 0.4444444444444444,
1198
+ 0.47058823529411764,
1199
+ 0.47058823529411764,
1200
+ 0.5,
1201
+ 0.5,
1202
+ 1.0
1203
+ ],
1204
+ "x_min": -1.023961040577526,
1205
+ "x_max": -0.19347810677226984
1206
+ }
1207
+ ],
1208
+ "Year5": [
1209
+ {
1210
+ "coef": [
1211
+ [
1212
+ 1.0729014068918148
1213
+ ]
1214
+ ],
1215
+ "intercept": [
1216
+ -1.0388777534724216
1217
+ ],
1218
+ "x0": [
1219
+ -1.0122210500020774,
1220
+ -0.9907603764164534,
1221
+ -0.9906705267967857,
1222
+ -0.9759321315663417,
1223
+ -0.9758163022968591,
1224
+ -0.9702674088146137,
1225
+ -0.9698901363368702,
1226
+ -0.9142483452486432,
1227
+ -0.913601491936943,
1228
+ -0.8500873633492663,
1229
+ -0.849935386394718,
1230
+ -0.6344292190744085,
1231
+ -0.6320888123443096,
1232
+ -0.5940501285217141,
1233
+ -0.59392293215622,
1234
+ -0.40224632284469974,
1235
+ -0.39978367586691765,
1236
+ -0.37975558811886667,
1237
+ -0.36993281841738634,
1238
+ -0.15025216102742633,
1239
+ -0.1483226644262775,
1240
+ -0.08185038099833286
1241
+ ],
1242
+ "y0": [
1243
+ 0.0,
1244
+ 0.0,
1245
+ 0.009569377990430622,
1246
+ 0.009569377990430622,
1247
+ 0.029850746268656716,
1248
+ 0.029850746268656716,
1249
+ 0.033426183844011144,
1250
+ 0.033426183844011144,
1251
+ 0.0472972972972973,
1252
+ 0.0472972972972973,
1253
+ 0.09142857142857143,
1254
+ 0.09142857142857143,
1255
+ 0.14285714285714285,
1256
+ 0.14285714285714285,
1257
+ 0.19444444444444445,
1258
+ 0.19444444444444445,
1259
+ 0.25,
1260
+ 0.25,
1261
+ 0.5,
1262
+ 0.5,
1263
+ 0.75,
1264
+ 0.75
1265
+ ],
1266
+ "x_min": -1.0122210500020774,
1267
+ "x_max": -0.08185038099833286
1268
+ },
1269
+ {
1270
+ "coef": [
1271
+ [
1272
+ 1.0730002617211765
1273
+ ]
1274
+ ],
1275
+ "intercept": [
1276
+ -1.0387029998559143
1277
+ ],
1278
+ "x0": [
1279
+ -1.0097161250038436,
1280
+ -1.0043239875693128,
1281
+ -1.004258932529566,
1282
+ -0.9911169590919086,
1283
+ -0.9910280645279191,
1284
+ -0.9279639408372101,
1285
+ -0.927575417350064,
1286
+ -0.8876158018796831,
1287
+ -0.8873620892232896,
1288
+ -0.8216505272063171,
1289
+ -0.8211428460703323,
1290
+ -0.750952139639314,
1291
+ -0.7493039667097476,
1292
+ -0.7167736487701559,
1293
+ -0.7153414545753114,
1294
+ -0.69274698985831,
1295
+ -0.6924035472152967,
1296
+ -0.6564759611650504,
1297
+ -0.65419008495923,
1298
+ -0.42064899177658044,
1299
+ -0.4087921621618964,
1300
+ -0.27587557427723974,
1301
+ -0.27297652184425214,
1302
+ -0.21310768985231687,
1303
+ -0.17327672147251716,
1304
+ -0.10081793453687371
1305
+ ],
1306
+ "y0": [
1307
+ 0.0,
1308
+ 0.0,
1309
+ 0.014634146341463415,
1310
+ 0.014634146341463415,
1311
+ 0.02617801047120419,
1312
+ 0.02617801047120419,
1313
+ 0.03355704697986577,
1314
+ 0.03355704697986577,
1315
+ 0.035398230088495575,
1316
+ 0.035398230088495575,
1317
+ 0.058823529411764705,
1318
+ 0.058823529411764705,
1319
+ 0.09090909090909091,
1320
+ 0.09090909090909091,
1321
+ 0.09523809523809523,
1322
+ 0.09523809523809523,
1323
+ 0.13636363636363635,
1324
+ 0.13636363636363635,
1325
+ 0.17543859649122806,
1326
+ 0.17543859649122806,
1327
+ 0.4166666666666667,
1328
+ 0.4166666666666667,
1329
+ 0.5,
1330
+ 0.5,
1331
+ 0.6666666666666666,
1332
+ 0.6666666666666666
1333
+ ],
1334
+ "x_min": -1.0097161250038436,
1335
+ "x_max": -0.10081793453687371
1336
+ },
1337
+ {
1338
+ "coef": [
1339
+ [
1340
+ 1.066498361800134
1341
+ ]
1342
+ ],
1343
+ "intercept": [
1344
+ -1.0388345461655974
1345
+ ],
1346
+ "x0": [
1347
+ -1.0140470701779192,
1348
+ -0.9974234587125975,
1349
+ -0.9973456471942269,
1350
+ -0.9507958489270811,
1351
+ -0.9504798193423343,
1352
+ -0.9358797880895835,
1353
+ -0.9356979749313667,
1354
+ -0.8753451602322905,
1355
+ -0.8750746137347177,
1356
+ -0.8665047546532978,
1357
+ -0.8655148062024753,
1358
+ -0.7669068375262997,
1359
+ -0.766510966212006,
1360
+ -0.6940641318866472,
1361
+ -0.6933802328043783,
1362
+ -0.573818291684205,
1363
+ -0.5660888685154752,
1364
+ -0.4246528680138353,
1365
+ -0.4049348849555414,
1366
+ -0.3361650292624899,
1367
+ -0.332778366855374,
1368
+ -0.07547275559969413
1369
+ ],
1370
+ "y0": [
1371
+ 0.0,
1372
+ 0.0,
1373
+ 0.01592920353982301,
1374
+ 0.01592920353982301,
1375
+ 0.03571428571428571,
1376
+ 0.03571428571428571,
1377
+ 0.037383177570093455,
1378
+ 0.037383177570093455,
1379
+ 0.0625,
1380
+ 0.0625,
1381
+ 0.08496732026143791,
1382
+ 0.08496732026143791,
1383
+ 0.1,
1384
+ 0.1,
1385
+ 0.14035087719298245,
1386
+ 0.14035087719298245,
1387
+ 0.21428571428571427,
1388
+ 0.21428571428571427,
1389
+ 0.5,
1390
+ 0.5,
1391
+ 0.6,
1392
+ 0.6
1393
+ ],
1394
+ "x_min": -1.0140470701779192,
1395
+ "x_max": -0.07547275559969413
1396
+ },
1397
+ {
1398
+ "coef": [
1399
+ [
1400
+ 1.0342443871958038
1401
+ ]
1402
+ ],
1403
+ "intercept": [
1404
+ -1.0346932601712733
1405
+ ],
1406
+ "x0": [
1407
+ -1.009529898291571,
1408
+ -1.0002148353363798,
1409
+ -1.0000190175501673,
1410
+ -0.9814681835105593,
1411
+ -0.9812706319370851,
1412
+ -0.9720910798678486,
1413
+ -0.9719761143609464,
1414
+ -0.919442803406263,
1415
+ -0.9190421752572401,
1416
+ -0.8388372227590039,
1417
+ -0.8385269596020679,
1418
+ -0.7944277954855696,
1419
+ -0.7938869771514152,
1420
+ -0.7464003780113464,
1421
+ -0.745790793821527,
1422
+ -0.7358274196483777,
1423
+ -0.7357236698186294,
1424
+ -0.6236115606405725,
1425
+ -0.619917252977378,
1426
+ -0.6084033644145499,
1427
+ -0.6069343765547833,
1428
+ -0.49816917030697594,
1429
+ -0.494561351658123,
1430
+ -0.3028549067382852,
1431
+ -0.29838170477986203,
1432
+ -0.11117866824540923,
1433
+ -0.08281477168253204,
1434
+ -0.07489544792815528
1435
+ ],
1436
+ "y0": [
1437
+ 0.0,
1438
+ 0.0,
1439
+ 0.009523809523809525,
1440
+ 0.009523809523809525,
1441
+ 0.022727272727272728,
1442
+ 0.022727272727272728,
1443
+ 0.026737967914438502,
1444
+ 0.026737967914438502,
1445
+ 0.03626943005181347,
1446
+ 0.03626943005181347,
1447
+ 0.07142857142857142,
1448
+ 0.07142857142857142,
1449
+ 0.0975609756097561,
1450
+ 0.0975609756097561,
1451
+ 0.1111111111111111,
1452
+ 0.1111111111111111,
1453
+ 0.14035087719298245,
1454
+ 0.14035087719298245,
1455
+ 0.16666666666666666,
1456
+ 0.16666666666666666,
1457
+ 0.22727272727272727,
1458
+ 0.22727272727272727,
1459
+ 0.25,
1460
+ 0.25,
1461
+ 0.75,
1462
+ 0.75,
1463
+ 1.0,
1464
+ 1.0
1465
+ ],
1466
+ "x_min": -1.009529898291571,
1467
+ "x_max": -0.07489544792815528
1468
+ },
1469
+ {
1470
+ "coef": [
1471
+ [
1472
+ 1.049131285808828
1473
+ ]
1474
+ ],
1475
+ "intercept": [
1476
+ -1.0369569117750996
1477
+ ],
1478
+ "x0": [
1479
+ -1.0135310871376175,
1480
+ -1.003406153978786,
1481
+ -1.0033426633431153,
1482
+ -0.9923030233906254,
1483
+ -0.9922194439973464,
1484
+ -0.9844465252475424,
1485
+ -0.9843490126984515,
1486
+ -0.9447629902355401,
1487
+ -0.9445986141718261,
1488
+ -0.8838199685949948,
1489
+ -0.8836922134765707,
1490
+ -0.8778509655619556,
1491
+ -0.8777191145256378,
1492
+ -0.7566113112776203,
1493
+ -0.7564106113008301,
1494
+ -0.5949435247547256,
1495
+ -0.5938190858599905,
1496
+ -0.5849223144632415,
1497
+ -0.5778747405625667,
1498
+ -0.5494689871720406,
1499
+ -0.5403954659748874,
1500
+ -0.4654522374084441,
1501
+ -0.4561622578939021,
1502
+ -0.15860207728717823,
1503
+ -0.13175105303606494
1504
+ ],
1505
+ "y0": [
1506
+ 0.0,
1507
+ 0.0,
1508
+ 0.005988023952095809,
1509
+ 0.005988023952095809,
1510
+ 0.012903225806451613,
1511
+ 0.012903225806451613,
1512
+ 0.02216748768472906,
1513
+ 0.02216748768472906,
1514
+ 0.03418803418803419,
1515
+ 0.03418803418803419,
1516
+ 0.06666666666666667,
1517
+ 0.06666666666666667,
1518
+ 0.06756756756756757,
1519
+ 0.06756756756756757,
1520
+ 0.10294117647058823,
1521
+ 0.10294117647058823,
1522
+ 0.16666666666666666,
1523
+ 0.16666666666666666,
1524
+ 0.18181818181818182,
1525
+ 0.18181818181818182,
1526
+ 0.3333333333333333,
1527
+ 0.3333333333333333,
1528
+ 0.5,
1529
+ 0.5,
1530
+ 1.0
1531
+ ],
1532
+ "x_min": -1.0135310871376175,
1533
+ "x_max": -0.13175105303606494
1534
+ }
1535
+ ],
1536
+ "Year6": [
1537
+ {
1538
+ "coef": [
1539
+ [
1540
+ 1.2785511695164826
1541
+ ]
1542
+ ],
1543
+ "intercept": [
1544
+ -1.0241497200088308
1545
+ ],
1546
+ "x0": [
1547
+ -0.992383558478483,
1548
+ -0.9668093825707449,
1549
+ -0.9667023109092029,
1550
+ -0.9492767075865539,
1551
+ -0.9490008837467006,
1552
+ -0.9454718532223951,
1553
+ -0.9453275208131554,
1554
+ -0.9423883989408506,
1555
+ -0.9419388122737562,
1556
+ -0.8756318090273547,
1557
+ -0.8748609692718399,
1558
+ -0.8013369835774051,
1559
+ -0.7989915807365152,
1560
+ -0.7916533234376731,
1561
+ -0.7909093468570292,
1562
+ -0.5421779905077349,
1563
+ -0.539388983295431,
1564
+ -0.5087698031244816,
1565
+ -0.5074924877372168,
1566
+ -0.4818223045571609,
1567
+ -0.4764020779440997,
1568
+ -0.23868946247372314,
1569
+ -0.226983900705376,
1570
+ 0.03480433036775632,
1571
+ 0.037103665721527124,
1572
+ 0.11631710991248956
1573
+ ],
1574
+ "y0": [
1575
+ 0.0,
1576
+ 0.0,
1577
+ 0.012658227848101266,
1578
+ 0.012658227848101266,
1579
+ 0.03571428571428571,
1580
+ 0.03571428571428571,
1581
+ 0.037037037037037035,
1582
+ 0.037037037037037035,
1583
+ 0.04693140794223827,
1584
+ 0.04693140794223827,
1585
+ 0.07766990291262135,
1586
+ 0.07766990291262135,
1587
+ 0.14285714285714285,
1588
+ 0.14285714285714285,
1589
+ 0.14953271028037382,
1590
+ 0.14953271028037382,
1591
+ 0.2,
1592
+ 0.2,
1593
+ 0.2222222222222222,
1594
+ 0.2222222222222222,
1595
+ 0.25,
1596
+ 0.25,
1597
+ 0.6875,
1598
+ 0.6875,
1599
+ 0.75,
1600
+ 0.75
1601
+ ],
1602
+ "x_min": -0.992383558478483,
1603
+ "x_max": 0.11631710991248956
1604
+ },
1605
+ {
1606
+ "coef": [
1607
+ [
1608
+ 1.3308872112877563
1609
+ ]
1610
+ ],
1611
+ "intercept": [
1612
+ -1.029515922052421
1613
+ ],
1614
+ "x0": [
1615
+ -0.9935622858678995,
1616
+ -0.9875144255598828,
1617
+ -0.9867935012434657,
1618
+ -0.9704929605975523,
1619
+ -0.9703827009428373,
1620
+ -0.8921616242989214,
1621
+ -0.8916797223285544,
1622
+ -0.8683975179361919,
1623
+ -0.8675659224559388,
1624
+ -0.7602966400698048,
1625
+ -0.7596669418717723,
1626
+ -0.6726064658655044,
1627
+ -0.6705621678795637,
1628
+ -0.6004121782794349,
1629
+ -0.5999861919701083,
1630
+ -0.5554237006898046,
1631
+ -0.5525884325939394,
1632
+ -0.26291762326125934,
1633
+ -0.24821110037999894,
1634
+ -0.08334908375761896,
1635
+ -0.0797532674791338,
1636
+ -0.005495445095203388,
1637
+ 0.04390857494189282,
1638
+ 0.08062613566700261,
1639
+ 0.08188196234539169,
1640
+ 0.13378224628973
1641
+ ],
1642
+ "y0": [
1643
+ 0.0,
1644
+ 0.0,
1645
+ 0.027972027972027972,
1646
+ 0.027972027972027972,
1647
+ 0.0368663594470046,
1648
+ 0.0368663594470046,
1649
+ 0.04838709677419355,
1650
+ 0.04838709677419355,
1651
+ 0.06504065040650407,
1652
+ 0.06504065040650407,
1653
+ 0.09803921568627451,
1654
+ 0.09803921568627451,
1655
+ 0.16129032258064516,
1656
+ 0.16129032258064516,
1657
+ 0.1875,
1658
+ 0.1875,
1659
+ 0.2,
1660
+ 0.2,
1661
+ 0.45454545454545453,
1662
+ 0.45454545454545453,
1663
+ 0.5,
1664
+ 0.5,
1665
+ 0.6666666666666666,
1666
+ 0.6666666666666666,
1667
+ 0.75,
1668
+ 0.75
1669
+ ],
1670
+ "x_min": -0.9935622858678995,
1671
+ "x_max": 0.13378224628973
1672
+ },
1673
+ {
1674
+ "coef": [
1675
+ [
1676
+ 1.3219066050593529
1677
+ ]
1678
+ ],
1679
+ "intercept": [
1680
+ -1.030067056873024
1681
+ ],
1682
+ "x0": [
1683
+ -0.9993434013996527,
1684
+ -0.9787387173391373,
1685
+ -0.9786422712837396,
1686
+ -0.9585536339445537,
1687
+ -0.9584214065749604,
1688
+ -0.9211399610279881,
1689
+ -0.9205528736737678,
1690
+ -0.8786208569520021,
1691
+ -0.8775700504631082,
1692
+ -0.832071977161095,
1693
+ -0.8310835934548523,
1694
+ -0.8164672073016643,
1695
+ -0.8152401830110675,
1696
+ -0.7273272963944272,
1697
+ -0.725957481712086,
1698
+ -0.602729984272997,
1699
+ -0.6018823029764975,
1700
+ -0.4536873077083343,
1701
+ -0.44410681897434656,
1702
+ -0.26879929863205665,
1703
+ -0.24435919353971347,
1704
+ 0.16400351990815887
1705
+ ],
1706
+ "y0": [
1707
+ 0.0,
1708
+ 0.0,
1709
+ 0.034653465346534656,
1710
+ 0.034653465346534656,
1711
+ 0.035175879396984924,
1712
+ 0.035175879396984924,
1713
+ 0.045454545454545456,
1714
+ 0.045454545454545456,
1715
+ 0.04878048780487805,
1716
+ 0.04878048780487805,
1717
+ 0.11764705882352941,
1718
+ 0.11764705882352941,
1719
+ 0.12631578947368424,
1720
+ 0.12631578947368424,
1721
+ 0.13333333333333333,
1722
+ 0.13333333333333333,
1723
+ 0.16326530612244897,
1724
+ 0.16326530612244897,
1725
+ 0.2727272727272727,
1726
+ 0.2727272727272727,
1727
+ 0.625,
1728
+ 0.625
1729
+ ],
1730
+ "x_min": -0.9993434013996527,
1731
+ "x_max": 0.16400351990815887
1732
+ },
1733
+ {
1734
+ "coef": [
1735
+ [
1736
+ 1.28761421704194
1737
+ ]
1738
+ ],
1739
+ "intercept": [
1740
+ -1.0257042667902587
1741
+ ],
1742
+ "x0": [
1743
+ -0.9943763689490865,
1744
+ -0.9845269295824003,
1745
+ -0.9844490065938818,
1746
+ -0.9594400779196763,
1747
+ -0.9591941300395103,
1748
+ -0.95302613576341,
1749
+ -0.9528920861581691,
1750
+ -0.9356719163440915,
1751
+ -0.9355082324992036,
1752
+ -0.8885674434026062,
1753
+ -0.8880880767186674,
1754
+ -0.7818672961596489,
1755
+ -0.7814810245425718,
1756
+ -0.7213896170913672,
1757
+ -0.7204809040943281,
1758
+ -0.6545257162085025,
1759
+ -0.653492921225191,
1760
+ -0.6458236298905813,
1761
+ -0.6447766365664871,
1762
+ -0.49696085733723505,
1763
+ -0.49315274721763624,
1764
+ -0.44869298386418444,
1765
+ -0.4355279752993245,
1766
+ -0.37954192215069893,
1767
+ -0.3532505091583502,
1768
+ -0.11457970075625634,
1769
+ -0.10901065101455809,
1770
+ 0.1240535012297106,
1771
+ 0.15936600272086276,
1772
+ 0.16922540730814917
1773
+ ],
1774
+ "y0": [
1775
+ 0.0,
1776
+ 0.0,
1777
+ 0.02109704641350211,
1778
+ 0.02109704641350211,
1779
+ 0.03225806451612903,
1780
+ 0.03225806451612903,
1781
+ 0.043859649122807015,
1782
+ 0.043859649122807015,
1783
+ 0.0446927374301676,
1784
+ 0.0446927374301676,
1785
+ 0.05161290322580645,
1786
+ 0.05161290322580645,
1787
+ 0.08333333333333333,
1788
+ 0.08333333333333333,
1789
+ 0.14705882352941177,
1790
+ 0.14705882352941177,
1791
+ 0.16666666666666666,
1792
+ 0.16666666666666666,
1793
+ 0.21739130434782608,
1794
+ 0.21739130434782608,
1795
+ 0.2857142857142857,
1796
+ 0.2857142857142857,
1797
+ 0.3,
1798
+ 0.3,
1799
+ 0.3333333333333333,
1800
+ 0.3333333333333333,
1801
+ 0.7272727272727273,
1802
+ 0.7272727272727273,
1803
+ 1.0,
1804
+ 1.0
1805
+ ],
1806
+ "x_min": -0.9943763689490865,
1807
+ "x_max": 0.16922540730814917
1808
+ },
1809
+ {
1810
+ "coef": [
1811
+ [
1812
+ 1.2609699034707968
1813
+ ]
1814
+ ],
1815
+ "intercept": [
1816
+ -1.0223080264267284
1817
+ ],
1818
+ "x0": [
1819
+ -0.9892008829815222,
1820
+ -0.9819827626660794,
1821
+ -0.9819064521205683,
1822
+ -0.9686377088149947,
1823
+ -0.9685372532276906,
1824
+ -0.9591948413310991,
1825
+ -0.9590776392313451,
1826
+ -0.9114984815043246,
1827
+ -0.9113009149347273,
1828
+ -0.8382499594606304,
1829
+ -0.8380964082687765,
1830
+ -0.831075706552344,
1831
+ -0.8309172324025526,
1832
+ -0.6853555691132163,
1833
+ -0.685114344174276,
1834
+ -0.4962909854540317,
1835
+ -0.4958418313069347,
1836
+ -0.43638745619419594,
1837
+ -0.42548182664822953,
1838
+ -0.3495566623100195,
1839
+ -0.32424040748587113,
1840
+ -0.2671885861659874,
1841
+ -0.20320892289351622,
1842
+ 0.03340256560223165,
1843
+ 0.06021126585792369,
1844
+ 0.06567529821063478
1845
+ ],
1846
+ "y0": [
1847
+ 0.0,
1848
+ 0.0,
1849
+ 0.008333333333333333,
1850
+ 0.008333333333333333,
1851
+ 0.02586206896551724,
1852
+ 0.02586206896551724,
1853
+ 0.03289473684210526,
1854
+ 0.03289473684210526,
1855
+ 0.046242774566473986,
1856
+ 0.046242774566473986,
1857
+ 0.09090909090909091,
1858
+ 0.09090909090909091,
1859
+ 0.10891089108910891,
1860
+ 0.10891089108910891,
1861
+ 0.1346153846153846,
1862
+ 0.1346153846153846,
1863
+ 0.25,
1864
+ 0.25,
1865
+ 0.4117647058823529,
1866
+ 0.4117647058823529,
1867
+ 0.5714285714285714,
1868
+ 0.5714285714285714,
1869
+ 0.6428571428571429,
1870
+ 0.6428571428571429,
1871
+ 1.0,
1872
+ 1.0
1873
+ ],
1874
+ "x_min": -0.9892008829815222,
1875
+ "x_max": 0.06567529821063478
1876
+ }
1877
+ ]
1878
+ }
checkpoints/sybil_5_simple_calibrator.json ADDED
@@ -0,0 +1,1840 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.5577291615224642
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.0773358074900636
11
+ ],
12
+ "x0": [
13
+ -1.072715787545994,
14
+ -1.0601295788716583,
15
+ -1.0600969807498972,
16
+ -1.0138793992456137,
17
+ -1.0134387350536016,
18
+ -0.871484852851275,
19
+ -0.8702785218477683,
20
+ -0.7818618359675877,
21
+ -0.780861413645621,
22
+ -0.6262314402968308,
23
+ -0.6255592950543292,
24
+ -0.5806864278864681,
25
+ -0.5750840761807539,
26
+ -0.5333323511330765
27
+ ],
28
+ "y0": [
29
+ 0.0,
30
+ 0.0,
31
+ 0.001941747572815534,
32
+ 0.001941747572815534,
33
+ 0.003787878787878788,
34
+ 0.003787878787878788,
35
+ 0.08888888888888889,
36
+ 0.08888888888888889,
37
+ 0.10869565217391304,
38
+ 0.10869565217391304,
39
+ 0.5714285714285714,
40
+ 0.5714285714285714,
41
+ 1.0,
42
+ 1.0
43
+ ],
44
+ "x_min": -1.072715787545994,
45
+ "x_max": -0.5333323511330765
46
+ },
47
+ {
48
+ "coef": [
49
+ [
50
+ 0.6386461169220279
51
+ ]
52
+ ],
53
+ "intercept": [
54
+ -1.1049742263832372
55
+ ],
56
+ "x0": [
57
+ -1.098845487718152,
58
+ -1.0643572398039747,
59
+ -1.0642828916107399,
60
+ -1.012837158492352,
61
+ -1.0122194665655289,
62
+ -0.8654694277661601,
63
+ -0.8650307710469314,
64
+ -0.7408107328970605,
65
+ -0.7367679422337235,
66
+ -0.7042999982197382,
67
+ -0.6987863266928618,
68
+ -0.6786260848901122,
69
+ -0.6770374269719199,
70
+ -0.6536451300294273,
71
+ -0.6488343142029751,
72
+ -0.5458600157519378,
73
+ -0.5347037802912507,
74
+ -0.49246296731403905
75
+ ],
76
+ "y0": [
77
+ 0.0,
78
+ 0.0,
79
+ 0.0037593984962406013,
80
+ 0.0037593984962406013,
81
+ 0.0213903743315508,
82
+ 0.0213903743315508,
83
+ 0.03333333333333333,
84
+ 0.03333333333333333,
85
+ 0.07142857142857142,
86
+ 0.07142857142857142,
87
+ 0.1111111111111111,
88
+ 0.1111111111111111,
89
+ 0.25,
90
+ 0.25,
91
+ 0.2857142857142857,
92
+ 0.2857142857142857,
93
+ 0.42857142857142855,
94
+ 0.42857142857142855
95
+ ],
96
+ "x_min": -1.098845487718152,
97
+ "x_max": -0.49246296731403905
98
+ },
99
+ {
100
+ "coef": [
101
+ [
102
+ 0.6959626943826914
103
+ ]
104
+ ],
105
+ "intercept": [
106
+ -1.1255763032793302
107
+ ],
108
+ "x0": [
109
+ -1.1202204200884227,
110
+ -1.1075109510662389,
111
+ -1.1074075608481948,
112
+ -1.0389066360754793,
113
+ -1.0387583357476764,
114
+ -0.8461798961075961,
115
+ -0.8459757394465384,
116
+ -0.6705626064409295,
117
+ -0.6672658590419167,
118
+ -0.6553438401300664,
119
+ -0.6528932549930175,
120
+ -0.49739370333302535,
121
+ -0.48768552830765866,
122
+ -0.4735531085658864
123
+ ],
124
+ "y0": [
125
+ 0.0,
126
+ 0.0,
127
+ 0.003125,
128
+ 0.003125,
129
+ 0.01762114537444934,
130
+ 0.01762114537444934,
131
+ 0.04225352112676056,
132
+ 0.04225352112676056,
133
+ 0.16666666666666666,
134
+ 0.16666666666666666,
135
+ 0.2647058823529412,
136
+ 0.2647058823529412,
137
+ 0.3333333333333333,
138
+ 0.3333333333333333
139
+ ],
140
+ "x_min": -1.1202204200884227,
141
+ "x_max": -0.4735531085658864
142
+ },
143
+ {
144
+ "coef": [
145
+ [
146
+ 0.6692565686413895
147
+ ]
148
+ ],
149
+ "intercept": [
150
+ -1.1166035099992193
151
+ ],
152
+ "x0": [
153
+ -1.1112703281870226,
154
+ -1.0981769098079375,
155
+ -1.098071621781001,
156
+ -0.9767389453790536,
157
+ -0.9766308812017521,
158
+ -0.856673620886284,
159
+ -0.8565183260017382,
160
+ -0.7404235322906978,
161
+ -0.7397198984688369,
162
+ -0.5052226681553887,
163
+ -0.5012233362160324,
164
+ -0.48256253963090556,
165
+ -0.470168866967265
166
+ ],
167
+ "y0": [
168
+ 0.0,
169
+ 0.0,
170
+ 0.004054054054054054,
171
+ 0.004054054054054054,
172
+ 0.021739130434782608,
173
+ 0.021739130434782608,
174
+ 0.05555555555555555,
175
+ 0.05555555555555555,
176
+ 0.1346153846153846,
177
+ 0.1346153846153846,
178
+ 0.75,
179
+ 0.75,
180
+ 1.0
181
+ ],
182
+ "x_min": -1.1112703281870226,
183
+ "x_max": -0.470168866967265
184
+ },
185
+ {
186
+ "coef": [
187
+ [
188
+ 0.5901988223416792
189
+ ]
190
+ ],
191
+ "intercept": [
192
+ -1.084927797453489
193
+ ],
194
+ "x0": [
195
+ -1.0805585468996608,
196
+ -1.0656205487823045,
197
+ -1.065584040000674,
198
+ -0.8921726875936986,
199
+ -0.8917922135410884,
200
+ -0.8208194410694509,
201
+ -0.8205165885782189,
202
+ -0.6993878166457932,
203
+ -0.6923957902254987,
204
+ -0.6294881670972636,
205
+ -0.6227074584740224,
206
+ -0.5694936479237784,
207
+ -0.553850537545845,
208
+ -0.5470573757013357,
209
+ -0.5416472601679883,
210
+ -0.5386195443632634,
211
+ -0.524989880649945,
212
+ -0.5148549988960835
213
+ ],
214
+ "y0": [
215
+ 0.0,
216
+ 0.0,
217
+ 0.004076086956521739,
218
+ 0.004076086956521739,
219
+ 0.014925373134328358,
220
+ 0.014925373134328358,
221
+ 0.08888888888888889,
222
+ 0.08888888888888889,
223
+ 0.2,
224
+ 0.2,
225
+ 0.3,
226
+ 0.3,
227
+ 0.3333333333333333,
228
+ 0.3333333333333333,
229
+ 0.5,
230
+ 0.5,
231
+ 1.0,
232
+ 1.0
233
+ ],
234
+ "x_min": -1.0805585468996608,
235
+ "x_max": -0.5148549988960835
236
+ }
237
+ ],
238
+ "Year2": [
239
+ {
240
+ "coef": [
241
+ [
242
+ 0.755953691370995
243
+ ]
244
+ ],
245
+ "intercept": [
246
+ -1.0954785287159705
247
+ ],
248
+ "x0": [
249
+ -1.0746253322637294,
250
+ -1.0412115121153696,
251
+ -1.0411622971312269,
252
+ -0.9935941844617122,
253
+ -0.993206164470002,
254
+ -0.9050750258233284,
255
+ -0.9034139947631871,
256
+ -0.8103354716794477,
257
+ -0.8050269445571869,
258
+ -0.7305885657399086,
259
+ -0.7289408719517345,
260
+ -0.7183026628113054,
261
+ -0.7180478127766873,
262
+ -0.5015728269224907,
263
+ -0.49447852469467835,
264
+ -0.42523722116786655,
265
+ -0.42231320452244525,
266
+ -0.3581288448137413
267
+ ],
268
+ "y0": [
269
+ 0.0,
270
+ 0.0,
271
+ 0.006756756756756757,
272
+ 0.006756756756756757,
273
+ 0.009433962264150943,
274
+ 0.009433962264150943,
275
+ 0.019801980198019802,
276
+ 0.019801980198019802,
277
+ 0.14285714285714285,
278
+ 0.14285714285714285,
279
+ 0.16666666666666666,
280
+ 0.16666666666666666,
281
+ 0.18,
282
+ 0.18,
283
+ 0.625,
284
+ 0.625,
285
+ 1.0,
286
+ 1.0
287
+ ],
288
+ "x_min": -1.0746253322637294,
289
+ "x_max": -0.3581288448137413
290
+ },
291
+ {
292
+ "coef": [
293
+ [
294
+ 0.8348712738456925
295
+ ]
296
+ ],
297
+ "intercept": [
298
+ -1.1162952550201102
299
+ ],
300
+ "x0": [
301
+ -1.0899226078020017,
302
+ -1.078077122160617,
303
+ -1.0780414955314657,
304
+ -1.0279964134522148,
305
+ -1.0276875021197138,
306
+ -0.9675478487083893,
307
+ -0.9672192813046326,
308
+ -0.9103201551697436,
309
+ -0.9101686292533544,
310
+ -0.8032021804433995,
311
+ -0.8026287456658917,
312
+ -0.6707487988046439,
313
+ -0.6692273691272435,
314
+ -0.6065967067818987,
315
+ -0.602534816978553,
316
+ -0.5589508876800265,
317
+ -0.5568741117868942,
318
+ -0.5262944899445523,
319
+ -0.5200055423868277,
320
+ -0.44860249984555767,
321
+ -0.4480808924052976,
322
+ -0.3853922073280942,
323
+ -0.37080819865162173,
324
+ -0.3155888206516019
325
+ ],
326
+ "y0": [
327
+ 0.0,
328
+ 0.0,
329
+ 0.0033783783783783786,
330
+ 0.0033783783783783786,
331
+ 0.009900990099009901,
332
+ 0.009900990099009901,
333
+ 0.019867549668874173,
334
+ 0.019867549668874173,
335
+ 0.042105263157894736,
336
+ 0.042105263157894736,
337
+ 0.0784313725490196,
338
+ 0.0784313725490196,
339
+ 0.1111111111111111,
340
+ 0.1111111111111111,
341
+ 0.15384615384615385,
342
+ 0.15384615384615385,
343
+ 0.25,
344
+ 0.25,
345
+ 0.2727272727272727,
346
+ 0.2727272727272727,
347
+ 0.4,
348
+ 0.4,
349
+ 0.5714285714285714,
350
+ 0.5714285714285714
351
+ ],
352
+ "x_min": -1.0899226078020017,
353
+ "x_max": -0.3155888206516019
354
+ },
355
+ {
356
+ "coef": [
357
+ [
358
+ 0.8274024649077814
359
+ ]
360
+ ],
361
+ "intercept": [
362
+ -1.113423178760243
363
+ ],
364
+ "x0": [
365
+ -1.0899620103520298,
366
+ -1.0536762133695032,
367
+ -1.0535949635625665,
368
+ -1.0183022173785778,
369
+ -1.018219981231041,
370
+ -0.9902646474300252,
371
+ -0.9898931052552091,
372
+ -0.7812598633323692,
373
+ -0.7810171495691892,
374
+ -0.6798274070844539,
375
+ -0.6787443064714377,
376
+ -0.6414801613299447,
377
+ -0.6412821041374361,
378
+ -0.5814090597594832,
379
+ -0.5685560553990299,
380
+ -0.5543824396090462,
381
+ -0.5514690360613762,
382
+ -0.4934747239415441,
383
+ -0.4870160670577528,
384
+ -0.3382586435958038
385
+ ],
386
+ "y0": [
387
+ 0.0,
388
+ 0.0,
389
+ 0.005763688760806916,
390
+ 0.005763688760806916,
391
+ 0.006134969325153374,
392
+ 0.006134969325153374,
393
+ 0.026470588235294117,
394
+ 0.026470588235294117,
395
+ 0.05263157894736842,
396
+ 0.05263157894736842,
397
+ 0.08333333333333333,
398
+ 0.08333333333333333,
399
+ 0.10526315789473684,
400
+ 0.10526315789473684,
401
+ 0.16666666666666666,
402
+ 0.16666666666666666,
403
+ 0.2727272727272727,
404
+ 0.2727272727272727,
405
+ 0.48,
406
+ 0.48
407
+ ],
408
+ "x_min": -1.0899620103520298,
409
+ "x_max": -0.3382586435958038
410
+ },
411
+ {
412
+ "coef": [
413
+ [
414
+ 0.8297541305379512
415
+ ]
416
+ ],
417
+ "intercept": [
418
+ -1.1162583213231598
419
+ ],
420
+ "x0": [
421
+ -1.0939913003541688,
422
+ -1.0543855277723662,
423
+ -1.0541614866554527,
424
+ -1.0203297881033773,
425
+ -1.0202883676982084,
426
+ -0.9997159528735385,
427
+ -0.9995201641822403,
428
+ -0.9275858905546779,
429
+ -0.9270871888764448,
430
+ -0.8810776624651726,
431
+ -0.8785391480218235,
432
+ -0.7939934243501465,
433
+ -0.7938008874697616,
434
+ -0.7230119807773686,
435
+ -0.717440083145453,
436
+ -0.6498648558649616,
437
+ -0.6489924803106051,
438
+ -0.481440685066728,
439
+ -0.47724874223483815,
440
+ -0.4191587382808162,
441
+ -0.41109459341634025,
442
+ -0.38799427271776454,
443
+ -0.358259367526541,
444
+ -0.3301650071232055,
445
+ -0.31479914959256183
446
+ ],
447
+ "y0": [
448
+ 0.0,
449
+ 0.0,
450
+ 0.006191950464396285,
451
+ 0.006191950464396285,
452
+ 0.016129032258064516,
453
+ 0.016129032258064516,
454
+ 0.01639344262295082,
455
+ 0.01639344262295082,
456
+ 0.031746031746031744,
457
+ 0.031746031746031744,
458
+ 0.05084745762711865,
459
+ 0.05084745762711865,
460
+ 0.058823529411764705,
461
+ 0.058823529411764705,
462
+ 0.15,
463
+ 0.15,
464
+ 0.175,
465
+ 0.175,
466
+ 0.2222222222222222,
467
+ 0.2222222222222222,
468
+ 0.3333333333333333,
469
+ 0.3333333333333333,
470
+ 0.8333333333333334,
471
+ 0.8333333333333334,
472
+ 1.0
473
+ ],
474
+ "x_min": -1.0939913003541688,
475
+ "x_max": -0.31479914959256183
476
+ },
477
+ {
478
+ "coef": [
479
+ [
480
+ 0.8416089340158869
481
+ ]
482
+ ],
483
+ "intercept": [
484
+ -1.1179744401596818
485
+ ],
486
+ "x0": [
487
+ -1.0956666477733925,
488
+ -1.0719796392862873,
489
+ -1.0719371599520857,
490
+ -1.0468645865080308,
491
+ -1.0468009850781383,
492
+ -1.004880851854343,
493
+ -1.0046416332256929,
494
+ -0.9936355446738208,
495
+ -0.9933247673822568,
496
+ -0.9609813678898671,
497
+ -0.9606693490442149,
498
+ -0.9207970777730702,
499
+ -0.9204374534797453,
500
+ -0.8918328624446151,
501
+ -0.891590546201219,
502
+ -0.8691641665880613,
503
+ -0.8682218144940097,
504
+ -0.8431104174027912,
505
+ -0.8425678708071076,
506
+ -0.7413624513401282,
507
+ -0.7409305911725687,
508
+ -0.5682039560697878,
509
+ -0.5582334992009527,
510
+ -0.3829780817800441,
511
+ -0.36067139299738904,
512
+ -0.3509845120987263,
513
+ -0.34326982105807313,
514
+ -0.33895237314991333,
515
+ -0.31951680954907613,
516
+ -0.30506471864960216
517
+ ],
518
+ "y0": [
519
+ 0.0,
520
+ 0.0,
521
+ 0.003205128205128205,
522
+ 0.003205128205128205,
523
+ 0.01,
524
+ 0.01,
525
+ 0.012987012987012988,
526
+ 0.012987012987012988,
527
+ 0.016,
528
+ 0.016,
529
+ 0.019801980198019802,
530
+ 0.019801980198019802,
531
+ 0.022222222222222223,
532
+ 0.022222222222222223,
533
+ 0.027777777777777776,
534
+ 0.027777777777777776,
535
+ 0.037037037037037035,
536
+ 0.037037037037037035,
537
+ 0.04225352112676056,
538
+ 0.04225352112676056,
539
+ 0.15555555555555556,
540
+ 0.15555555555555556,
541
+ 0.2413793103448276,
542
+ 0.2413793103448276,
543
+ 0.3333333333333333,
544
+ 0.3333333333333333,
545
+ 0.5,
546
+ 0.5,
547
+ 1.0,
548
+ 1.0
549
+ ],
550
+ "x_min": -1.0956666477733925,
551
+ "x_max": -0.30506471864960216
552
+ }
553
+ ],
554
+ "Year3": [
555
+ {
556
+ "coef": [
557
+ [
558
+ 0.7922138195975534
559
+ ]
560
+ ],
561
+ "intercept": [
562
+ -1.0690987005799146
563
+ ],
564
+ "x0": [
565
+ -1.0472452582317633,
566
+ -1.0214097673430889,
567
+ -1.0213221513320496,
568
+ -0.9623273646631932,
569
+ -0.9619207328771172,
570
+ -0.923885066598407,
571
+ -0.9234212400436048,
572
+ -0.8990824046277919,
573
+ -0.8990171825231043,
574
+ -0.770278451502295,
575
+ -0.7647152951926321,
576
+ -0.6867063998322088,
577
+ -0.684979672647255,
578
+ -0.6738311904147885,
579
+ -0.6735641162253851,
580
+ -0.46607851796135746,
581
+ -0.4610622357189814,
582
+ -0.4467056758891026,
583
+ -0.43927108785887303,
584
+ -0.3667085510698719,
585
+ -0.3636442808352296,
586
+ -0.29638124958917744
587
+ ],
588
+ "y0": [
589
+ 0.0,
590
+ 0.0,
591
+ 0.010169491525423728,
592
+ 0.010169491525423728,
593
+ 0.012658227848101266,
594
+ 0.012658227848101266,
595
+ 0.02247191011235955,
596
+ 0.02247191011235955,
597
+ 0.041176470588235294,
598
+ 0.041176470588235294,
599
+ 0.14285714285714285,
600
+ 0.14285714285714285,
601
+ 0.16666666666666666,
602
+ 0.16666666666666666,
603
+ 0.20833333333333334,
604
+ 0.20833333333333334,
605
+ 0.5,
606
+ 0.5,
607
+ 0.6666666666666666,
608
+ 0.6666666666666666,
609
+ 1.0,
610
+ 1.0
611
+ ],
612
+ "x_min": -1.0472452582317633,
613
+ "x_max": -0.29638124958917744
614
+ },
615
+ {
616
+ "coef": [
617
+ [
618
+ 0.8004273552822396
619
+ ]
620
+ ],
621
+ "intercept": [
622
+ -1.0694347947207268
623
+ ],
624
+ "x0": [
625
+ -1.0441501922605831,
626
+ -1.0327934106332877,
627
+ -1.032759253836375,
628
+ -0.986573095016018,
629
+ -0.986464210721294,
630
+ -0.9268241950162395,
631
+ -0.9265091831739833,
632
+ -0.8719575193704956,
633
+ -0.8718122448924871,
634
+ -0.7692588640215697,
635
+ -0.7687090871915763,
636
+ -0.7012011345723943,
637
+ -0.7001087134360404,
638
+ -0.6221491328168371,
639
+ -0.6156102546124367,
640
+ -0.5350845398885903,
641
+ -0.5330934446290819,
642
+ -0.45860394410297034,
643
+ -0.45705411112493965,
644
+ -0.3686862940123651,
645
+ -0.35470397139566956,
646
+ -0.30176275509379524
647
+ ],
648
+ "y0": [
649
+ 0.0,
650
+ 0.0,
651
+ 0.0035026269702276708,
652
+ 0.0035026269702276708,
653
+ 0.012422360248447204,
654
+ 0.012422360248447204,
655
+ 0.013793103448275862,
656
+ 0.013793103448275862,
657
+ 0.06382978723404255,
658
+ 0.06382978723404255,
659
+ 0.10810810810810811,
660
+ 0.10810810810810811,
661
+ 0.14285714285714285,
662
+ 0.14285714285714285,
663
+ 0.2962962962962963,
664
+ 0.2962962962962963,
665
+ 0.35294117647058826,
666
+ 0.35294117647058826,
667
+ 0.46153846153846156,
668
+ 0.46153846153846156,
669
+ 0.5714285714285714,
670
+ 0.5714285714285714
671
+ ],
672
+ "x_min": -1.0441501922605831,
673
+ "x_max": -0.30176275509379524
674
+ },
675
+ {
676
+ "coef": [
677
+ [
678
+ 0.8768270812803243
679
+ ]
680
+ ],
681
+ "intercept": [
682
+ -1.0881098220735725
683
+ ],
684
+ "x0": [
685
+ -1.063247208422678,
686
+ -1.0271891225554066,
687
+ -1.0270783120002416,
688
+ -0.9873068410887867,
689
+ -0.9872196925917992,
690
+ -0.9575944560441974,
691
+ -0.9572007199187522,
692
+ -0.7558133347416999,
693
+ -0.7506591348333596,
694
+ -0.5243160131980433,
695
+ -0.5072390365628597,
696
+ -0.4956749667080249,
697
+ -0.4925875319496815,
698
+ -0.4311289485110159,
699
+ -0.42428448586485135,
700
+ -0.35088888404091423,
701
+ -0.34603015281486416,
702
+ -0.2666410862316878
703
+ ],
704
+ "y0": [
705
+ 0.0,
706
+ 0.0,
707
+ 0.01092896174863388,
708
+ 0.01092896174863388,
709
+ 0.018404907975460124,
710
+ 0.018404907975460124,
711
+ 0.045317220543806644,
712
+ 0.045317220543806644,
713
+ 0.10666666666666667,
714
+ 0.10666666666666667,
715
+ 0.2,
716
+ 0.2,
717
+ 0.2727272727272727,
718
+ 0.2727272727272727,
719
+ 0.46153846153846156,
720
+ 0.46153846153846156,
721
+ 0.5,
722
+ 0.5
723
+ ],
724
+ "x_min": -1.063247208422678,
725
+ "x_max": -0.2666410862316878
726
+ },
727
+ {
728
+ "coef": [
729
+ [
730
+ 0.8447820417396998
731
+ ]
732
+ ],
733
+ "intercept": [
734
+ -1.0805354183480003
735
+ ],
736
+ "x0": [
737
+ -1.0578651130788366,
738
+ -1.0350444287737437,
739
+ -1.0350023777801456,
740
+ -1.017542029173678,
741
+ -1.0173139303848755,
742
+ -0.9828694963935497,
743
+ -0.9828273258117346,
744
+ -0.961882318176963,
745
+ -0.9616829835014282,
746
+ -0.8982273355151295,
747
+ -0.897808134755421,
748
+ -0.8525875624635242,
749
+ -0.850366192448774,
750
+ -0.7524338908878193,
751
+ -0.7522378669176628,
752
+ -0.6801668823606469,
753
+ -0.6744940705184177,
754
+ -0.6056949692279822,
755
+ -0.60480679383379,
756
+ -0.4342204207457676,
757
+ -0.42995255645434904,
758
+ -0.3891262972581492,
759
+ -0.3869320674745611,
760
+ -0.33908157405364303,
761
+ -0.3088081316037783,
762
+ -0.28020494631139103,
763
+ -0.278271796488055,
764
+ -0.2645607933990063
765
+ ],
766
+ "y0": [
767
+ 0.0,
768
+ 0.0,
769
+ 0.0076045627376425855,
770
+ 0.0076045627376425855,
771
+ 0.009345794392523364,
772
+ 0.009345794392523364,
773
+ 0.016260162601626018,
774
+ 0.016260162601626018,
775
+ 0.02262443438914027,
776
+ 0.02262443438914027,
777
+ 0.041666666666666664,
778
+ 0.041666666666666664,
779
+ 0.05797101449275362,
780
+ 0.05797101449275362,
781
+ 0.15151515151515152,
782
+ 0.15151515151515152,
783
+ 0.15789473684210525,
784
+ 0.15789473684210525,
785
+ 0.1794871794871795,
786
+ 0.1794871794871795,
787
+ 0.2857142857142857,
788
+ 0.2857142857142857,
789
+ 0.3333333333333333,
790
+ 0.3333333333333333,
791
+ 0.8333333333333334,
792
+ 0.8333333333333334,
793
+ 1.0,
794
+ 1.0
795
+ ],
796
+ "x_min": -1.0578651130788366,
797
+ "x_max": -0.2645607933990063
798
+ },
799
+ {
800
+ "coef": [
801
+ [
802
+ 0.9233318302328092
803
+ ]
804
+ ],
805
+ "intercept": [
806
+ -1.099276399846319
807
+ ],
808
+ "x0": [
809
+ -1.0748024500817872,
810
+ -1.0488153579595854,
811
+ -1.0487687537473318,
812
+ -1.0302388412185401,
813
+ -1.0301764316807787,
814
+ -1.0212615539172634,
815
+ -1.0211917765868495,
816
+ -0.9811594152396901,
817
+ -0.9809076995224622,
818
+ -0.9671772297295993,
819
+ -0.9666235377039966,
820
+ -0.8930545802142491,
821
+ -0.8930252328720873,
822
+ -0.6860941926838027,
823
+ -0.6856203975245538,
824
+ -0.4961214584408169,
825
+ -0.48518283859391187,
826
+ -0.30049265345745313,
827
+ -0.2929095644102424,
828
+ -0.2578093176619415,
829
+ -0.2493455056581202,
830
+ -0.2074305666582218
831
+ ],
832
+ "y0": [
833
+ 0.0,
834
+ 0.0,
835
+ 0.008771929824561403,
836
+ 0.008771929824561403,
837
+ 0.012048192771084338,
838
+ 0.012048192771084338,
839
+ 0.025362318840579712,
840
+ 0.025362318840579712,
841
+ 0.030303030303030304,
842
+ 0.030303030303030304,
843
+ 0.03404255319148936,
844
+ 0.03404255319148936,
845
+ 0.04411764705882353,
846
+ 0.04411764705882353,
847
+ 0.14285714285714285,
848
+ 0.14285714285714285,
849
+ 0.19230769230769232,
850
+ 0.19230769230769232,
851
+ 0.5,
852
+ 0.5,
853
+ 1.0,
854
+ 1.0
855
+ ],
856
+ "x_min": -1.0748024500817872,
857
+ "x_max": -0.2074305666582218
858
+ }
859
+ ],
860
+ "Year4": [
861
+ {
862
+ "coef": [
863
+ [
864
+ 0.8190942240004722
865
+ ]
866
+ ],
867
+ "intercept": [
868
+ -1.0539168591146901
869
+ ],
870
+ "x0": [
871
+ -1.0313219132060323,
872
+ -1.0053735093642344,
873
+ -1.0053288892718815,
874
+ -0.9642526202832311,
875
+ -0.9640965491293177,
876
+ -0.954884176782798,
877
+ -0.9546714295982913,
878
+ -0.9435693171577293,
879
+ -0.9435226923193818,
880
+ -0.7449574166270543,
881
+ -0.7392054982841358,
882
+ -0.6585497030559744,
883
+ -0.6567643867327387,
884
+ -0.6452376282022904,
885
+ -0.6449614919869047,
886
+ -0.43043575297911685,
887
+ -0.42524926454752954,
888
+ -0.4104055759595865,
889
+ -0.40271872682524845,
890
+ -0.3914143272751702,
891
+ -0.390427198891351,
892
+ -0.33587071880277186,
893
+ -0.3245258459636988,
894
+ -0.2549805300155462
895
+ ],
896
+ "y0": [
897
+ 0.0,
898
+ 0.0,
899
+ 0.01276595744680851,
900
+ 0.01276595744680851,
901
+ 0.014925373134328358,
902
+ 0.014925373134328358,
903
+ 0.015873015873015872,
904
+ 0.015873015873015872,
905
+ 0.0413625304136253,
906
+ 0.0413625304136253,
907
+ 0.14285714285714285,
908
+ 0.14285714285714285,
909
+ 0.16666666666666666,
910
+ 0.16666666666666666,
911
+ 0.23404255319148937,
912
+ 0.23404255319148937,
913
+ 0.5,
914
+ 0.5,
915
+ 0.6666666666666666,
916
+ 0.6666666666666666,
917
+ 0.8,
918
+ 0.8,
919
+ 1.0,
920
+ 1.0
921
+ ],
922
+ "x_min": -1.0313219132060323,
923
+ "x_max": -0.2549805300155462
924
+ },
925
+ {
926
+ "coef": [
927
+ [
928
+ 0.856077506450151
929
+ ]
930
+ ],
931
+ "intercept": [
932
+ -1.0600982090400248
933
+ ],
934
+ "x0": [
935
+ -1.0330556807171007,
936
+ -1.0223796388208872,
937
+ -1.022273864706396,
938
+ -0.9781465860916567,
939
+ -0.9780379768341685,
940
+ -0.9075725291232892,
941
+ -0.9072356159098148,
942
+ -0.8509045328307906,
943
+ -0.8501607494895753,
944
+ -0.7390523820159398,
945
+ -0.7384643816501117,
946
+ -0.7137581610461939,
947
+ -0.710783614482583,
948
+ -0.6662629015752507,
949
+ -0.6650945292598474,
950
+ -0.5817147660121833,
951
+ -0.5747212687119436,
952
+ -0.4885969594776609,
953
+ -0.4864674322274789,
954
+ -0.40679900829583393,
955
+ -0.40514142232942374,
956
+ -0.3106297842339205,
957
+ -0.2956753329634969,
958
+ -0.23905334954294566
959
+ ],
960
+ "y0": [
961
+ 0.0,
962
+ 0.0,
963
+ 0.0075046904315197,
964
+ 0.0075046904315197,
965
+ 0.024861878453038673,
966
+ 0.024861878453038673,
967
+ 0.028368794326241134,
968
+ 0.028368794326241134,
969
+ 0.08,
970
+ 0.08,
971
+ 0.13333333333333333,
972
+ 0.13333333333333333,
973
+ 0.13636363636363635,
974
+ 0.13636363636363635,
975
+ 0.14285714285714285,
976
+ 0.14285714285714285,
977
+ 0.28,
978
+ 0.28,
979
+ 0.35294117647058826,
980
+ 0.35294117647058826,
981
+ 0.4,
982
+ 0.4,
983
+ 0.5714285714285714,
984
+ 0.5714285714285714
985
+ ],
986
+ "x_min": -1.0330556807171007,
987
+ "x_max": -0.23905334954294566
988
+ },
989
+ {
990
+ "coef": [
991
+ [
992
+ 0.8585003597355843
993
+ ]
994
+ ],
995
+ "intercept": [
996
+ -1.0604246661103718
997
+ ],
998
+ "x0": [
999
+ -1.0360817104479019,
1000
+ -1.0007772811603988,
1001
+ -1.0006687866767054,
1002
+ -0.9767412500087636,
1003
+ -0.976630548792558,
1004
+ -0.9693885771858303,
1005
+ -0.9689904378663229,
1006
+ -0.9617285864780059,
1007
+ -0.961643259487529,
1008
+ -0.9356609478269531,
1009
+ -0.935634927572286,
1010
+ -0.8015286841834456,
1011
+ -0.8009986334303099,
1012
+ -0.7350735678108886,
1013
+ -0.7300270967678203,
1014
+ -0.6159721076790228,
1015
+ -0.6139968710017245,
1016
+ -0.5084148136893157,
1017
+ -0.4950787295765352,
1018
+ -0.4171754687095732,
1019
+ -0.410474063416127,
1020
+ -0.3947136181910169,
1021
+ -0.2561255970145244
1022
+ ],
1023
+ "y0": [
1024
+ 0.0,
1025
+ 0.0,
1026
+ 0.01276595744680851,
1027
+ 0.01276595744680851,
1028
+ 0.015151515151515152,
1029
+ 0.015151515151515152,
1030
+ 0.016666666666666666,
1031
+ 0.016666666666666666,
1032
+ 0.02040816326530612,
1033
+ 0.02040816326530612,
1034
+ 0.05102040816326531,
1035
+ 0.05102040816326531,
1036
+ 0.06976744186046512,
1037
+ 0.06976744186046512,
1038
+ 0.125,
1039
+ 0.125,
1040
+ 0.15151515151515152,
1041
+ 0.15151515151515152,
1042
+ 0.29411764705882354,
1043
+ 0.29411764705882354,
1044
+ 0.5,
1045
+ 0.5217391304347826,
1046
+ 0.5217391304347826
1047
+ ],
1048
+ "x_min": -1.0360817104479019,
1049
+ "x_max": -0.2561255970145244
1050
+ },
1051
+ {
1052
+ "coef": [
1053
+ [
1054
+ 0.8864459984575777
1055
+ ]
1056
+ ],
1057
+ "intercept": [
1058
+ -1.0662216218164644
1059
+ ],
1060
+ "x0": [
1061
+ -1.0424332357041397,
1062
+ -1.0184870539852977,
1063
+ -1.01844292907122,
1064
+ -1.0126147914060832,
1065
+ -1.0125655876027786,
1066
+ -0.9922555322743289,
1067
+ -0.9920234818543143,
1068
+ -0.9671835592802049,
1069
+ -0.9670976210401243,
1070
+ -0.8749222540163778,
1071
+ -0.8744823786193716,
1072
+ -0.8319453406220222,
1073
+ -0.8315874803699068,
1074
+ -0.7219383963989983,
1075
+ -0.7217327046875728,
1076
+ -0.6461072383437344,
1077
+ -0.6401546480789235,
1078
+ -0.568601750814193,
1079
+ -0.5679624315981003,
1080
+ -0.38803089916832456,
1081
+ -0.383552547314044,
1082
+ -0.34071277053335514,
1083
+ -0.3384103231383413,
1084
+ -0.28819988266798946,
1085
+ -0.2564333788915193,
1086
+ -0.22641950798422328,
1087
+ -0.21000379829432092
1088
+ ],
1089
+ "y0": [
1090
+ 0.0,
1091
+ 0.0,
1092
+ 0.011494252873563218,
1093
+ 0.011494252873563218,
1094
+ 0.01606425702811245,
1095
+ 0.01606425702811245,
1096
+ 0.01818181818181818,
1097
+ 0.01818181818181818,
1098
+ 0.0273224043715847,
1099
+ 0.0273224043715847,
1100
+ 0.046153846153846156,
1101
+ 0.046153846153846156,
1102
+ 0.06756756756756757,
1103
+ 0.06756756756756757,
1104
+ 0.15151515151515152,
1105
+ 0.15151515151515152,
1106
+ 0.16666666666666666,
1107
+ 0.16666666666666666,
1108
+ 0.225,
1109
+ 0.225,
1110
+ 0.2857142857142857,
1111
+ 0.2857142857142857,
1112
+ 0.3333333333333333,
1113
+ 0.3333333333333333,
1114
+ 0.8,
1115
+ 0.8,
1116
+ 1.0
1117
+ ],
1118
+ "x_min": -1.0424332357041397,
1119
+ "x_max": -0.21000379829432092
1120
+ },
1121
+ {
1122
+ "coef": [
1123
+ [
1124
+ 0.9012593848613762
1125
+ ]
1126
+ ],
1127
+ "intercept": [
1128
+ -1.0688778554457468
1129
+ ],
1130
+ "x0": [
1131
+ -1.0449889606977463,
1132
+ -1.0196230955845658,
1133
+ -1.0195776054559984,
1134
+ -0.992727971135631,
1135
+ -0.9926598618472616,
1136
+ -0.953584482681364,
1137
+ -0.9533387842823262,
1138
+ -0.9399365443137842,
1139
+ -0.9393960884147694,
1140
+ -0.9042681337052343,
1141
+ -0.9038735927067686,
1142
+ -0.8675858126275863,
1143
+ -0.8675571668399313,
1144
+ -0.7745323820816031,
1145
+ -0.7739513815820585,
1146
+ -0.682605242666273,
1147
+ -0.6801244341905233,
1148
+ -0.480141462235779,
1149
+ -0.46946433244164165,
1150
+ -0.28918920577992047,
1151
+ -0.2817873921022582,
1152
+ -0.24752622427824866,
1153
+ -0.23926474151508748,
1154
+ -0.19835178811887932
1155
+ ],
1156
+ "y0": [
1157
+ 0.0,
1158
+ 0.0,
1159
+ 0.013157894736842105,
1160
+ 0.013157894736842105,
1161
+ 0.02909090909090909,
1162
+ 0.02909090909090909,
1163
+ 0.030303030303030304,
1164
+ 0.030303030303030304,
1165
+ 0.035211267605633804,
1166
+ 0.035211267605633804,
1167
+ 0.043478260869565216,
1168
+ 0.043478260869565216,
1169
+ 0.05343511450381679,
1170
+ 0.05343511450381679,
1171
+ 0.06060606060606061,
1172
+ 0.06060606060606061,
1173
+ 0.18181818181818182,
1174
+ 0.18181818181818182,
1175
+ 0.20833333333333334,
1176
+ 0.20833333333333334,
1177
+ 0.5,
1178
+ 0.5,
1179
+ 1.0,
1180
+ 1.0
1181
+ ],
1182
+ "x_min": -1.0449889606977463,
1183
+ "x_max": -0.19835178811887932
1184
+ }
1185
+ ],
1186
+ "Year5": [
1187
+ {
1188
+ "coef": [
1189
+ [
1190
+ 0.8660543148392982
1191
+ ]
1192
+ ],
1193
+ "intercept": [
1194
+ -1.0437479139920183
1195
+ ],
1196
+ "x0": [
1197
+ -1.0198575606915383,
1198
+ -1.009192442633084,
1199
+ -1.0090951147282494,
1200
+ -0.996765494951011,
1201
+ -0.9966786364018031,
1202
+ -0.9694527205882573,
1203
+ -0.9691203919455227,
1204
+ -0.9618243512433542,
1205
+ -0.9616793611534129,
1206
+ -0.9549521048948647,
1207
+ -0.9548353062469774,
1208
+ -0.9270739562915409,
1209
+ -0.9270246583704393,
1210
+ -0.8593771992907167,
1211
+ -0.858240908019756,
1212
+ -0.7170752914335093,
1213
+ -0.7109936056475223,
1214
+ -0.6257136739529925,
1215
+ -0.6238260023521116,
1216
+ -0.611638394786465,
1217
+ -0.6113464272034804,
1218
+ -0.3845215559397359,
1219
+ -0.3790377171414321,
1220
+ -0.36334301417193404,
1221
+ -0.355215464660233,
1222
+ -0.34326296430050995,
1223
+ -0.34221924213637167,
1224
+ -0.28453494453213046,
1225
+ -0.2725396504796398,
1226
+ -0.19900718108973836
1227
+ ],
1228
+ "y0": [
1229
+ 0.0,
1230
+ 0.0,
1231
+ 0.007462686567164179,
1232
+ 0.007462686567164179,
1233
+ 0.014005602240896359,
1234
+ 0.014005602240896359,
1235
+ 0.014925373134328358,
1236
+ 0.014925373134328358,
1237
+ 0.020833333333333332,
1238
+ 0.020833333333333332,
1239
+ 0.02564102564102564,
1240
+ 0.02564102564102564,
1241
+ 0.05150214592274678,
1242
+ 0.05150214592274678,
1243
+ 0.055900621118012424,
1244
+ 0.055900621118012424,
1245
+ 0.15384615384615385,
1246
+ 0.15384615384615385,
1247
+ 0.16666666666666666,
1248
+ 0.16666666666666666,
1249
+ 0.2553191489361702,
1250
+ 0.2553191489361702,
1251
+ 0.5,
1252
+ 0.5,
1253
+ 0.6666666666666666,
1254
+ 0.6666666666666666,
1255
+ 0.75,
1256
+ 0.75,
1257
+ 1.0,
1258
+ 1.0
1259
+ ],
1260
+ "x_min": -1.0198575606915383,
1261
+ "x_max": -0.19900718108973836
1262
+ },
1263
+ {
1264
+ "coef": [
1265
+ [
1266
+ 0.880012551316561
1267
+ ]
1268
+ ],
1269
+ "intercept": [
1270
+ -1.0453132812149015
1271
+ ],
1272
+ "x0": [
1273
+ -1.0175146716682173,
1274
+ -1.0065401386425719,
1275
+ -1.0064314071928429,
1276
+ -0.9610703753425397,
1277
+ -0.9609587294821373,
1278
+ -0.83027076539931,
1279
+ -0.8295061866423656,
1280
+ -0.7152913437147231,
1281
+ -0.7146869034646186,
1282
+ -0.6404667444126881,
1283
+ -0.6392657056113893,
1284
+ -0.5756762414133699,
1285
+ -0.5740725484202087,
1286
+ -0.5535547301087054,
1287
+ -0.5463657018309629,
1288
+ -0.4578334456642127,
1289
+ -0.4556443790266582,
1290
+ -0.3745262787076985,
1291
+ -0.3720445777007829,
1292
+ -0.3303723734659165,
1293
+ -0.30483974936177327,
1294
+ -0.20131285355801098
1295
+ ],
1296
+ "y0": [
1297
+ 0.0,
1298
+ 0.0,
1299
+ 0.01338432122370937,
1300
+ 0.01338432122370937,
1301
+ 0.03375527426160337,
1302
+ 0.03375527426160337,
1303
+ 0.08080808080808081,
1304
+ 0.08080808080808081,
1305
+ 0.14705882352941177,
1306
+ 0.14705882352941177,
1307
+ 0.15384615384615385,
1308
+ 0.15384615384615385,
1309
+ 0.16666666666666666,
1310
+ 0.16666666666666666,
1311
+ 0.28,
1312
+ 0.28,
1313
+ 0.375,
1314
+ 0.375,
1315
+ 0.5,
1316
+ 0.5,
1317
+ 0.6153846153846154,
1318
+ 0.6153846153846154
1319
+ ],
1320
+ "x_min": -1.0175146716682173,
1321
+ "x_max": -0.20131285355801098
1322
+ },
1323
+ {
1324
+ "coef": [
1325
+ [
1326
+ 0.9028025634171076
1327
+ ]
1328
+ ],
1329
+ "intercept": [
1330
+ -1.048856420572187
1331
+ ],
1332
+ "x0": [
1333
+ -1.0232572667407367,
1334
+ -0.9892487568249199,
1335
+ -0.9891943738545478,
1336
+ -0.9450672110734718,
1337
+ -0.9449774808539588,
1338
+ -0.9279493892044912,
1339
+ -0.9277959061348623,
1340
+ -0.917654373408908,
1341
+ -0.9176270104004387,
1342
+ -0.9058800331967529,
1343
+ -0.9058212444322443,
1344
+ -0.7766003248216775,
1345
+ -0.7760429212361746,
1346
+ -0.7067158469260536,
1347
+ -0.7014089569029724,
1348
+ -0.5814682540806804,
1349
+ -0.5793910869421953,
1350
+ -0.4683605545591305,
1351
+ -0.45433627281430666,
1352
+ -0.3724128783606261,
1353
+ -0.3653656525688004,
1354
+ -0.3487919025540577,
1355
+ -0.20305216073778432
1356
+ ],
1357
+ "y0": [
1358
+ 0.0,
1359
+ 0.0,
1360
+ 0.018276762402088774,
1361
+ 0.018276762402088774,
1362
+ 0.03225806451612903,
1363
+ 0.03225806451612903,
1364
+ 0.038461538461538464,
1365
+ 0.038461538461538464,
1366
+ 0.058823529411764705,
1367
+ 0.058823529411764705,
1368
+ 0.06550218340611354,
1369
+ 0.06550218340611354,
1370
+ 0.07142857142857142,
1371
+ 0.07142857142857142,
1372
+ 0.14634146341463414,
1373
+ 0.14634146341463414,
1374
+ 0.15625,
1375
+ 0.15625,
1376
+ 0.3125,
1377
+ 0.3125,
1378
+ 0.5,
1379
+ 0.5217391304347826,
1380
+ 0.5217391304347826
1381
+ ],
1382
+ "x_min": -1.0232572667407367,
1383
+ "x_max": -0.20305216073778432
1384
+ },
1385
+ {
1386
+ "coef": [
1387
+ [
1388
+ 0.9195253344194736
1389
+ ]
1390
+ ],
1391
+ "intercept": [
1392
+ -1.0526742251386563
1393
+ ],
1394
+ "x0": [
1395
+ -1.027998132366738,
1396
+ -1.0114738875094686,
1397
+ -1.0114354431363521,
1398
+ -1.003158355559802,
1399
+ -1.0031125840447364,
1400
+ -0.9970669588798614,
1401
+ -0.9970159189476296,
1402
+ -0.9759479571648856,
1403
+ -0.9757072473636824,
1404
+ -0.956057202302328,
1405
+ -0.9560149796040267,
1406
+ -0.857033108857958,
1407
+ -0.855864917850633,
1408
+ -0.8096555007192244,
1409
+ -0.809284286264453,
1410
+ -0.7259433252854135,
1411
+ -0.7259417084499764,
1412
+ -0.7002247898546443,
1413
+ -0.6953300809066083,
1414
+ -0.6812059820115413,
1415
+ -0.678662699868918,
1416
+ -0.5364847684844201,
1417
+ -0.5358215919152874,
1418
+ -0.2801553504147556,
1419
+ -0.2712187447017995,
1420
+ -0.24561919739760774,
1421
+ -0.2126672690689536,
1422
+ -0.16450508468334957
1423
+ ],
1424
+ "y0": [
1425
+ 0.0,
1426
+ 0.0,
1427
+ 0.010309278350515464,
1428
+ 0.010309278350515464,
1429
+ 0.011904761904761904,
1430
+ 0.011904761904761904,
1431
+ 0.02066115702479339,
1432
+ 0.02066115702479339,
1433
+ 0.028089887640449437,
1434
+ 0.028089887640449437,
1435
+ 0.03125,
1436
+ 0.03125,
1437
+ 0.05970149253731343,
1438
+ 0.05970149253731343,
1439
+ 0.09523809523809523,
1440
+ 0.09523809523809523,
1441
+ 0.1,
1442
+ 0.1,
1443
+ 0.16666666666666666,
1444
+ 0.16666666666666666,
1445
+ 0.19047619047619047,
1446
+ 0.19047619047619047,
1447
+ 0.24489795918367346,
1448
+ 0.24489795918367346,
1449
+ 0.3333333333333333,
1450
+ 0.3333333333333333,
1451
+ 1.0,
1452
+ 1.0
1453
+ ],
1454
+ "x_min": -1.027998132366738,
1455
+ "x_max": -0.16450508468334957
1456
+ },
1457
+ {
1458
+ "coef": [
1459
+ [
1460
+ 0.9286898146036517
1461
+ ]
1462
+ ],
1463
+ "intercept": [
1464
+ -1.052946597719351
1465
+ ],
1466
+ "x0": [
1467
+ -1.028330628546371,
1468
+ -1.0216343897099125,
1469
+ -1.0216048340125974,
1470
+ -1.0021927364312788,
1471
+ -1.0021458617803458,
1472
+ -0.9744790409538497,
1473
+ -0.9744088587139185,
1474
+ -0.9377884190976589,
1475
+ -0.9375419059691927,
1476
+ -0.920080871890252,
1477
+ -0.919523966855932,
1478
+ -0.845528097489541,
1479
+ -0.8454985798482567,
1480
+ -0.7496425237983724,
1481
+ -0.749043840161597,
1482
+ -0.6549175206586845,
1483
+ -0.652361207124412,
1484
+ -0.4462916202017696,
1485
+ -0.43528952484989514,
1486
+ -0.24952760461993306,
1487
+ -0.2419005118123544,
1488
+ -0.20659658252292123,
1489
+ -0.19808365602856748,
1490
+ -0.15592548964203212
1491
+ ],
1492
+ "y0": [
1493
+ 0.0,
1494
+ 0.0,
1495
+ 0.005847953216374269,
1496
+ 0.005847953216374269,
1497
+ 0.013559322033898305,
1498
+ 0.013559322033898305,
1499
+ 0.03557312252964427,
1500
+ 0.03557312252964427,
1501
+ 0.039473684210526314,
1502
+ 0.039473684210526314,
1503
+ 0.04954954954954955,
1504
+ 0.04954954954954955,
1505
+ 0.05555555555555555,
1506
+ 0.05555555555555555,
1507
+ 0.06451612903225806,
1508
+ 0.06451612903225806,
1509
+ 0.2222222222222222,
1510
+ 0.2222222222222222,
1511
+ 0.24,
1512
+ 0.24,
1513
+ 0.5,
1514
+ 0.5,
1515
+ 1.0,
1516
+ 1.0
1517
+ ],
1518
+ "x_min": -1.028330628546371,
1519
+ "x_max": -0.15592548964203212
1520
+ }
1521
+ ],
1522
+ "Year6": [
1523
+ {
1524
+ "coef": [
1525
+ [
1526
+ 1.0852048658738978
1527
+ ]
1528
+ ],
1529
+ "intercept": [
1530
+ -1.035916661341561
1531
+ ],
1532
+ "x0": [
1533
+ -1.005980978088325,
1534
+ -0.992617107238837,
1535
+ -0.9924951510126491,
1536
+ -0.9580139655234777,
1537
+ -0.9579433152430766,
1538
+ -0.9246515334502217,
1539
+ -0.924505179510471,
1540
+ -0.8898424604786621,
1541
+ -0.8896571914783059,
1542
+ -0.804936282733351,
1543
+ -0.803468069970993,
1544
+ -0.626581226514864,
1545
+ -0.6189606016942442,
1546
+ -0.49446407020781746,
1547
+ -0.4940982217427693,
1548
+ -0.20987649363751648,
1549
+ -0.2030049978830133,
1550
+ -0.18333883175565535,
1551
+ -0.17315464800805103,
1552
+ -0.15817762944526292,
1553
+ -0.1568697988026161,
1554
+ -0.08458878897212263,
1555
+ -0.06955814799463778,
1556
+ 0.022581331267065963
1557
+ ],
1558
+ "y0": [
1559
+ 0.0,
1560
+ 0.0,
1561
+ 0.0196078431372549,
1562
+ 0.0196078431372549,
1563
+ 0.031413612565445025,
1564
+ 0.031413612565445025,
1565
+ 0.03571428571428571,
1566
+ 0.03571428571428571,
1567
+ 0.075,
1568
+ 0.075,
1569
+ 0.08943089430894309,
1570
+ 0.08943089430894309,
1571
+ 0.19230769230769232,
1572
+ 0.19230769230769232,
1573
+ 0.3076923076923077,
1574
+ 0.3076923076923077,
1575
+ 0.5,
1576
+ 0.5,
1577
+ 0.6666666666666666,
1578
+ 0.6666666666666666,
1579
+ 0.75,
1580
+ 0.75,
1581
+ 1.0,
1582
+ 1.0
1583
+ ],
1584
+ "x_min": -1.005980978088325,
1585
+ "x_max": 0.022581331267065963
1586
+ },
1587
+ {
1588
+ "coef": [
1589
+ [
1590
+ 1.0815510032934803
1591
+ ]
1592
+ ],
1593
+ "intercept": [
1594
+ -1.035107731627152
1595
+ ],
1596
+ "x0": [
1597
+ -1.0009427484114015,
1598
+ -0.9874993181082526,
1599
+ -0.9873212201784524,
1600
+ -0.9757264135898254,
1601
+ -0.9756715816841481,
1602
+ -0.9315717090666786,
1603
+ -0.9314344943279217,
1604
+ -0.7708166730699167,
1605
+ -0.7698769922432822,
1606
+ -0.6295049284873838,
1607
+ -0.6287620607203805,
1608
+ -0.5757619734171757,
1609
+ -0.5727917271929661,
1610
+ -0.4579154963332145,
1611
+ -0.45594452925651385,
1612
+ -0.43297477554204167,
1613
+ -0.4218923243398164,
1614
+ -0.31308461433871226,
1615
+ -0.3103942126909389,
1616
+ -0.2707792184756357,
1617
+ -0.2626320732164801,
1618
+ -0.2106986314699929,
1619
+ -0.20764857700214656,
1620
+ 0.0021837342124875203
1621
+ ],
1622
+ "y0": [
1623
+ 0.0,
1624
+ 0.0,
1625
+ 0.02247191011235955,
1626
+ 0.02247191011235955,
1627
+ 0.023178807947019868,
1628
+ 0.023178807947019868,
1629
+ 0.05263157894736842,
1630
+ 0.05263157894736842,
1631
+ 0.12857142857142856,
1632
+ 0.12857142857142856,
1633
+ 0.16666666666666666,
1634
+ 0.16666666666666666,
1635
+ 0.17391304347826086,
1636
+ 0.17391304347826086,
1637
+ 0.25,
1638
+ 0.25,
1639
+ 0.3888888888888889,
1640
+ 0.3888888888888889,
1641
+ 0.42857142857142855,
1642
+ 0.42857142857142855,
1643
+ 0.6,
1644
+ 0.6,
1645
+ 0.6666666666666666,
1646
+ 0.6666666666666666
1647
+ ],
1648
+ "x_min": -1.0009427484114015,
1649
+ "x_max": 0.0021837342124875203
1650
+ },
1651
+ {
1652
+ "coef": [
1653
+ [
1654
+ 1.0862251826187543
1655
+ ]
1656
+ ],
1657
+ "intercept": [
1658
+ -1.0364133555785005
1659
+ ],
1660
+ "x0": [
1661
+ -1.0056132153571375,
1662
+ -0.9646951881042257,
1663
+ -0.9646297561323668,
1664
+ -0.8909416128641529,
1665
+ -0.8907569466014592,
1666
+ -0.8785549561733546,
1667
+ -0.8785220338157143,
1668
+ -0.875131937395683,
1669
+ -0.8742413989517227,
1670
+ -0.6247599973033613,
1671
+ -0.618374905127016,
1672
+ -0.33797800147091395,
1673
+ -0.32110440294931775,
1674
+ -0.30249708782419427,
1675
+ -0.29867233211602406,
1676
+ -0.2140575998719224,
1677
+ -0.19411655698398378,
1678
+ -0.03515148725603212
1679
+ ],
1680
+ "y0": [
1681
+ 0.0,
1682
+ 0.0,
1683
+ 0.031073446327683617,
1684
+ 0.031073446327683617,
1685
+ 0.05128205128205128,
1686
+ 0.05128205128205128,
1687
+ 0.1,
1688
+ 0.1,
1689
+ 0.10762331838565023,
1690
+ 0.10762331838565023,
1691
+ 0.21428571428571427,
1692
+ 0.21428571428571427,
1693
+ 0.4,
1694
+ 0.4,
1695
+ 0.5,
1696
+ 0.5,
1697
+ 0.6666666666666666,
1698
+ 0.6666666666666666
1699
+ ],
1700
+ "x_min": -1.0056132153571375,
1701
+ "x_max": -0.03515148725603212
1702
+ },
1703
+ {
1704
+ "coef": [
1705
+ [
1706
+ 1.1055835597358177
1707
+ ]
1708
+ ],
1709
+ "intercept": [
1710
+ -1.0398357097574384
1711
+ ],
1712
+ "x0": [
1713
+ -1.0101666169484051,
1714
+ -0.990529361486478,
1715
+ -0.9902526067164971,
1716
+ -0.9804929607087343,
1717
+ -0.9802456870186319,
1718
+ -0.9729767803986413,
1719
+ -0.972915412964974,
1720
+ -0.9479142793026699,
1721
+ -0.9472951107273035,
1722
+ -0.9238212436255735,
1723
+ -0.923618278046303,
1724
+ -0.8046082574275262,
1725
+ -0.8032036927853293,
1726
+ -0.7550613941214062,
1727
+ -0.7533547040118196,
1728
+ -0.7428930475118591,
1729
+ -0.7386085298007489,
1730
+ -0.6469935576013042,
1731
+ -0.6469916136128014,
1732
+ -0.5956714044557208,
1733
+ -0.5901460948965311,
1734
+ -0.19399003542444093,
1735
+ -0.18840459401749665,
1736
+ -0.13497443245786,
1737
+ -0.13210279900075916,
1738
+ -0.06947987825013713,
1739
+ -0.02986040409529722,
1740
+ 0.028046993628883632
1741
+ ],
1742
+ "y0": [
1743
+ 0.0,
1744
+ 0.0,
1745
+ 0.0136986301369863,
1746
+ 0.0136986301369863,
1747
+ 0.016666666666666666,
1748
+ 0.016666666666666666,
1749
+ 0.03488372093023256,
1750
+ 0.03488372093023256,
1751
+ 0.04,
1752
+ 0.04,
1753
+ 0.04421768707482993,
1754
+ 0.04421768707482993,
1755
+ 0.10638297872340426,
1756
+ 0.10638297872340426,
1757
+ 0.125,
1758
+ 0.125,
1759
+ 0.14634146341463414,
1760
+ 0.14634146341463414,
1761
+ 0.2,
1762
+ 0.2,
1763
+ 0.3064516129032258,
1764
+ 0.3064516129032258,
1765
+ 0.3333333333333333,
1766
+ 0.3333333333333333,
1767
+ 0.5,
1768
+ 0.5,
1769
+ 1.0,
1770
+ 1.0
1771
+ ],
1772
+ "x_min": -1.0101666169484051,
1773
+ "x_max": 0.028046993628883632
1774
+ },
1775
+ {
1776
+ "coef": [
1777
+ [
1778
+ 1.1609858245073628
1779
+ ]
1780
+ ],
1781
+ "intercept": [
1782
+ -1.0468192035773856
1783
+ ],
1784
+ "x0": [
1785
+ -1.0160459671135647,
1786
+ -1.0076747776761508,
1787
+ -1.00763782912231,
1788
+ -0.9900960155416516,
1789
+ -0.9898319953532863,
1790
+ -0.9851616773877787,
1791
+ -0.9851046391660707,
1792
+ -0.9646025946438821,
1793
+ -0.9645279622846319,
1794
+ -0.9505504234094099,
1795
+ -0.9504641740753713,
1796
+ -0.9028561592395611,
1797
+ -0.9025479850319801,
1798
+ -0.8807193693541586,
1799
+ -0.8800231639685981,
1800
+ -0.7927533872526635,
1801
+ -0.7874815816037036,
1802
+ -0.5556055538274723,
1803
+ -0.546034170004088,
1804
+ -0.04243857243361937,
1805
+ -0.032903691688125125,
1806
+ 0.011230916886143305,
1807
+ 0.021873207594624855,
1808
+ 0.0745765244527723
1809
+ ],
1810
+ "y0": [
1811
+ 0.0,
1812
+ 0.0,
1813
+ 0.013333333333333334,
1814
+ 0.013333333333333334,
1815
+ 0.02564102564102564,
1816
+ 0.02564102564102564,
1817
+ 0.03355704697986577,
1818
+ 0.03355704697986577,
1819
+ 0.03389830508474576,
1820
+ 0.03389830508474576,
1821
+ 0.04830917874396135,
1822
+ 0.04830917874396135,
1823
+ 0.05263157894736842,
1824
+ 0.05263157894736842,
1825
+ 0.06626506024096386,
1826
+ 0.06626506024096386,
1827
+ 0.09230769230769231,
1828
+ 0.09230769230769231,
1829
+ 0.2631578947368421,
1830
+ 0.2631578947368421,
1831
+ 0.5,
1832
+ 0.5,
1833
+ 1.0,
1834
+ 1.0
1835
+ ],
1836
+ "x_min": -1.0160459671135647,
1837
+ "x_max": 0.0745765244527723
1838
+ }
1839
+ ]
1840
+ }
checkpoints/sybil_ensemble_simple_calibrator.json ADDED
@@ -0,0 +1,1998 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Year1": [
3
+ {
4
+ "coef": [
5
+ [
6
+ 0.854556657547542
7
+ ]
8
+ ],
9
+ "intercept": [
10
+ -1.1545482239584481
11
+ ],
12
+ "x0": [
13
+ -1.1360357729796648,
14
+ -1.1161314190688554,
15
+ -1.1160988999061974,
16
+ -1.073612876529882,
17
+ -1.0735402933768126,
18
+ -1.0280575376367502,
19
+ -1.0278736221139817,
20
+ -0.9560547696464696,
21
+ -0.9534790354878826,
22
+ -0.8734646409329012,
23
+ -0.872773038089129,
24
+ -0.7986212739447631,
25
+ -0.7978832178830266,
26
+ -0.7657858779493016,
27
+ -0.7617341080705604,
28
+ -0.7110751930073937,
29
+ -0.7104674300723599,
30
+ -0.6202510021996833,
31
+ -0.6177653984897673,
32
+ -0.5117729076924928,
33
+ -0.49671799022835506,
34
+ -0.40163472186962823,
35
+ -0.37576231688531325,
36
+ -0.36935111064413173
37
+ ],
38
+ "y0": [
39
+ 0.0,
40
+ 0.0,
41
+ 0.003745318352059925,
42
+ 0.003745318352059925,
43
+ 0.004878048780487805,
44
+ 0.004878048780487805,
45
+ 0.007194244604316547,
46
+ 0.007194244604316547,
47
+ 0.012987012987012988,
48
+ 0.012987012987012988,
49
+ 0.045454545454545456,
50
+ 0.045454545454545456,
51
+ 0.0625,
52
+ 0.0625,
53
+ 0.1,
54
+ 0.1,
55
+ 0.125,
56
+ 0.125,
57
+ 0.23529411764705882,
58
+ 0.23529411764705882,
59
+ 0.375,
60
+ 0.375,
61
+ 1.0,
62
+ 1.0
63
+ ],
64
+ "x_min": -1.1360357729796648,
65
+ "x_max": -0.36935111064413173
66
+ },
67
+ {
68
+ "coef": [
69
+ [
70
+ 0.8610539752599486
71
+ ]
72
+ ],
73
+ "intercept": [
74
+ -1.1567984290115039
75
+ ],
76
+ "x0": [
77
+ -1.1378705470845625,
78
+ -1.106519323099567,
79
+ -1.1065117337381025,
80
+ -1.0733190326687234,
81
+ -1.0731443298019434,
82
+ -0.941562854808599,
83
+ -0.9414871023316992,
84
+ -0.8306046195608187,
85
+ -0.8293963521574212,
86
+ -0.8006963509914216,
87
+ -0.8005737921060307,
88
+ -0.6439063788575624,
89
+ -0.6379002236311682,
90
+ -0.5359935368850415,
91
+ -0.5292345785887509,
92
+ -0.4602247393296057,
93
+ -0.44611609712109157,
94
+ -0.38348501673488056,
95
+ -0.36534548053198035,
96
+ -0.36046565583271617
97
+ ],
98
+ "y0": [
99
+ 0.0,
100
+ 0.0,
101
+ 0.003067484662576687,
102
+ 0.003067484662576687,
103
+ 0.006230529595015576,
104
+ 0.006230529595015576,
105
+ 0.03571428571428571,
106
+ 0.03571428571428571,
107
+ 0.08333333333333333,
108
+ 0.08333333333333333,
109
+ 0.09803921568627451,
110
+ 0.09803921568627451,
111
+ 0.14285714285714285,
112
+ 0.14285714285714285,
113
+ 0.25,
114
+ 0.25,
115
+ 0.5,
116
+ 0.5,
117
+ 1.0,
118
+ 1.0
119
+ ],
120
+ "x_min": -1.1378705470845625,
121
+ "x_max": -0.36046565583271617
122
+ },
123
+ {
124
+ "coef": [
125
+ [
126
+ 0.931170651053989
127
+ ]
128
+ ],
129
+ "intercept": [
130
+ -1.1777126799892834
131
+ ],
132
+ "x0": [
133
+ -1.1551989104135245,
134
+ -1.1404158612667903,
135
+ -1.1403709080380073,
136
+ -1.1082794886641045,
137
+ -1.108175942566476,
138
+ -1.0433254136052175,
139
+ -1.042702707840477,
140
+ -1.0140383035344585,
141
+ -1.0130984171672797,
142
+ -0.7646651111536567,
143
+ -0.7600911556810273,
144
+ -0.7312889535464594,
145
+ -0.7246139107321459,
146
+ -0.6148745839835493,
147
+ -0.6138490162558539,
148
+ -0.3805688230821349,
149
+ -0.3740350608528874,
150
+ -0.34233082063097187,
151
+ -0.32275895005404653
152
+ ],
153
+ "y0": [
154
+ 0.0,
155
+ 0.0,
156
+ 0.002105263157894737,
157
+ 0.002105263157894737,
158
+ 0.0030120481927710845,
159
+ 0.0030120481927710845,
160
+ 0.016666666666666666,
161
+ 0.016666666666666666,
162
+ 0.016853932584269662,
163
+ 0.016853932584269662,
164
+ 0.06666666666666667,
165
+ 0.06666666666666667,
166
+ 0.12903225806451613,
167
+ 0.12903225806451613,
168
+ 0.23333333333333334,
169
+ 0.23333333333333334,
170
+ 0.3333333333333333,
171
+ 0.3333333333333333,
172
+ 1.0
173
+ ],
174
+ "x_min": -1.1551989104135245,
175
+ "x_max": -0.32275895005404653
176
+ },
177
+ {
178
+ "coef": [
179
+ [
180
+ 0.802573263743587
181
+ ]
182
+ ],
183
+ "intercept": [
184
+ -1.133514632876246
185
+ ],
186
+ "x0": [
187
+ -1.1145748000846425,
188
+ -1.001099080307295,
189
+ -1.0006650304322395,
190
+ -0.7822120240879247,
191
+ -0.7809762245125411,
192
+ -0.7602535779621472,
193
+ -0.7599881299259228,
194
+ -0.7228992892466355,
195
+ -0.7204894477845987,
196
+ -0.6758539945396886,
197
+ -0.6733669918445594,
198
+ -0.6239612713939791,
199
+ -0.618395903844087,
200
+ -0.5797944303247502,
201
+ -0.5795030067463254,
202
+ -0.4308790865818225,
203
+ -0.42913485044975996,
204
+ -0.4127336156492978
205
+ ],
206
+ "y0": [
207
+ 0.0,
208
+ 0.0,
209
+ 0.018779342723004695,
210
+ 0.018779342723004695,
211
+ 0.06666666666666667,
212
+ 0.06666666666666667,
213
+ 0.08333333333333333,
214
+ 0.08333333333333333,
215
+ 0.125,
216
+ 0.125,
217
+ 0.14285714285714285,
218
+ 0.14285714285714285,
219
+ 0.3333333333333333,
220
+ 0.3333333333333333,
221
+ 0.4,
222
+ 0.4,
223
+ 0.5,
224
+ 0.5
225
+ ],
226
+ "x_min": -1.1145748000846425,
227
+ "x_max": -0.4127336156492978
228
+ },
229
+ {
230
+ "coef": [
231
+ [
232
+ 0.7571081357285535
233
+ ]
234
+ ],
235
+ "intercept": [
236
+ -1.1240990711329706
237
+ ],
238
+ "x0": [
239
+ -1.1080936473109704,
240
+ -1.0478081580528156,
241
+ -1.0477693656166227,
242
+ -0.906516611811425,
243
+ -0.9051812314122925,
244
+ -0.8537131170836589,
245
+ -0.8530645720823533,
246
+ -0.809823116729157,
247
+ -0.8059229792340918,
248
+ -0.775062431397729,
249
+ -0.7727583513501239,
250
+ -0.6678702375770744,
251
+ -0.6576353522247389,
252
+ -0.6414058198676769,
253
+ -0.6391149846419681,
254
+ -0.5392171226404363,
255
+ -0.5379400690975253,
256
+ -0.43595259388335383,
257
+ -0.4059231304165102,
258
+ -0.40304212217287894
259
+ ],
260
+ "y0": [
261
+ 0.0,
262
+ 0.0,
263
+ 0.005633802816901409,
264
+ 0.005633802816901409,
265
+ 0.023809523809523808,
266
+ 0.023809523809523808,
267
+ 0.05263157894736842,
268
+ 0.05263157894736842,
269
+ 0.09090909090909091,
270
+ 0.09090909090909091,
271
+ 0.17857142857142858,
272
+ 0.17857142857142858,
273
+ 0.2,
274
+ 0.2,
275
+ 0.3333333333333333,
276
+ 0.3333333333333333,
277
+ 0.5,
278
+ 0.5,
279
+ 1.0,
280
+ 1.0
281
+ ],
282
+ "x_min": -1.1080936473109704,
283
+ "x_max": -0.40304212217287894
284
+ }
285
+ ],
286
+ "Year2": [
287
+ {
288
+ "coef": [
289
+ [
290
+ 1.062266673654182
291
+ ]
292
+ ],
293
+ "intercept": [
294
+ -1.1402943638341543
295
+ ],
296
+ "x0": [
297
+ -1.1132237228060184,
298
+ -1.0984032927059206,
299
+ -1.0981069262090772,
300
+ -1.081592725093658,
301
+ -1.0814958159559502,
302
+ -1.033709096648227,
303
+ -1.0337017915615265,
304
+ -0.9433254512205224,
305
+ -0.9432834568651239,
306
+ -0.8978076538523547,
307
+ -0.8964592757256059,
308
+ -0.7908901199818554,
309
+ -0.7900304149572032,
310
+ -0.7597781118771237,
311
+ -0.7575168749204351,
312
+ -0.6978551950375774,
313
+ -0.6969377457956264,
314
+ -0.6754802605747152,
315
+ -0.6743523171985429,
316
+ -0.5982205872578594,
317
+ -0.5978797570805355,
318
+ -0.20437640643562294,
319
+ -0.17221541004131058,
320
+ -0.1642458849457179
321
+ ],
322
+ "y0": [
323
+ 0.0,
324
+ 0.0,
325
+ 0.004166666666666667,
326
+ 0.004166666666666667,
327
+ 0.00646551724137931,
328
+ 0.00646551724137931,
329
+ 0.022950819672131147,
330
+ 0.022950819672131147,
331
+ 0.029850746268656716,
332
+ 0.029850746268656716,
333
+ 0.030927835051546393,
334
+ 0.030927835051546393,
335
+ 0.05555555555555555,
336
+ 0.05555555555555555,
337
+ 0.08,
338
+ 0.08,
339
+ 0.1,
340
+ 0.1,
341
+ 0.17391304347826086,
342
+ 0.17391304347826086,
343
+ 0.21875,
344
+ 0.21875,
345
+ 1.0,
346
+ 1.0
347
+ ],
348
+ "x_min": -1.1132237228060184,
349
+ "x_max": -0.1642458849457179
350
+ },
351
+ {
352
+ "coef": [
353
+ [
354
+ 0.9452799797637848
355
+ ]
356
+ ],
357
+ "intercept": [
358
+ -1.1056176033444525
359
+ ],
360
+ "x0": [
361
+ -1.0812889671248251,
362
+ -1.0466438113101284,
363
+ -1.0466141854157391,
364
+ -1.0190228994163042,
365
+ -1.0190087854754137,
366
+ -0.8633880083865842,
367
+ -0.8629823664007918,
368
+ -0.8348653114530901,
369
+ -0.8347858113708686,
370
+ -0.8020762603552521,
371
+ -0.7996074475609661,
372
+ -0.7839658204696691,
373
+ -0.7835622350062019,
374
+ -0.7475163850050008,
375
+ -0.7461899281051441,
376
+ -0.5425558200873033,
377
+ -0.5359621587675816,
378
+ -0.4767176382463163,
379
+ -0.4681188958309078,
380
+ -0.4115751243820749,
381
+ -0.37794935041320266,
382
+ -0.25666073454046767,
383
+ -0.2367468372616991,
384
+ -0.2313896811187538
385
+ ],
386
+ "y0": [
387
+ 0.0,
388
+ 0.0,
389
+ 0.006578947368421052,
390
+ 0.006578947368421052,
391
+ 0.011876484560570071,
392
+ 0.011876484560570071,
393
+ 0.04,
394
+ 0.04,
395
+ 0.043478260869565216,
396
+ 0.043478260869565216,
397
+ 0.07692307692307693,
398
+ 0.07692307692307693,
399
+ 0.1,
400
+ 0.1,
401
+ 0.11290322580645161,
402
+ 0.11290322580645161,
403
+ 0.23076923076923078,
404
+ 0.23076923076923078,
405
+ 0.42857142857142855,
406
+ 0.42857142857142855,
407
+ 0.6666666666666666,
408
+ 0.6666666666666666,
409
+ 1.0,
410
+ 1.0
411
+ ],
412
+ "x_min": -1.0812889671248251,
413
+ "x_max": -0.2313896811187538
414
+ },
415
+ {
416
+ "coef": [
417
+ [
418
+ 0.977569119429414
419
+ ]
420
+ ],
421
+ "intercept": [
422
+ -1.1131720692602696
423
+ ],
424
+ "x0": [
425
+ -1.0845931804016375,
426
+ -1.065066758858955,
427
+ -1.0649363886111944,
428
+ -1.0336518336720375,
429
+ -1.033579472521642,
430
+ -1.0014803065603592,
431
+ -1.0011882908982757,
432
+ -0.6795431230600604,
433
+ -0.674741256056814,
434
+ -0.6518493782261137,
435
+ -0.64987028801675,
436
+ -0.5222888178703454,
437
+ -0.5212121480468886,
438
+ -0.3052231965882647,
439
+ -0.29144341938190454,
440
+ -0.23616471543543072,
441
+ -0.21561761564892545
442
+ ],
443
+ "y0": [
444
+ 0.0,
445
+ 0.0,
446
+ 0.002369668246445498,
447
+ 0.002369668246445498,
448
+ 0.004629629629629629,
449
+ 0.004629629629629629,
450
+ 0.02570694087403599,
451
+ 0.02570694087403599,
452
+ 0.1,
453
+ 0.1,
454
+ 0.14285714285714285,
455
+ 0.14285714285714285,
456
+ 0.38461538461538464,
457
+ 0.38461538461538464,
458
+ 0.6666666666666666,
459
+ 0.6666666666666666,
460
+ 1.0
461
+ ],
462
+ "x_min": -1.0845931804016375,
463
+ "x_max": -0.21561761564892545
464
+ },
465
+ {
466
+ "coef": [
467
+ [
468
+ 0.9331653645301372
469
+ ]
470
+ ],
471
+ "intercept": [
472
+ -1.1044707886310574
473
+ ],
474
+ "x0": [
475
+ -1.0774566054058767,
476
+ -1.0420772338529536,
477
+ -1.0419548398643057,
478
+ -0.9493604640979585,
479
+ -0.9491299707151104,
480
+ -0.9365174523436794,
481
+ -0.9364732614670692,
482
+ -0.7179492653874966,
483
+ -0.7154435675953599,
484
+ -0.6731615199328296,
485
+ -0.67142962135454,
486
+ -0.6270414570925323,
487
+ -0.6242394940967904,
488
+ -0.5120045680430358,
489
+ -0.5055336220583483,
490
+ -0.33179717675997744,
491
+ -0.328290718304015,
492
+ -0.2875046806008894,
493
+ -0.28547662806097474,
494
+ -0.2664066378897004
495
+ ],
496
+ "y0": [
497
+ 0.0,
498
+ 0.0,
499
+ 0.007054673721340388,
500
+ 0.007054673721340388,
501
+ 0.029411764705882353,
502
+ 0.029411764705882353,
503
+ 0.041025641025641026,
504
+ 0.041025641025641026,
505
+ 0.1,
506
+ 0.1,
507
+ 0.14285714285714285,
508
+ 0.14285714285714285,
509
+ 0.26666666666666666,
510
+ 0.26666666666666666,
511
+ 0.42105263157894735,
512
+ 0.42105263157894735,
513
+ 0.6666666666666666,
514
+ 0.6666666666666666,
515
+ 0.75,
516
+ 0.75
517
+ ],
518
+ "x_min": -1.0774566054058767,
519
+ "x_max": -0.2664066378897004
520
+ },
521
+ {
522
+ "coef": [
523
+ [
524
+ 0.8961901274568367
525
+ ]
526
+ ],
527
+ "intercept": [
528
+ -1.0982403142894093
529
+ ],
530
+ "x0": [
531
+ -1.0758350750074313,
532
+ -1.0632542041947801,
533
+ -1.0631388433027222,
534
+ -1.0490756815117528,
535
+ -1.0490719723622743,
536
+ -1.004288045432703,
537
+ -1.0039359266248848,
538
+ -0.8597483194001383,
539
+ -0.857685938810237,
540
+ -0.7810773324119306,
541
+ -0.7788166141512711,
542
+ -0.7262313576523969,
543
+ -0.7216147585777637,
544
+ -0.6730376804506044,
545
+ -0.6717071674683137,
546
+ -0.5268755303702289,
547
+ -0.5241638650003476,
548
+ -0.40591460382490485,
549
+ -0.4044029534761878,
550
+ -0.28368021375389385,
551
+ -0.24813428917349833,
552
+ -0.24472403504569196
553
+ ],
554
+ "y0": [
555
+ 0.0,
556
+ 0.0,
557
+ 0.003703703703703704,
558
+ 0.003703703703703704,
559
+ 0.003937007874015748,
560
+ 0.003937007874015748,
561
+ 0.01078167115902965,
562
+ 0.01078167115902965,
563
+ 0.05172413793103448,
564
+ 0.05172413793103448,
565
+ 0.08695652173913043,
566
+ 0.08695652173913043,
567
+ 0.23076923076923078,
568
+ 0.23076923076923078,
569
+ 0.26666666666666666,
570
+ 0.26666666666666666,
571
+ 0.4444444444444444,
572
+ 0.4444444444444444,
573
+ 0.625,
574
+ 0.625,
575
+ 1.0,
576
+ 1.0
577
+ ],
578
+ "x_min": -1.0758350750074313,
579
+ "x_max": -0.24472403504569196
580
+ }
581
+ ],
582
+ "Year3": [
583
+ {
584
+ "coef": [
585
+ [
586
+ 1.072854890710045
587
+ ]
588
+ ],
589
+ "intercept": [
590
+ -1.0975483040639067
591
+ ],
592
+ "x0": [
593
+ -1.0668657274687154,
594
+ -1.055840060430324,
595
+ -1.0556273522769775,
596
+ -1.036306556853323,
597
+ -1.0361733269949625,
598
+ -1.0144346304595142,
599
+ -1.0142514059319403,
600
+ -1.0076178099514084,
601
+ -1.0076047887161141,
602
+ -0.9745636399616542,
603
+ -0.9744364251306473,
604
+ -0.893484508393487,
605
+ -0.8934749962572068,
606
+ -0.8126541951262676,
607
+ -0.8108757933379082,
608
+ -0.7132392298627734,
609
+ -0.7109554538692253,
610
+ -0.6506990920367363,
611
+ -0.6497724980555664,
612
+ -0.628972765275148,
613
+ -0.6269619476258803,
614
+ -0.5500713693644852,
615
+ -0.5497271419386303,
616
+ -0.3569641318650252,
617
+ -0.352800853663226,
618
+ -0.2250071731934148,
619
+ -0.21752555028003018,
620
+ -0.15230151923890023,
621
+ -0.11981995587303407,
622
+ -0.11177099398097867
623
+ ],
624
+ "y0": [
625
+ 0.0,
626
+ 0.0,
627
+ 0.008032128514056224,
628
+ 0.008032128514056224,
629
+ 0.014598540145985401,
630
+ 0.014598540145985401,
631
+ 0.015873015873015872,
632
+ 0.015873015873015872,
633
+ 0.01694915254237288,
634
+ 0.01694915254237288,
635
+ 0.03463203463203463,
636
+ 0.03463203463203463,
637
+ 0.04424778761061947,
638
+ 0.04424778761061947,
639
+ 0.06557377049180328,
640
+ 0.06557377049180328,
641
+ 0.08,
642
+ 0.08,
643
+ 0.1111111111111111,
644
+ 0.1111111111111111,
645
+ 0.17391304347826086,
646
+ 0.17391304347826086,
647
+ 0.2222222222222222,
648
+ 0.2222222222222222,
649
+ 0.25,
650
+ 0.25,
651
+ 0.4,
652
+ 0.4,
653
+ 1.0,
654
+ 1.0
655
+ ],
656
+ "x_min": -1.0668657274687154,
657
+ "x_max": -0.11177099398097867
658
+ },
659
+ {
660
+ "coef": [
661
+ [
662
+ 0.9914570976903353
663
+ ]
664
+ ],
665
+ "intercept": [
666
+ -1.0790425515518447
667
+ ],
668
+ "x0": [
669
+ -1.0509692533832513,
670
+ -1.0306651082008873,
671
+ -1.030658061068699,
672
+ -1.0208099967000621,
673
+ -1.020741246533108,
674
+ -0.985112419883033,
675
+ -0.9850553410670821,
676
+ -0.975147553361191,
677
+ -0.974998182229142,
678
+ -0.8779299862351682,
679
+ -0.8776659773207016,
680
+ -0.8460688378948997,
681
+ -0.845974211308601,
682
+ -0.741678014120675,
683
+ -0.7412547134258067,
684
+ -0.48847508646284665,
685
+ -0.4815593234559564,
686
+ -0.4194206961418063,
687
+ -0.4104019034227454,
688
+ -0.35109595731867727,
689
+ -0.3158275575001387,
690
+ -0.1886139682457576,
691
+ -0.16210841876048143
692
+ ],
693
+ "y0": [
694
+ 0.0,
695
+ 0.0,
696
+ 0.005405405405405406,
697
+ 0.005405405405405406,
698
+ 0.007281553398058253,
699
+ 0.007281553398058253,
700
+ 0.014925373134328358,
701
+ 0.014925373134328358,
702
+ 0.020338983050847456,
703
+ 0.020338983050847456,
704
+ 0.04081632653061224,
705
+ 0.04081632653061224,
706
+ 0.08974358974358974,
707
+ 0.08974358974358974,
708
+ 0.13414634146341464,
709
+ 0.13414634146341464,
710
+ 0.23076923076923078,
711
+ 0.23076923076923078,
712
+ 0.42857142857142855,
713
+ 0.42857142857142855,
714
+ 0.7777777777777778,
715
+ 0.7777777777777778,
716
+ 1.0
717
+ ],
718
+ "x_min": -1.0509692533832513,
719
+ "x_max": -0.16210841876048143
720
+ },
721
+ {
722
+ "coef": [
723
+ [
724
+ 1.0359640190491
725
+ ]
726
+ ],
727
+ "intercept": [
728
+ -1.0883499518982132
729
+ ],
730
+ "x0": [
731
+ -1.0552559216978283,
732
+ -1.0333495853697827,
733
+ -1.0333285407884145,
734
+ -1.0011969268015661,
735
+ -1.0011933068093923,
736
+ -0.9916828772639642,
737
+ -0.9911346684278486,
738
+ -0.9698102979418284,
739
+ -0.9697949843715242,
740
+ -0.9302941777878011,
741
+ -0.930229033365741,
742
+ -0.6288182656438468,
743
+ -0.6237295600569457,
744
+ -0.5994702403937844,
745
+ -0.5973729296189209,
746
+ -0.5172434380370258,
747
+ -0.5152343346620796,
748
+ -0.4833593233187604,
749
+ -0.4610294208915229,
750
+ -0.23213841177916572,
751
+ -0.21753550228399432,
752
+ -0.1589547357990222,
753
+ -0.13718025903664743,
754
+ -0.136125351637146
755
+ ],
756
+ "y0": [
757
+ 0.0,
758
+ 0.0,
759
+ 0.0049261083743842365,
760
+ 0.0049261083743842365,
761
+ 0.012345679012345678,
762
+ 0.012345679012345678,
763
+ 0.014925373134328358,
764
+ 0.014925373134328358,
765
+ 0.04516129032258064,
766
+ 0.04516129032258064,
767
+ 0.05263157894736842,
768
+ 0.05263157894736842,
769
+ 0.1,
770
+ 0.1,
771
+ 0.16,
772
+ 0.16,
773
+ 0.2222222222222222,
774
+ 0.2222222222222222,
775
+ 0.3181818181818182,
776
+ 0.3181818181818182,
777
+ 0.6666666666666666,
778
+ 0.6666666666666666,
779
+ 1.0,
780
+ 1.0
781
+ ],
782
+ "x_min": -1.0552559216978283,
783
+ "x_max": -0.136125351637146
784
+ },
785
+ {
786
+ "coef": [
787
+ [
788
+ 0.9429092225039666
789
+ ]
790
+ ],
791
+ "intercept": [
792
+ -1.0694328972087712
793
+ ],
794
+ "x0": [
795
+ -1.039598461979245,
796
+ -1.027090895221624,
797
+ -1.0270806700122288,
798
+ -1.0023414590831823,
799
+ -1.0022412513285868,
800
+ -0.9797331874122825,
801
+ -0.9796138218795896,
802
+ -0.9353377659698549,
803
+ -0.9347416338032845,
804
+ -0.90973249280169,
805
+ -0.9093901256737834,
806
+ -0.8997258380366621,
807
+ -0.8996811857309828,
808
+ -0.6788754217433769,
809
+ -0.6763435601389729,
810
+ -0.5870183789328516,
811
+ -0.5841871586044692,
812
+ -0.47078030609401256,
813
+ -0.4642417922579798,
814
+ -0.4189702554849567,
815
+ -0.4188905613761421,
816
+ -0.288691238429426,
817
+ -0.2851481664915613,
818
+ -0.24393625211769732,
819
+ -0.24188702320683753,
820
+ -0.2226179094044748
821
+ ],
822
+ "y0": [
823
+ 0.0,
824
+ 0.0,
825
+ 0.0026595744680851063,
826
+ 0.0026595744680851063,
827
+ 0.008695652173913044,
828
+ 0.008695652173913044,
829
+ 0.011583011583011582,
830
+ 0.011583011583011582,
831
+ 0.013888888888888888,
832
+ 0.013888888888888888,
833
+ 0.034482758620689655,
834
+ 0.034482758620689655,
835
+ 0.05641025641025641,
836
+ 0.05641025641025641,
837
+ 0.18181818181818182,
838
+ 0.18181818181818182,
839
+ 0.21428571428571427,
840
+ 0.21428571428571427,
841
+ 0.5,
842
+ 0.5,
843
+ 0.5714285714285714,
844
+ 0.5714285714285714,
845
+ 0.6666666666666666,
846
+ 0.6666666666666666,
847
+ 0.75,
848
+ 0.75
849
+ ],
850
+ "x_min": -1.039598461979245,
851
+ "x_max": -0.2226179094044748
852
+ },
853
+ {
854
+ "coef": [
855
+ [
856
+ 0.9300079387746696
857
+ ]
858
+ ],
859
+ "intercept": [
860
+ -1.0690194713018735
861
+ ],
862
+ "x0": [
863
+ -1.0432696190394435,
864
+ -1.0296239120498654,
865
+ -1.029574597651545,
866
+ -1.0151942225358568,
867
+ -1.0150830797862347,
868
+ -0.9686807739460517,
869
+ -0.9686333650499847,
870
+ -0.9202678722062687,
871
+ -0.9200592370322587,
872
+ -0.8215279605321205,
873
+ -0.8193877558337873,
874
+ -0.8032501334690247,
875
+ -0.8001076484435512,
876
+ -0.7398883171030026,
877
+ -0.7375422904448954,
878
+ -0.682972724782267,
879
+ -0.6781819179456279,
880
+ -0.6402737868235991,
881
+ -0.6374435270037346,
882
+ -0.6026054025305556,
883
+ -0.6024444257001804,
884
+ -0.4871964897395866,
885
+ -0.47609418826063177,
886
+ -0.350568790778378,
887
+ -0.3490000981741114,
888
+ -0.22372187551508194,
889
+ -0.18683462242218773,
890
+ -0.18329568206240143
891
+ ],
892
+ "y0": [
893
+ 0.0,
894
+ 0.0,
895
+ 0.0040650406504065045,
896
+ 0.0040650406504065045,
897
+ 0.009708737864077669,
898
+ 0.009708737864077669,
899
+ 0.015151515151515152,
900
+ 0.015151515151515152,
901
+ 0.017142857142857144,
902
+ 0.017142857142857144,
903
+ 0.05555555555555555,
904
+ 0.05555555555555555,
905
+ 0.09523809523809523,
906
+ 0.09523809523809523,
907
+ 0.13043478260869565,
908
+ 0.13043478260869565,
909
+ 0.2727272727272727,
910
+ 0.2727272727272727,
911
+ 0.3,
912
+ 0.3,
913
+ 0.30434782608695654,
914
+ 0.30434782608695654,
915
+ 0.5,
916
+ 0.5,
917
+ 0.625,
918
+ 0.625,
919
+ 1.0,
920
+ 1.0
921
+ ],
922
+ "x_min": -1.0432696190394435,
923
+ "x_max": -0.18329568206240143
924
+ }
925
+ ],
926
+ "Year4": [
927
+ {
928
+ "coef": [
929
+ [
930
+ 1.0713611402736163
931
+ ]
932
+ ],
933
+ "intercept": [
934
+ -1.0720420740830974
935
+ ],
936
+ "x0": [
937
+ -1.0414022172560469,
938
+ -1.0303919014036294,
939
+ -1.030179489406734,
940
+ -1.0108855945889734,
941
+ -1.0107525502283543,
942
+ -0.989044120775359,
943
+ -0.9888611513537834,
944
+ -0.9822367914190364,
945
+ -0.9822237883133847,
946
+ -0.959024555591222,
947
+ -0.9588443480324798,
948
+ -0.9492286431991185,
949
+ -0.9491016054910486,
950
+ -0.868262399207094,
951
+ -0.8682529003146905,
952
+ -0.8274793436967418,
953
+ -0.826701839397852,
954
+ -0.6882680786258673,
955
+ -0.6859874823646543,
956
+ -0.6041189393814397,
957
+ -0.6021109214208971,
958
+ -0.5253273989559846,
959
+ -0.5249836508026502,
960
+ -0.20071579408044027,
961
+ -0.1932445879322574,
962
+ -0.12811136919545385,
963
+ -0.09567503035144409,
964
+ -0.08763727513835629
965
+ ],
966
+ "y0": [
967
+ 0.0,
968
+ 0.0,
969
+ 0.008130081300813007,
970
+ 0.008130081300813007,
971
+ 0.01486988847583643,
972
+ 0.01486988847583643,
973
+ 0.015873015873015872,
974
+ 0.015873015873015872,
975
+ 0.018292682926829267,
976
+ 0.018292682926829267,
977
+ 0.028169014084507043,
978
+ 0.028169014084507043,
979
+ 0.04329004329004329,
980
+ 0.04329004329004329,
981
+ 0.06896551724137931,
982
+ 0.06896551724137931,
983
+ 0.07964601769911504,
984
+ 0.07964601769911504,
985
+ 0.11764705882352941,
986
+ 0.11764705882352941,
987
+ 0.21739130434782608,
988
+ 0.21739130434782608,
989
+ 0.25,
990
+ 0.25,
991
+ 0.4,
992
+ 0.4,
993
+ 1.0,
994
+ 1.0
995
+ ],
996
+ "x_min": -1.0414022172560469,
997
+ "x_max": -0.08763727513835629
998
+ },
999
+ {
1000
+ "coef": [
1001
+ [
1002
+ 1.0236741286444109
1003
+ ]
1004
+ ],
1005
+ "intercept": [
1006
+ -1.0625940402455896
1007
+ ],
1008
+ "x0": [
1009
+ -1.0336085106570108,
1010
+ -1.0144313554536946,
1011
+ -1.014352061695433,
1012
+ -1.0024692401049637,
1013
+ -1.0023982559268134,
1014
+ -0.9959623202441721,
1015
+ -0.9959512916504678,
1016
+ -0.9667386748515856,
1017
+ -0.9665320450724462,
1018
+ -0.8652485370410349,
1019
+ -0.8652359983079437,
1020
+ -0.8220499321037427,
1021
+ -0.821952230661591,
1022
+ -0.7693876649771454,
1023
+ -0.7693015717781595,
1024
+ -0.7142669671983582,
1025
+ -0.7138299115042861,
1026
+ -0.7017531895419336,
1027
+ -0.700041515189594,
1028
+ -0.45283630424364407,
1029
+ -0.4456958160808363,
1030
+ -0.38153801710077406,
1031
+ -0.3722261620546843,
1032
+ -0.3109930912108302,
1033
+ -0.2745786578107059,
1034
+ -0.1432313101190359,
1035
+ -0.1216659095169288,
1036
+ -0.1158644726262289
1037
+ ],
1038
+ "y0": [
1039
+ 0.0,
1040
+ 0.0,
1041
+ 0.00975609756097561,
1042
+ 0.00975609756097561,
1043
+ 0.010752688172043012,
1044
+ 0.010752688172043012,
1045
+ 0.019543973941368076,
1046
+ 0.019543973941368076,
1047
+ 0.02586206896551724,
1048
+ 0.02586206896551724,
1049
+ 0.046875,
1050
+ 0.046875,
1051
+ 0.06976744186046512,
1052
+ 0.06976744186046512,
1053
+ 0.09090909090909091,
1054
+ 0.09090909090909091,
1055
+ 0.14285714285714285,
1056
+ 0.14285714285714285,
1057
+ 0.14864864864864866,
1058
+ 0.14864864864864866,
1059
+ 0.23076923076923078,
1060
+ 0.23076923076923078,
1061
+ 0.42857142857142855,
1062
+ 0.42857142857142855,
1063
+ 0.7777777777777778,
1064
+ 0.7777777777777778,
1065
+ 1.0,
1066
+ 1.0
1067
+ ],
1068
+ "x_min": -1.0336085106570108,
1069
+ "x_max": -0.1158644726262289
1070
+ },
1071
+ {
1072
+ "coef": [
1073
+ [
1074
+ 1.0396994880608152
1075
+ ]
1076
+ ],
1077
+ "intercept": [
1078
+ -1.0658926889834355
1079
+ ],
1080
+ "x0": [
1081
+ -1.0326793286499445,
1082
+ -1.0106940026668443,
1083
+ -1.0106728822031288,
1084
+ -0.9784254083542221,
1085
+ -0.9784217753091158,
1086
+ -0.9469256058925717,
1087
+ -0.9469102371047443,
1088
+ -0.9370942140091818,
1089
+ -0.9369620532787766,
1090
+ -0.915314170567322,
1091
+ -0.9148419676598699,
1092
+ -0.8716363389381502,
1093
+ -0.870683567049227,
1094
+ -0.6047040278319293,
1095
+ -0.5995969734397801,
1096
+ -0.5752501797570768,
1097
+ -0.5731453065193639,
1098
+ -0.49272688479392623,
1099
+ -0.49071053701351774,
1100
+ -0.4587205910634634,
1101
+ -0.43631017169063924,
1102
+ -0.20659382959771744,
1103
+ -0.19193826507312706,
1104
+ -0.1331462686285585,
1105
+ -0.11129327766907215
1106
+ ],
1107
+ "y0": [
1108
+ 0.0,
1109
+ 0.0,
1110
+ 0.009950248756218905,
1111
+ 0.009950248756218905,
1112
+ 0.014150943396226415,
1113
+ 0.014150943396226415,
1114
+ 0.045454545454545456,
1115
+ 0.045454545454545456,
1116
+ 0.05,
1117
+ 0.05,
1118
+ 0.0673076923076923,
1119
+ 0.0673076923076923,
1120
+ 0.07142857142857142,
1121
+ 0.07142857142857142,
1122
+ 0.1,
1123
+ 0.1,
1124
+ 0.2,
1125
+ 0.2,
1126
+ 0.2222222222222222,
1127
+ 0.2222222222222222,
1128
+ 0.4090909090909091,
1129
+ 0.4090909090909091,
1130
+ 0.6666666666666666,
1131
+ 0.6666666666666666,
1132
+ 1.0
1133
+ ],
1134
+ "x_min": -1.0326793286499445,
1135
+ "x_max": -0.11129327766907215
1136
+ },
1137
+ {
1138
+ "coef": [
1139
+ [
1140
+ 0.9866801376021137
1141
+ ]
1142
+ ],
1143
+ "intercept": [
1144
+ -1.055717348217441
1145
+ ],
1146
+ "x0": [
1147
+ -1.0244979646808392,
1148
+ -1.0114097824943242,
1149
+ -1.0113990826191164,
1150
+ -0.9855114494715504,
1151
+ -0.9854065899593796,
1152
+ -0.9761218403287525,
1153
+ -0.9760201492440737,
1154
+ -0.9512964316870484,
1155
+ -0.9511816258120083,
1156
+ -0.8886034699831773,
1157
+ -0.8882452097850468,
1158
+ -0.8781322949592707,
1159
+ -0.8780855698429388,
1160
+ -0.7753388033507341,
1161
+ -0.7726365096184081,
1162
+ -0.6674841788771404,
1163
+ -0.6664703408904253,
1164
+ -0.6470297519604127,
1165
+ -0.644380358469925,
1166
+ -0.550908601082995,
1167
+ -0.5479459522971747,
1168
+ -0.429274625122231,
1169
+ -0.422432586061124,
1170
+ -0.2387327764997047,
1171
+ -0.23502523114565355,
1172
+ -0.19190021298402493,
1173
+ -0.18975585654388327,
1174
+ -0.16959224863314815
1175
+ ],
1176
+ "y0": [
1177
+ 0.0,
1178
+ 0.0,
1179
+ 0.008152173913043478,
1180
+ 0.008152173913043478,
1181
+ 0.010416666666666666,
1182
+ 0.010416666666666666,
1183
+ 0.015151515151515152,
1184
+ 0.015151515151515152,
1185
+ 0.019230769230769232,
1186
+ 0.019230769230769232,
1187
+ 0.034482758620689655,
1188
+ 0.034482758620689655,
1189
+ 0.056910569105691054,
1190
+ 0.056910569105691054,
1191
+ 0.07936507936507936,
1192
+ 0.07936507936507936,
1193
+ 0.2,
1194
+ 0.2,
1195
+ 0.20588235294117646,
1196
+ 0.20588235294117646,
1197
+ 0.26666666666666666,
1198
+ 0.26666666666666666,
1199
+ 0.5,
1200
+ 0.5,
1201
+ 0.6666666666666666,
1202
+ 0.6666666666666666,
1203
+ 0.75,
1204
+ 0.75
1205
+ ],
1206
+ "x_min": -1.0244979646808392,
1207
+ "x_max": -0.16959224863314815
1208
+ },
1209
+ {
1210
+ "coef": [
1211
+ [
1212
+ 0.9720870020574502
1213
+ ]
1214
+ ],
1215
+ "intercept": [
1216
+ -1.0561492900363496
1217
+ ],
1218
+ "x0": [
1219
+ -1.0292343620603719,
1220
+ -1.0149712425262198,
1221
+ -1.0149196968526584,
1222
+ -0.9998886684583321,
1223
+ -0.9997724969529331,
1224
+ -0.9634315079071001,
1225
+ -0.9634086791923234,
1226
+ -0.951270676170449,
1227
+ -0.9512211222153406,
1228
+ -0.8147576198447524,
1229
+ -0.8126328401139585,
1230
+ -0.7783549744382297,
1231
+ -0.7750703047918094,
1232
+ -0.7121262945010313,
1233
+ -0.7096741197122537,
1234
+ -0.6526355039360778,
1235
+ -0.6476279326443739,
1236
+ -0.4480011933435484,
1237
+ -0.43639655803813926,
1238
+ -0.3051916486678352,
1239
+ -0.3035519791260457,
1240
+ -0.17260542823084102,
1241
+ -0.13404917749555145,
1242
+ -0.13035011452912415
1243
+ ],
1244
+ "y0": [
1245
+ 0.0,
1246
+ 0.0,
1247
+ 0.00819672131147541,
1248
+ 0.00819672131147541,
1249
+ 0.011467889908256881,
1250
+ 0.011467889908256881,
1251
+ 0.012987012987012988,
1252
+ 0.012987012987012988,
1253
+ 0.036211699164345405,
1254
+ 0.036211699164345405,
1255
+ 0.07142857142857142,
1256
+ 0.07142857142857142,
1257
+ 0.075,
1258
+ 0.075,
1259
+ 0.13043478260869565,
1260
+ 0.13043478260869565,
1261
+ 0.3170731707317073,
1262
+ 0.3170731707317073,
1263
+ 0.5,
1264
+ 0.5,
1265
+ 0.7142857142857143,
1266
+ 0.7142857142857143,
1267
+ 1.0,
1268
+ 1.0
1269
+ ],
1270
+ "x_min": -1.0292343620603719,
1271
+ "x_max": -0.13035011452912415
1272
+ }
1273
+ ],
1274
+ "Year5": [
1275
+ {
1276
+ "coef": [
1277
+ [
1278
+ 1.1130009773475025
1279
+ ]
1280
+ ],
1281
+ "intercept": [
1282
+ -1.05794336672334
1283
+ ],
1284
+ "x0": [
1285
+ -1.0261126522122785,
1286
+ -1.0146744061867454,
1287
+ -1.0144537385227264,
1288
+ -0.9969480439120526,
1289
+ -0.9968250495003456,
1290
+ -0.9737491227404367,
1291
+ -0.9736590578600733,
1292
+ -0.9412351121614915,
1293
+ -0.940990193071027,
1294
+ -0.9329694846791076,
1295
+ -0.9328188264757706,
1296
+ -0.8462435476743763,
1297
+ -0.8462336630102207,
1298
+ -0.8038753893527305,
1299
+ -0.8030676331731484,
1300
+ -0.6592534983234417,
1301
+ -0.6568842637374115,
1302
+ -0.6446790254063086,
1303
+ -0.6381987988020102,
1304
+ -0.5718338270620633,
1305
+ -0.5697477317150653,
1306
+ -0.4899798519505131,
1307
+ -0.48962280992041207,
1308
+ -0.15275186333929358,
1309
+ -0.14499027909631035,
1310
+ -0.07732563986998098,
1311
+ -0.04362862074369689,
1312
+ -0.03527840143325056
1313
+ ],
1314
+ "y0": [
1315
+ 0.0,
1316
+ 0.0,
1317
+ 0.009950248756218905,
1318
+ 0.009950248756218905,
1319
+ 0.018867924528301886,
1320
+ 0.018867924528301886,
1321
+ 0.020242914979757085,
1322
+ 0.020242914979757085,
1323
+ 0.05084745762711865,
1324
+ 0.05084745762711865,
1325
+ 0.05150214592274678,
1326
+ 0.05150214592274678,
1327
+ 0.07017543859649122,
1328
+ 0.07017543859649122,
1329
+ 0.09433962264150944,
1330
+ 0.09433962264150944,
1331
+ 0.14285714285714285,
1332
+ 0.14285714285714285,
1333
+ 0.14814814814814814,
1334
+ 0.14814814814814814,
1335
+ 0.21739130434782608,
1336
+ 0.21739130434782608,
1337
+ 0.28,
1338
+ 0.28,
1339
+ 0.4,
1340
+ 0.4,
1341
+ 1.0,
1342
+ 1.0
1343
+ ],
1344
+ "x_min": -1.0261126522122785,
1345
+ "x_max": -0.03527840143325056
1346
+ },
1347
+ {
1348
+ "coef": [
1349
+ [
1350
+ 1.0638269123140547
1351
+ ]
1352
+ ],
1353
+ "intercept": [
1354
+ -1.0500459135423696
1355
+ ],
1356
+ "x0": [
1357
+ -1.0199234501712975,
1358
+ -0.9999940866794924,
1359
+ -0.9999116787251026,
1360
+ -0.9875627671022001,
1361
+ -0.9874889986274953,
1362
+ -0.9504306995378152,
1363
+ -0.9502159648739382,
1364
+ -0.9230139844783734,
1365
+ -0.922969931058108,
1366
+ -0.8449597096117958,
1367
+ -0.8449466632048586,
1368
+ -0.8000666587391363,
1369
+ -0.7999651250375173,
1370
+ -0.7453387570904597,
1371
+ -0.7452492869558871,
1372
+ -0.6880559631457261,
1373
+ -0.6876018277071652,
1374
+ -0.4163708637296526,
1375
+ -0.4089503591453124,
1376
+ -0.3422760227720679,
1377
+ -0.3325989812075447,
1378
+ -0.26896409304876334,
1379
+ -0.2311212697577245,
1380
+ -0.14109465757978035,
1381
+ -0.1050875889776246,
1382
+ -0.066181523151848
1383
+ ],
1384
+ "y0": [
1385
+ 0.0,
1386
+ 0.0,
1387
+ 0.010101010101010102,
1388
+ 0.010101010101010102,
1389
+ 0.02570694087403599,
1390
+ 0.02570694087403599,
1391
+ 0.02857142857142857,
1392
+ 0.02857142857142857,
1393
+ 0.031088082901554404,
1394
+ 0.031088082901554404,
1395
+ 0.08196721311475409,
1396
+ 0.08196721311475409,
1397
+ 0.0975609756097561,
1398
+ 0.0975609756097561,
1399
+ 0.11764705882352941,
1400
+ 0.11764705882352941,
1401
+ 0.14285714285714285,
1402
+ 0.14285714285714285,
1403
+ 0.3076923076923077,
1404
+ 0.3076923076923077,
1405
+ 0.42857142857142855,
1406
+ 0.42857142857142855,
1407
+ 0.8333333333333334,
1408
+ 0.8333333333333334,
1409
+ 1.0,
1410
+ 1.0
1411
+ ],
1412
+ "x_min": -1.0199234501712975,
1413
+ "x_max": -0.066181523151848
1414
+ },
1415
+ {
1416
+ "coef": [
1417
+ [
1418
+ 1.096758407454776
1419
+ ]
1420
+ ],
1421
+ "intercept": [
1422
+ -1.055167618027271
1423
+ ],
1424
+ "x0": [
1425
+ -1.020131505808367,
1426
+ -1.0059211960996113,
1427
+ -1.0059050165555292,
1428
+ -0.996939616577453,
1429
+ -0.9969173370183926,
1430
+ -0.9835280206852376,
1431
+ -0.9833181850728733,
1432
+ -0.929671597216839,
1433
+ -0.9296553849868093,
1434
+ -0.9193006483755612,
1435
+ -0.919161242808875,
1436
+ -0.8963253198907385,
1437
+ -0.8958272187346468,
1438
+ -0.8878365014579762,
1439
+ -0.8877675667944027,
1440
+ -0.8502504399770857,
1441
+ -0.8492453634301178,
1442
+ -0.5686688293396501,
1443
+ -0.5632815641355099,
1444
+ -0.5375985154051841,
1445
+ -0.5353781589819728,
1446
+ -0.45054635791402964,
1447
+ -0.4484194179291747,
1448
+ -0.4146738572381863,
1449
+ -0.3910334841196985,
1450
+ -0.2983852309049294,
1451
+ -0.29808164382324565,
1452
+ -0.14871026244525198,
1453
+ -0.13325039755840862,
1454
+ -0.07123188438986094,
1455
+ -0.048179596841319006
1456
+ ],
1457
+ "y0": [
1458
+ 0.0,
1459
+ 0.0,
1460
+ 0.007518796992481203,
1461
+ 0.007518796992481203,
1462
+ 0.017543859649122806,
1463
+ 0.017543859649122806,
1464
+ 0.021479713603818614,
1465
+ 0.021479713603818614,
1466
+ 0.04878048780487805,
1467
+ 0.04878048780487805,
1468
+ 0.06329113924050633,
1469
+ 0.06329113924050633,
1470
+ 0.06896551724137931,
1471
+ 0.06896551724137931,
1472
+ 0.07142857142857142,
1473
+ 0.07142857142857142,
1474
+ 0.07453416149068323,
1475
+ 0.07453416149068323,
1476
+ 0.1111111111111111,
1477
+ 0.1111111111111111,
1478
+ 0.2,
1479
+ 0.2,
1480
+ 0.25,
1481
+ 0.25,
1482
+ 0.42857142857142855,
1483
+ 0.42857142857142855,
1484
+ 0.4375,
1485
+ 0.4375,
1486
+ 0.6666666666666666,
1487
+ 0.6666666666666666,
1488
+ 1.0
1489
+ ],
1490
+ "x_min": -1.020131505808367,
1491
+ "x_max": -0.048179596841319006
1492
+ },
1493
+ {
1494
+ "coef": [
1495
+ [
1496
+ 1.0192893240958014
1497
+ ]
1498
+ ],
1499
+ "intercept": [
1500
+ -1.0434135518718168
1501
+ ],
1502
+ "x0": [
1503
+ -1.0111623826452667,
1504
+ -0.9959888476152152,
1505
+ -0.9959373241054497,
1506
+ -0.9611874678027185,
1507
+ -0.9610824158887104,
1508
+ -0.9355415867075108,
1509
+ -0.9354229865671895,
1510
+ -0.8979901713623936,
1511
+ -0.8978116598109821,
1512
+ -0.8846290685337032,
1513
+ -0.8843235043891193,
1514
+ -0.8755302346654252,
1515
+ -0.8751063969353022,
1516
+ -0.8599594191627716,
1517
+ -0.8599111498093823,
1518
+ -0.7541104380913812,
1519
+ -0.7509770614187808,
1520
+ -0.6423494788656237,
1521
+ -0.6413021645189869,
1522
+ -0.6212190757900966,
1523
+ -0.6184820606801298,
1524
+ -0.52192117855335,
1525
+ -0.5188606160028857,
1526
+ -0.39626727267313655,
1527
+ -0.3891991083266022,
1528
+ -0.34026030244508254,
1529
+ -0.3401742134913346,
1530
+ -0.19942813028762418,
1531
+ -0.19559799202994355,
1532
+ -0.1510479001582279,
1533
+ -0.14883255251569716,
1534
+ -0.1280025494626167
1535
+ ],
1536
+ "y0": [
1537
+ 0.0,
1538
+ 0.0,
1539
+ 0.0136986301369863,
1540
+ 0.0136986301369863,
1541
+ 0.021739130434782608,
1542
+ 0.021739130434782608,
1543
+ 0.02247191011235955,
1544
+ 0.02247191011235955,
1545
+ 0.02564102564102564,
1546
+ 0.02564102564102564,
1547
+ 0.05,
1548
+ 0.05,
1549
+ 0.05405405405405406,
1550
+ 0.05405405405405406,
1551
+ 0.059322033898305086,
1552
+ 0.059322033898305086,
1553
+ 0.109375,
1554
+ 0.109375,
1555
+ 0.2,
1556
+ 0.2,
1557
+ 0.2727272727272727,
1558
+ 0.2727272727272727,
1559
+ 0.2857142857142857,
1560
+ 0.2857142857142857,
1561
+ 0.5,
1562
+ 0.5,
1563
+ 0.6,
1564
+ 0.6,
1565
+ 0.6666666666666666,
1566
+ 0.6666666666666666,
1567
+ 0.75,
1568
+ 0.75
1569
+ ],
1570
+ "x_min": -1.0111623826452667,
1571
+ "x_max": -0.1280025494626167
1572
+ },
1573
+ {
1574
+ "coef": [
1575
+ [
1576
+ 1.0246281291281125
1577
+ ]
1578
+ ],
1579
+ "intercept": [
1580
+ -1.046126360981268
1581
+ ],
1582
+ "x0": [
1583
+ -1.017756686004363,
1584
+ -1.0076691078074915,
1585
+ -1.007111022611281,
1586
+ -0.9865689458798288,
1587
+ -0.9864557783600643,
1588
+ -0.9355790769588279,
1589
+ -0.9355268446213867,
1590
+ -0.8592524325149089,
1591
+ -0.8591646101223447,
1592
+ -0.8017786006234253,
1593
+ -0.8017372850124589,
1594
+ -0.7916875145693405,
1595
+ -0.7894478908774645,
1596
+ -0.6835089846082325,
1597
+ -0.6809242702145596,
1598
+ -0.6208027275469761,
1599
+ -0.6155244368578598,
1600
+ -0.5322587317287224,
1601
+ -0.5320813769109154,
1602
+ -0.40510803046102895,
1603
+ -0.392876105638554,
1604
+ -0.25457965566226204,
1605
+ -0.2528513622775791,
1606
+ -0.11482711286015956,
1607
+ -0.07418678158401704,
1608
+ -0.07028790707685573
1609
+ ],
1610
+ "y0": [
1611
+ 0.0,
1612
+ 0.0,
1613
+ 0.010638297872340425,
1614
+ 0.010638297872340425,
1615
+ 0.016393442622950817,
1616
+ 0.016393442622950817,
1617
+ 0.04918032786885246,
1618
+ 0.04918032786885246,
1619
+ 0.05555555555555555,
1620
+ 0.05555555555555555,
1621
+ 0.07142857142857142,
1622
+ 0.07142857142857142,
1623
+ 0.08333333333333333,
1624
+ 0.08333333333333333,
1625
+ 0.13043478260869565,
1626
+ 0.13043478260869565,
1627
+ 0.3157894736842105,
1628
+ 0.3157894736842105,
1629
+ 0.3333333333333333,
1630
+ 0.3333333333333333,
1631
+ 0.5,
1632
+ 0.5,
1633
+ 0.7142857142857143,
1634
+ 0.7142857142857143,
1635
+ 1.0,
1636
+ 1.0
1637
+ ],
1638
+ "x_min": -1.017756686004363,
1639
+ "x_max": -0.07028790707685573
1640
+ }
1641
+ ],
1642
+ "Year6": [
1643
+ {
1644
+ "coef": [
1645
+ [
1646
+ 1.340606917145108
1647
+ ]
1648
+ ],
1649
+ "intercept": [
1650
+ -1.0475421908007814
1651
+ ],
1652
+ "x0": [
1653
+ -1.0092021741074475,
1654
+ -0.995633400824669,
1655
+ -0.9951590414806812,
1656
+ -0.9820283475396332,
1657
+ -0.9817901515581261,
1658
+ -0.906122027838656,
1659
+ -0.9058965319804526,
1660
+ -0.8970114597943656,
1661
+ -0.8968299923620552,
1662
+ -0.7925502837390519,
1663
+ -0.792538377685589,
1664
+ -0.7439244631515856,
1665
+ -0.7405450017919006,
1666
+ -0.5673212330021985,
1667
+ -0.5644674958186597,
1668
+ -0.46202445575510687,
1669
+ -0.4595117590828409,
1670
+ -0.35183289217277947,
1671
+ -0.35087936911255946,
1672
+ 0.04275873029063826,
1673
+ 0.05210753926378531,
1674
+ 0.1336094294140786,
1675
+ 0.17419740538830197,
1676
+ 0.18425522384048465
1677
+ ],
1678
+ "y0": [
1679
+ 0.0,
1680
+ 0.0,
1681
+ 0.022988505747126436,
1682
+ 0.022988505747126436,
1683
+ 0.03211009174311927,
1684
+ 0.03211009174311927,
1685
+ 0.046511627906976744,
1686
+ 0.046511627906976744,
1687
+ 0.06936416184971098,
1688
+ 0.06936416184971098,
1689
+ 0.10810810810810811,
1690
+ 0.10810810810810811,
1691
+ 0.13414634146341464,
1692
+ 0.13414634146341464,
1693
+ 0.18518518518518517,
1694
+ 0.18518518518518517,
1695
+ 0.3333333333333333,
1696
+ 0.3333333333333333,
1697
+ 0.35294117647058826,
1698
+ 0.35294117647058826,
1699
+ 0.5,
1700
+ 0.5,
1701
+ 1.0,
1702
+ 1.0
1703
+ ],
1704
+ "x_min": -1.0092021741074475,
1705
+ "x_max": 0.18425522384048465
1706
+ },
1707
+ {
1708
+ "coef": [
1709
+ [
1710
+ 1.2907222572139896
1711
+ ]
1712
+ ],
1713
+ "intercept": [
1714
+ -1.039821376539258
1715
+ ],
1716
+ "x0": [
1717
+ -1.0032743278933614,
1718
+ -0.9791775889843037,
1719
+ -0.9789944017955169,
1720
+ -0.9643426097971722,
1721
+ -0.963922185149528,
1722
+ -0.9613656665174612,
1723
+ -0.961356819217672,
1724
+ -0.9205582848036054,
1725
+ -0.9202258763639181,
1726
+ -0.7909939357247382,
1727
+ -0.7909781067514198,
1728
+ -0.7780041955414604,
1729
+ -0.7776605356444324,
1730
+ -0.7365259961709816,
1731
+ -0.7364028071380476,
1732
+ -0.7206493820664985,
1733
+ -0.7201010418121743,
1734
+ -0.6034922842627248,
1735
+ -0.6000744184880863,
1736
+ -0.27099471764664695,
1737
+ -0.26199155151510733,
1738
+ -0.1810967659576298,
1739
+ -0.16935578367307202,
1740
+ -0.09214870653380258,
1741
+ -0.04623468261490005,
1742
+ 0.06299300351957249,
1743
+ 0.10667973894981264,
1744
+ 0.15388377611101745
1745
+ ],
1746
+ "y0": [
1747
+ 0.0,
1748
+ 0.0,
1749
+ 0.014388489208633094,
1750
+ 0.014388489208633094,
1751
+ 0.04,
1752
+ 0.04,
1753
+ 0.0421455938697318,
1754
+ 0.0421455938697318,
1755
+ 0.05138339920948617,
1756
+ 0.05138339920948617,
1757
+ 0.07692307692307693,
1758
+ 0.07692307692307693,
1759
+ 0.08333333333333333,
1760
+ 0.08333333333333333,
1761
+ 0.14285714285714285,
1762
+ 0.14285714285714285,
1763
+ 0.15217391304347827,
1764
+ 0.15217391304347827,
1765
+ 0.20689655172413793,
1766
+ 0.20689655172413793,
1767
+ 0.36363636363636365,
1768
+ 0.36363636363636365,
1769
+ 0.6,
1770
+ 0.6,
1771
+ 0.8333333333333334,
1772
+ 0.8333333333333334,
1773
+ 1.0,
1774
+ 1.0
1775
+ ],
1776
+ "x_min": -1.0032743278933614,
1777
+ "x_max": 0.15388377611101745
1778
+ },
1779
+ {
1780
+ "coef": [
1781
+ [
1782
+ 1.2981443067116996
1783
+ ]
1784
+ ],
1785
+ "intercept": [
1786
+ -1.0424440037259006
1787
+ ],
1788
+ "x0": [
1789
+ -1.0009745886777577,
1790
+ -0.9841549932959078,
1791
+ -0.9841358428769162,
1792
+ -0.9735242233444598,
1793
+ -0.9734978528306313,
1794
+ -0.9576500009696335,
1795
+ -0.9574016355103996,
1796
+ -0.893904504212875,
1797
+ -0.8938853151061683,
1798
+ -0.8816292500621034,
1799
+ -0.8814642469570553,
1800
+ -0.8544352101854283,
1801
+ -0.8538456480944956,
1802
+ -0.8443876817194529,
1803
+ -0.8443060893282346,
1804
+ -0.79990009777071,
1805
+ -0.7987104698741856,
1806
+ -0.7891257045127901,
1807
+ -0.7888712360664938,
1808
+ -0.42983927753286244,
1809
+ -0.4272112210437845,
1810
+ -0.3268026726926374,
1811
+ -0.32428518569341347,
1812
+ -0.284343292209814,
1813
+ -0.2563620927371575,
1814
+ -0.14670184156420663,
1815
+ -0.1463425100660386,
1816
+ 0.030456324575673266,
1817
+ 0.048754917455359426,
1818
+ 0.11314767903017375,
1819
+ 0.1494463503795691
1820
+ ],
1821
+ "y0": [
1822
+ 0.0,
1823
+ 0.0,
1824
+ 0.00980392156862745,
1825
+ 0.00980392156862745,
1826
+ 0.022556390977443608,
1827
+ 0.022556390977443608,
1828
+ 0.03289473684210526,
1829
+ 0.03289473684210526,
1830
+ 0.0625,
1831
+ 0.0625,
1832
+ 0.08771929824561403,
1833
+ 0.08771929824561403,
1834
+ 0.1,
1835
+ 0.1,
1836
+ 0.10526315789473684,
1837
+ 0.10526315789473684,
1838
+ 0.1111111111111111,
1839
+ 0.1111111111111111,
1840
+ 0.14545454545454545,
1841
+ 0.14545454545454545,
1842
+ 0.2631578947368421,
1843
+ 0.2631578947368421,
1844
+ 0.2857142857142857,
1845
+ 0.2857142857142857,
1846
+ 0.42857142857142855,
1847
+ 0.42857142857142855,
1848
+ 0.6363636363636364,
1849
+ 0.6363636363636364,
1850
+ 0.8,
1851
+ 0.8,
1852
+ 1.0
1853
+ ],
1854
+ "x_min": -1.0009745886777577,
1855
+ "x_max": 0.1494463503795691
1856
+ },
1857
+ {
1858
+ "coef": [
1859
+ [
1860
+ 1.267499953639535
1861
+ ]
1862
+ ],
1863
+ "intercept": [
1864
+ -1.035861815812616
1865
+ ],
1866
+ "x0": [
1867
+ -0.9957570540603671,
1868
+ -0.9821540666109716,
1869
+ -0.982102731143961,
1870
+ -0.9638658914809329,
1871
+ -0.9638377872959027,
1872
+ -0.9336125767773732,
1873
+ -0.9334819433124802,
1874
+ -0.8550258905297626,
1875
+ -0.8548039090199113,
1876
+ -0.8384111798528299,
1877
+ -0.8380312067382899,
1878
+ -0.8279540810062146,
1879
+ -0.826569609923502,
1880
+ -0.8077341397870003,
1881
+ -0.8076741161982733,
1882
+ -0.6761095113040186,
1883
+ -0.6722131153609145,
1884
+ -0.5384220470663117,
1885
+ -0.5358309092005328,
1886
+ -0.5108573188459119,
1887
+ -0.5074538038252172,
1888
+ -0.33549109502565666,
1889
+ -0.3195973473534073,
1890
+ -0.2311267327585821,
1891
+ -0.22233737553707267,
1892
+ -0.16148131365196827,
1893
+ -0.16137426088264661,
1894
+ 0.0738068478711209,
1895
+ 0.07656166239514639,
1896
+ 0.10246405073568132
1897
+ ],
1898
+ "y0": [
1899
+ 0.0,
1900
+ 0.0,
1901
+ 0.024691358024691357,
1902
+ 0.024691358024691357,
1903
+ 0.0297029702970297,
1904
+ 0.0297029702970297,
1905
+ 0.03543307086614173,
1906
+ 0.03543307086614173,
1907
+ 0.04,
1908
+ 0.04,
1909
+ 0.06666666666666667,
1910
+ 0.06666666666666667,
1911
+ 0.08,
1912
+ 0.08,
1913
+ 0.08791208791208792,
1914
+ 0.08791208791208792,
1915
+ 0.13725490196078433,
1916
+ 0.13725490196078433,
1917
+ 0.2857142857142857,
1918
+ 0.2857142857142857,
1919
+ 0.2972972972972973,
1920
+ 0.2972972972972973,
1921
+ 0.3333333333333333,
1922
+ 0.3333333333333333,
1923
+ 0.5714285714285714,
1924
+ 0.5714285714285714,
1925
+ 0.7272727272727273,
1926
+ 0.7272727272727273,
1927
+ 0.75,
1928
+ 0.75
1929
+ ],
1930
+ "x_min": -0.9957570540603671,
1931
+ "x_max": 0.10246405073568132
1932
+ },
1933
+ {
1934
+ "coef": [
1935
+ [
1936
+ 1.262442132690388
1937
+ ]
1938
+ ],
1939
+ "intercept": [
1940
+ -1.0375704296176012
1941
+ ],
1942
+ "x0": [
1943
+ -1.0026162135821177,
1944
+ -0.9901873299993725,
1945
+ -0.9894997144193408,
1946
+ -0.9646615162846798,
1947
+ -0.9640504320285327,
1948
+ -0.9013653567360134,
1949
+ -0.9013010013844471,
1950
+ -0.8107793489199652,
1951
+ -0.8072152551147188,
1952
+ -0.7464076686646566,
1953
+ -0.7457327181651399,
1954
+ -0.5907903335367819,
1955
+ -0.5876057124447174,
1956
+ -0.5135300879442599,
1957
+ -0.5070267172431278,
1958
+ -0.40443521953298234,
1959
+ -0.40421670104020413,
1960
+ -0.2537263109006871,
1961
+ -0.232702183186429,
1962
+ -0.06230742211331197,
1963
+ -0.0601779955199484,
1964
+ 0.10988138782509971,
1965
+ 0.15995425331743718,
1966
+ 0.16475804828264184
1967
+ ],
1968
+ "y0": [
1969
+ 0.0,
1970
+ 0.0,
1971
+ 0.014563106796116505,
1972
+ 0.014563106796116505,
1973
+ 0.027932960893854747,
1974
+ 0.027932960893854747,
1975
+ 0.0755813953488372,
1976
+ 0.0755813953488372,
1977
+ 0.1016949152542373,
1978
+ 0.1016949152542373,
1979
+ 0.109375,
1980
+ 0.109375,
1981
+ 0.15,
1982
+ 0.15,
1983
+ 0.4,
1984
+ 0.4,
1985
+ 0.4375,
1986
+ 0.4375,
1987
+ 0.5,
1988
+ 0.5,
1989
+ 0.7142857142857143,
1990
+ 0.7142857142857143,
1991
+ 1.0,
1992
+ 1.0
1993
+ ],
1994
+ "x_min": -1.0026162135821177,
1995
+ "x_max": 0.16475804828264184
1996
+ }
1997
+ ]
1998
+ }
config.json ADDED
@@ -0,0 +1,2018 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "calibrator_data": {
3
+ "Year1": [
4
+ {
5
+ "coef": [
6
+ [
7
+ 0.854556657547542
8
+ ]
9
+ ],
10
+ "intercept": [
11
+ -1.1545482239584481
12
+ ],
13
+ "x0": [
14
+ -1.1360357729796648,
15
+ -1.1161314190688554,
16
+ -1.1160988999061974,
17
+ -1.073612876529882,
18
+ -1.0735402933768126,
19
+ -1.0280575376367502,
20
+ -1.0278736221139817,
21
+ -0.9560547696464696,
22
+ -0.9534790354878826,
23
+ -0.8734646409329012,
24
+ -0.872773038089129,
25
+ -0.7986212739447631,
26
+ -0.7978832178830266,
27
+ -0.7657858779493016,
28
+ -0.7617341080705604,
29
+ -0.7110751930073937,
30
+ -0.7104674300723599,
31
+ -0.6202510021996833,
32
+ -0.6177653984897673,
33
+ -0.5117729076924928,
34
+ -0.49671799022835506,
35
+ -0.40163472186962823,
36
+ -0.37576231688531325,
37
+ -0.36935111064413173
38
+ ],
39
+ "x_max": -0.36935111064413173,
40
+ "x_min": -1.1360357729796648,
41
+ "y0": [
42
+ 0.0,
43
+ 0.0,
44
+ 0.003745318352059925,
45
+ 0.003745318352059925,
46
+ 0.004878048780487805,
47
+ 0.004878048780487805,
48
+ 0.007194244604316547,
49
+ 0.007194244604316547,
50
+ 0.012987012987012988,
51
+ 0.012987012987012988,
52
+ 0.045454545454545456,
53
+ 0.045454545454545456,
54
+ 0.0625,
55
+ 0.0625,
56
+ 0.1,
57
+ 0.1,
58
+ 0.125,
59
+ 0.125,
60
+ 0.23529411764705882,
61
+ 0.23529411764705882,
62
+ 0.375,
63
+ 0.375,
64
+ 1.0,
65
+ 1.0
66
+ ]
67
+ },
68
+ {
69
+ "coef": [
70
+ [
71
+ 0.8610539752599486
72
+ ]
73
+ ],
74
+ "intercept": [
75
+ -1.1567984290115039
76
+ ],
77
+ "x0": [
78
+ -1.1378705470845625,
79
+ -1.106519323099567,
80
+ -1.1065117337381025,
81
+ -1.0733190326687234,
82
+ -1.0731443298019434,
83
+ -0.941562854808599,
84
+ -0.9414871023316992,
85
+ -0.8306046195608187,
86
+ -0.8293963521574212,
87
+ -0.8006963509914216,
88
+ -0.8005737921060307,
89
+ -0.6439063788575624,
90
+ -0.6379002236311682,
91
+ -0.5359935368850415,
92
+ -0.5292345785887509,
93
+ -0.4602247393296057,
94
+ -0.44611609712109157,
95
+ -0.38348501673488056,
96
+ -0.36534548053198035,
97
+ -0.36046565583271617
98
+ ],
99
+ "x_max": -0.36046565583271617,
100
+ "x_min": -1.1378705470845625,
101
+ "y0": [
102
+ 0.0,
103
+ 0.0,
104
+ 0.003067484662576687,
105
+ 0.003067484662576687,
106
+ 0.006230529595015576,
107
+ 0.006230529595015576,
108
+ 0.03571428571428571,
109
+ 0.03571428571428571,
110
+ 0.08333333333333333,
111
+ 0.08333333333333333,
112
+ 0.09803921568627451,
113
+ 0.09803921568627451,
114
+ 0.14285714285714285,
115
+ 0.14285714285714285,
116
+ 0.25,
117
+ 0.25,
118
+ 0.5,
119
+ 0.5,
120
+ 1.0,
121
+ 1.0
122
+ ]
123
+ },
124
+ {
125
+ "coef": [
126
+ [
127
+ 0.931170651053989
128
+ ]
129
+ ],
130
+ "intercept": [
131
+ -1.1777126799892834
132
+ ],
133
+ "x0": [
134
+ -1.1551989104135245,
135
+ -1.1404158612667903,
136
+ -1.1403709080380073,
137
+ -1.1082794886641045,
138
+ -1.108175942566476,
139
+ -1.0433254136052175,
140
+ -1.042702707840477,
141
+ -1.0140383035344585,
142
+ -1.0130984171672797,
143
+ -0.7646651111536567,
144
+ -0.7600911556810273,
145
+ -0.7312889535464594,
146
+ -0.7246139107321459,
147
+ -0.6148745839835493,
148
+ -0.6138490162558539,
149
+ -0.3805688230821349,
150
+ -0.3740350608528874,
151
+ -0.34233082063097187,
152
+ -0.32275895005404653
153
+ ],
154
+ "x_max": -0.32275895005404653,
155
+ "x_min": -1.1551989104135245,
156
+ "y0": [
157
+ 0.0,
158
+ 0.0,
159
+ 0.002105263157894737,
160
+ 0.002105263157894737,
161
+ 0.0030120481927710845,
162
+ 0.0030120481927710845,
163
+ 0.016666666666666666,
164
+ 0.016666666666666666,
165
+ 0.016853932584269662,
166
+ 0.016853932584269662,
167
+ 0.06666666666666667,
168
+ 0.06666666666666667,
169
+ 0.12903225806451613,
170
+ 0.12903225806451613,
171
+ 0.23333333333333334,
172
+ 0.23333333333333334,
173
+ 0.3333333333333333,
174
+ 0.3333333333333333,
175
+ 1.0
176
+ ]
177
+ },
178
+ {
179
+ "coef": [
180
+ [
181
+ 0.802573263743587
182
+ ]
183
+ ],
184
+ "intercept": [
185
+ -1.133514632876246
186
+ ],
187
+ "x0": [
188
+ -1.1145748000846425,
189
+ -1.001099080307295,
190
+ -1.0006650304322395,
191
+ -0.7822120240879247,
192
+ -0.7809762245125411,
193
+ -0.7602535779621472,
194
+ -0.7599881299259228,
195
+ -0.7228992892466355,
196
+ -0.7204894477845987,
197
+ -0.6758539945396886,
198
+ -0.6733669918445594,
199
+ -0.6239612713939791,
200
+ -0.618395903844087,
201
+ -0.5797944303247502,
202
+ -0.5795030067463254,
203
+ -0.4308790865818225,
204
+ -0.42913485044975996,
205
+ -0.4127336156492978
206
+ ],
207
+ "x_max": -0.4127336156492978,
208
+ "x_min": -1.1145748000846425,
209
+ "y0": [
210
+ 0.0,
211
+ 0.0,
212
+ 0.018779342723004695,
213
+ 0.018779342723004695,
214
+ 0.06666666666666667,
215
+ 0.06666666666666667,
216
+ 0.08333333333333333,
217
+ 0.08333333333333333,
218
+ 0.125,
219
+ 0.125,
220
+ 0.14285714285714285,
221
+ 0.14285714285714285,
222
+ 0.3333333333333333,
223
+ 0.3333333333333333,
224
+ 0.4,
225
+ 0.4,
226
+ 0.5,
227
+ 0.5
228
+ ]
229
+ },
230
+ {
231
+ "coef": [
232
+ [
233
+ 0.7571081357285535
234
+ ]
235
+ ],
236
+ "intercept": [
237
+ -1.1240990711329706
238
+ ],
239
+ "x0": [
240
+ -1.1080936473109704,
241
+ -1.0478081580528156,
242
+ -1.0477693656166227,
243
+ -0.906516611811425,
244
+ -0.9051812314122925,
245
+ -0.8537131170836589,
246
+ -0.8530645720823533,
247
+ -0.809823116729157,
248
+ -0.8059229792340918,
249
+ -0.775062431397729,
250
+ -0.7727583513501239,
251
+ -0.6678702375770744,
252
+ -0.6576353522247389,
253
+ -0.6414058198676769,
254
+ -0.6391149846419681,
255
+ -0.5392171226404363,
256
+ -0.5379400690975253,
257
+ -0.43595259388335383,
258
+ -0.4059231304165102,
259
+ -0.40304212217287894
260
+ ],
261
+ "x_max": -0.40304212217287894,
262
+ "x_min": -1.1080936473109704,
263
+ "y0": [
264
+ 0.0,
265
+ 0.0,
266
+ 0.005633802816901409,
267
+ 0.005633802816901409,
268
+ 0.023809523809523808,
269
+ 0.023809523809523808,
270
+ 0.05263157894736842,
271
+ 0.05263157894736842,
272
+ 0.09090909090909091,
273
+ 0.09090909090909091,
274
+ 0.17857142857142858,
275
+ 0.17857142857142858,
276
+ 0.2,
277
+ 0.2,
278
+ 0.3333333333333333,
279
+ 0.3333333333333333,
280
+ 0.5,
281
+ 0.5,
282
+ 1.0,
283
+ 1.0
284
+ ]
285
+ }
286
+ ],
287
+ "Year2": [
288
+ {
289
+ "coef": [
290
+ [
291
+ 1.062266673654182
292
+ ]
293
+ ],
294
+ "intercept": [
295
+ -1.1402943638341543
296
+ ],
297
+ "x0": [
298
+ -1.1132237228060184,
299
+ -1.0984032927059206,
300
+ -1.0981069262090772,
301
+ -1.081592725093658,
302
+ -1.0814958159559502,
303
+ -1.033709096648227,
304
+ -1.0337017915615265,
305
+ -0.9433254512205224,
306
+ -0.9432834568651239,
307
+ -0.8978076538523547,
308
+ -0.8964592757256059,
309
+ -0.7908901199818554,
310
+ -0.7900304149572032,
311
+ -0.7597781118771237,
312
+ -0.7575168749204351,
313
+ -0.6978551950375774,
314
+ -0.6969377457956264,
315
+ -0.6754802605747152,
316
+ -0.6743523171985429,
317
+ -0.5982205872578594,
318
+ -0.5978797570805355,
319
+ -0.20437640643562294,
320
+ -0.17221541004131058,
321
+ -0.1642458849457179
322
+ ],
323
+ "x_max": -0.1642458849457179,
324
+ "x_min": -1.1132237228060184,
325
+ "y0": [
326
+ 0.0,
327
+ 0.0,
328
+ 0.004166666666666667,
329
+ 0.004166666666666667,
330
+ 0.00646551724137931,
331
+ 0.00646551724137931,
332
+ 0.022950819672131147,
333
+ 0.022950819672131147,
334
+ 0.029850746268656716,
335
+ 0.029850746268656716,
336
+ 0.030927835051546393,
337
+ 0.030927835051546393,
338
+ 0.05555555555555555,
339
+ 0.05555555555555555,
340
+ 0.08,
341
+ 0.08,
342
+ 0.1,
343
+ 0.1,
344
+ 0.17391304347826086,
345
+ 0.17391304347826086,
346
+ 0.21875,
347
+ 0.21875,
348
+ 1.0,
349
+ 1.0
350
+ ]
351
+ },
352
+ {
353
+ "coef": [
354
+ [
355
+ 0.9452799797637848
356
+ ]
357
+ ],
358
+ "intercept": [
359
+ -1.1056176033444525
360
+ ],
361
+ "x0": [
362
+ -1.0812889671248251,
363
+ -1.0466438113101284,
364
+ -1.0466141854157391,
365
+ -1.0190228994163042,
366
+ -1.0190087854754137,
367
+ -0.8633880083865842,
368
+ -0.8629823664007918,
369
+ -0.8348653114530901,
370
+ -0.8347858113708686,
371
+ -0.8020762603552521,
372
+ -0.7996074475609661,
373
+ -0.7839658204696691,
374
+ -0.7835622350062019,
375
+ -0.7475163850050008,
376
+ -0.7461899281051441,
377
+ -0.5425558200873033,
378
+ -0.5359621587675816,
379
+ -0.4767176382463163,
380
+ -0.4681188958309078,
381
+ -0.4115751243820749,
382
+ -0.37794935041320266,
383
+ -0.25666073454046767,
384
+ -0.2367468372616991,
385
+ -0.2313896811187538
386
+ ],
387
+ "x_max": -0.2313896811187538,
388
+ "x_min": -1.0812889671248251,
389
+ "y0": [
390
+ 0.0,
391
+ 0.0,
392
+ 0.006578947368421052,
393
+ 0.006578947368421052,
394
+ 0.011876484560570071,
395
+ 0.011876484560570071,
396
+ 0.04,
397
+ 0.04,
398
+ 0.043478260869565216,
399
+ 0.043478260869565216,
400
+ 0.07692307692307693,
401
+ 0.07692307692307693,
402
+ 0.1,
403
+ 0.1,
404
+ 0.11290322580645161,
405
+ 0.11290322580645161,
406
+ 0.23076923076923078,
407
+ 0.23076923076923078,
408
+ 0.42857142857142855,
409
+ 0.42857142857142855,
410
+ 0.6666666666666666,
411
+ 0.6666666666666666,
412
+ 1.0,
413
+ 1.0
414
+ ]
415
+ },
416
+ {
417
+ "coef": [
418
+ [
419
+ 0.977569119429414
420
+ ]
421
+ ],
422
+ "intercept": [
423
+ -1.1131720692602696
424
+ ],
425
+ "x0": [
426
+ -1.0845931804016375,
427
+ -1.065066758858955,
428
+ -1.0649363886111944,
429
+ -1.0336518336720375,
430
+ -1.033579472521642,
431
+ -1.0014803065603592,
432
+ -1.0011882908982757,
433
+ -0.6795431230600604,
434
+ -0.674741256056814,
435
+ -0.6518493782261137,
436
+ -0.64987028801675,
437
+ -0.5222888178703454,
438
+ -0.5212121480468886,
439
+ -0.3052231965882647,
440
+ -0.29144341938190454,
441
+ -0.23616471543543072,
442
+ -0.21561761564892545
443
+ ],
444
+ "x_max": -0.21561761564892545,
445
+ "x_min": -1.0845931804016375,
446
+ "y0": [
447
+ 0.0,
448
+ 0.0,
449
+ 0.002369668246445498,
450
+ 0.002369668246445498,
451
+ 0.004629629629629629,
452
+ 0.004629629629629629,
453
+ 0.02570694087403599,
454
+ 0.02570694087403599,
455
+ 0.1,
456
+ 0.1,
457
+ 0.14285714285714285,
458
+ 0.14285714285714285,
459
+ 0.38461538461538464,
460
+ 0.38461538461538464,
461
+ 0.6666666666666666,
462
+ 0.6666666666666666,
463
+ 1.0
464
+ ]
465
+ },
466
+ {
467
+ "coef": [
468
+ [
469
+ 0.9331653645301372
470
+ ]
471
+ ],
472
+ "intercept": [
473
+ -1.1044707886310574
474
+ ],
475
+ "x0": [
476
+ -1.0774566054058767,
477
+ -1.0420772338529536,
478
+ -1.0419548398643057,
479
+ -0.9493604640979585,
480
+ -0.9491299707151104,
481
+ -0.9365174523436794,
482
+ -0.9364732614670692,
483
+ -0.7179492653874966,
484
+ -0.7154435675953599,
485
+ -0.6731615199328296,
486
+ -0.67142962135454,
487
+ -0.6270414570925323,
488
+ -0.6242394940967904,
489
+ -0.5120045680430358,
490
+ -0.5055336220583483,
491
+ -0.33179717675997744,
492
+ -0.328290718304015,
493
+ -0.2875046806008894,
494
+ -0.28547662806097474,
495
+ -0.2664066378897004
496
+ ],
497
+ "x_max": -0.2664066378897004,
498
+ "x_min": -1.0774566054058767,
499
+ "y0": [
500
+ 0.0,
501
+ 0.0,
502
+ 0.007054673721340388,
503
+ 0.007054673721340388,
504
+ 0.029411764705882353,
505
+ 0.029411764705882353,
506
+ 0.041025641025641026,
507
+ 0.041025641025641026,
508
+ 0.1,
509
+ 0.1,
510
+ 0.14285714285714285,
511
+ 0.14285714285714285,
512
+ 0.26666666666666666,
513
+ 0.26666666666666666,
514
+ 0.42105263157894735,
515
+ 0.42105263157894735,
516
+ 0.6666666666666666,
517
+ 0.6666666666666666,
518
+ 0.75,
519
+ 0.75
520
+ ]
521
+ },
522
+ {
523
+ "coef": [
524
+ [
525
+ 0.8961901274568367
526
+ ]
527
+ ],
528
+ "intercept": [
529
+ -1.0982403142894093
530
+ ],
531
+ "x0": [
532
+ -1.0758350750074313,
533
+ -1.0632542041947801,
534
+ -1.0631388433027222,
535
+ -1.0490756815117528,
536
+ -1.0490719723622743,
537
+ -1.004288045432703,
538
+ -1.0039359266248848,
539
+ -0.8597483194001383,
540
+ -0.857685938810237,
541
+ -0.7810773324119306,
542
+ -0.7788166141512711,
543
+ -0.7262313576523969,
544
+ -0.7216147585777637,
545
+ -0.6730376804506044,
546
+ -0.6717071674683137,
547
+ -0.5268755303702289,
548
+ -0.5241638650003476,
549
+ -0.40591460382490485,
550
+ -0.4044029534761878,
551
+ -0.28368021375389385,
552
+ -0.24813428917349833,
553
+ -0.24472403504569196
554
+ ],
555
+ "x_max": -0.24472403504569196,
556
+ "x_min": -1.0758350750074313,
557
+ "y0": [
558
+ 0.0,
559
+ 0.0,
560
+ 0.003703703703703704,
561
+ 0.003703703703703704,
562
+ 0.003937007874015748,
563
+ 0.003937007874015748,
564
+ 0.01078167115902965,
565
+ 0.01078167115902965,
566
+ 0.05172413793103448,
567
+ 0.05172413793103448,
568
+ 0.08695652173913043,
569
+ 0.08695652173913043,
570
+ 0.23076923076923078,
571
+ 0.23076923076923078,
572
+ 0.26666666666666666,
573
+ 0.26666666666666666,
574
+ 0.4444444444444444,
575
+ 0.4444444444444444,
576
+ 0.625,
577
+ 0.625,
578
+ 1.0,
579
+ 1.0
580
+ ]
581
+ }
582
+ ],
583
+ "Year3": [
584
+ {
585
+ "coef": [
586
+ [
587
+ 1.072854890710045
588
+ ]
589
+ ],
590
+ "intercept": [
591
+ -1.0975483040639067
592
+ ],
593
+ "x0": [
594
+ -1.0668657274687154,
595
+ -1.055840060430324,
596
+ -1.0556273522769775,
597
+ -1.036306556853323,
598
+ -1.0361733269949625,
599
+ -1.0144346304595142,
600
+ -1.0142514059319403,
601
+ -1.0076178099514084,
602
+ -1.0076047887161141,
603
+ -0.9745636399616542,
604
+ -0.9744364251306473,
605
+ -0.893484508393487,
606
+ -0.8934749962572068,
607
+ -0.8126541951262676,
608
+ -0.8108757933379082,
609
+ -0.7132392298627734,
610
+ -0.7109554538692253,
611
+ -0.6506990920367363,
612
+ -0.6497724980555664,
613
+ -0.628972765275148,
614
+ -0.6269619476258803,
615
+ -0.5500713693644852,
616
+ -0.5497271419386303,
617
+ -0.3569641318650252,
618
+ -0.352800853663226,
619
+ -0.2250071731934148,
620
+ -0.21752555028003018,
621
+ -0.15230151923890023,
622
+ -0.11981995587303407,
623
+ -0.11177099398097867
624
+ ],
625
+ "x_max": -0.11177099398097867,
626
+ "x_min": -1.0668657274687154,
627
+ "y0": [
628
+ 0.0,
629
+ 0.0,
630
+ 0.008032128514056224,
631
+ 0.008032128514056224,
632
+ 0.014598540145985401,
633
+ 0.014598540145985401,
634
+ 0.015873015873015872,
635
+ 0.015873015873015872,
636
+ 0.01694915254237288,
637
+ 0.01694915254237288,
638
+ 0.03463203463203463,
639
+ 0.03463203463203463,
640
+ 0.04424778761061947,
641
+ 0.04424778761061947,
642
+ 0.06557377049180328,
643
+ 0.06557377049180328,
644
+ 0.08,
645
+ 0.08,
646
+ 0.1111111111111111,
647
+ 0.1111111111111111,
648
+ 0.17391304347826086,
649
+ 0.17391304347826086,
650
+ 0.2222222222222222,
651
+ 0.2222222222222222,
652
+ 0.25,
653
+ 0.25,
654
+ 0.4,
655
+ 0.4,
656
+ 1.0,
657
+ 1.0
658
+ ]
659
+ },
660
+ {
661
+ "coef": [
662
+ [
663
+ 0.9914570976903353
664
+ ]
665
+ ],
666
+ "intercept": [
667
+ -1.0790425515518447
668
+ ],
669
+ "x0": [
670
+ -1.0509692533832513,
671
+ -1.0306651082008873,
672
+ -1.030658061068699,
673
+ -1.0208099967000621,
674
+ -1.020741246533108,
675
+ -0.985112419883033,
676
+ -0.9850553410670821,
677
+ -0.975147553361191,
678
+ -0.974998182229142,
679
+ -0.8779299862351682,
680
+ -0.8776659773207016,
681
+ -0.8460688378948997,
682
+ -0.845974211308601,
683
+ -0.741678014120675,
684
+ -0.7412547134258067,
685
+ -0.48847508646284665,
686
+ -0.4815593234559564,
687
+ -0.4194206961418063,
688
+ -0.4104019034227454,
689
+ -0.35109595731867727,
690
+ -0.3158275575001387,
691
+ -0.1886139682457576,
692
+ -0.16210841876048143
693
+ ],
694
+ "x_max": -0.16210841876048143,
695
+ "x_min": -1.0509692533832513,
696
+ "y0": [
697
+ 0.0,
698
+ 0.0,
699
+ 0.005405405405405406,
700
+ 0.005405405405405406,
701
+ 0.007281553398058253,
702
+ 0.007281553398058253,
703
+ 0.014925373134328358,
704
+ 0.014925373134328358,
705
+ 0.020338983050847456,
706
+ 0.020338983050847456,
707
+ 0.04081632653061224,
708
+ 0.04081632653061224,
709
+ 0.08974358974358974,
710
+ 0.08974358974358974,
711
+ 0.13414634146341464,
712
+ 0.13414634146341464,
713
+ 0.23076923076923078,
714
+ 0.23076923076923078,
715
+ 0.42857142857142855,
716
+ 0.42857142857142855,
717
+ 0.7777777777777778,
718
+ 0.7777777777777778,
719
+ 1.0
720
+ ]
721
+ },
722
+ {
723
+ "coef": [
724
+ [
725
+ 1.0359640190491
726
+ ]
727
+ ],
728
+ "intercept": [
729
+ -1.0883499518982132
730
+ ],
731
+ "x0": [
732
+ -1.0552559216978283,
733
+ -1.0333495853697827,
734
+ -1.0333285407884145,
735
+ -1.0011969268015661,
736
+ -1.0011933068093923,
737
+ -0.9916828772639642,
738
+ -0.9911346684278486,
739
+ -0.9698102979418284,
740
+ -0.9697949843715242,
741
+ -0.9302941777878011,
742
+ -0.930229033365741,
743
+ -0.6288182656438468,
744
+ -0.6237295600569457,
745
+ -0.5994702403937844,
746
+ -0.5973729296189209,
747
+ -0.5172434380370258,
748
+ -0.5152343346620796,
749
+ -0.4833593233187604,
750
+ -0.4610294208915229,
751
+ -0.23213841177916572,
752
+ -0.21753550228399432,
753
+ -0.1589547357990222,
754
+ -0.13718025903664743,
755
+ -0.136125351637146
756
+ ],
757
+ "x_max": -0.136125351637146,
758
+ "x_min": -1.0552559216978283,
759
+ "y0": [
760
+ 0.0,
761
+ 0.0,
762
+ 0.0049261083743842365,
763
+ 0.0049261083743842365,
764
+ 0.012345679012345678,
765
+ 0.012345679012345678,
766
+ 0.014925373134328358,
767
+ 0.014925373134328358,
768
+ 0.04516129032258064,
769
+ 0.04516129032258064,
770
+ 0.05263157894736842,
771
+ 0.05263157894736842,
772
+ 0.1,
773
+ 0.1,
774
+ 0.16,
775
+ 0.16,
776
+ 0.2222222222222222,
777
+ 0.2222222222222222,
778
+ 0.3181818181818182,
779
+ 0.3181818181818182,
780
+ 0.6666666666666666,
781
+ 0.6666666666666666,
782
+ 1.0,
783
+ 1.0
784
+ ]
785
+ },
786
+ {
787
+ "coef": [
788
+ [
789
+ 0.9429092225039666
790
+ ]
791
+ ],
792
+ "intercept": [
793
+ -1.0694328972087712
794
+ ],
795
+ "x0": [
796
+ -1.039598461979245,
797
+ -1.027090895221624,
798
+ -1.0270806700122288,
799
+ -1.0023414590831823,
800
+ -1.0022412513285868,
801
+ -0.9797331874122825,
802
+ -0.9796138218795896,
803
+ -0.9353377659698549,
804
+ -0.9347416338032845,
805
+ -0.90973249280169,
806
+ -0.9093901256737834,
807
+ -0.8997258380366621,
808
+ -0.8996811857309828,
809
+ -0.6788754217433769,
810
+ -0.6763435601389729,
811
+ -0.5870183789328516,
812
+ -0.5841871586044692,
813
+ -0.47078030609401256,
814
+ -0.4642417922579798,
815
+ -0.4189702554849567,
816
+ -0.4188905613761421,
817
+ -0.288691238429426,
818
+ -0.2851481664915613,
819
+ -0.24393625211769732,
820
+ -0.24188702320683753,
821
+ -0.2226179094044748
822
+ ],
823
+ "x_max": -0.2226179094044748,
824
+ "x_min": -1.039598461979245,
825
+ "y0": [
826
+ 0.0,
827
+ 0.0,
828
+ 0.0026595744680851063,
829
+ 0.0026595744680851063,
830
+ 0.008695652173913044,
831
+ 0.008695652173913044,
832
+ 0.011583011583011582,
833
+ 0.011583011583011582,
834
+ 0.013888888888888888,
835
+ 0.013888888888888888,
836
+ 0.034482758620689655,
837
+ 0.034482758620689655,
838
+ 0.05641025641025641,
839
+ 0.05641025641025641,
840
+ 0.18181818181818182,
841
+ 0.18181818181818182,
842
+ 0.21428571428571427,
843
+ 0.21428571428571427,
844
+ 0.5,
845
+ 0.5,
846
+ 0.5714285714285714,
847
+ 0.5714285714285714,
848
+ 0.6666666666666666,
849
+ 0.6666666666666666,
850
+ 0.75,
851
+ 0.75
852
+ ]
853
+ },
854
+ {
855
+ "coef": [
856
+ [
857
+ 0.9300079387746696
858
+ ]
859
+ ],
860
+ "intercept": [
861
+ -1.0690194713018735
862
+ ],
863
+ "x0": [
864
+ -1.0432696190394435,
865
+ -1.0296239120498654,
866
+ -1.029574597651545,
867
+ -1.0151942225358568,
868
+ -1.0150830797862347,
869
+ -0.9686807739460517,
870
+ -0.9686333650499847,
871
+ -0.9202678722062687,
872
+ -0.9200592370322587,
873
+ -0.8215279605321205,
874
+ -0.8193877558337873,
875
+ -0.8032501334690247,
876
+ -0.8001076484435512,
877
+ -0.7398883171030026,
878
+ -0.7375422904448954,
879
+ -0.682972724782267,
880
+ -0.6781819179456279,
881
+ -0.6402737868235991,
882
+ -0.6374435270037346,
883
+ -0.6026054025305556,
884
+ -0.6024444257001804,
885
+ -0.4871964897395866,
886
+ -0.47609418826063177,
887
+ -0.350568790778378,
888
+ -0.3490000981741114,
889
+ -0.22372187551508194,
890
+ -0.18683462242218773,
891
+ -0.18329568206240143
892
+ ],
893
+ "x_max": -0.18329568206240143,
894
+ "x_min": -1.0432696190394435,
895
+ "y0": [
896
+ 0.0,
897
+ 0.0,
898
+ 0.0040650406504065045,
899
+ 0.0040650406504065045,
900
+ 0.009708737864077669,
901
+ 0.009708737864077669,
902
+ 0.015151515151515152,
903
+ 0.015151515151515152,
904
+ 0.017142857142857144,
905
+ 0.017142857142857144,
906
+ 0.05555555555555555,
907
+ 0.05555555555555555,
908
+ 0.09523809523809523,
909
+ 0.09523809523809523,
910
+ 0.13043478260869565,
911
+ 0.13043478260869565,
912
+ 0.2727272727272727,
913
+ 0.2727272727272727,
914
+ 0.3,
915
+ 0.3,
916
+ 0.30434782608695654,
917
+ 0.30434782608695654,
918
+ 0.5,
919
+ 0.5,
920
+ 0.625,
921
+ 0.625,
922
+ 1.0,
923
+ 1.0
924
+ ]
925
+ }
926
+ ],
927
+ "Year4": [
928
+ {
929
+ "coef": [
930
+ [
931
+ 1.0713611402736163
932
+ ]
933
+ ],
934
+ "intercept": [
935
+ -1.0720420740830974
936
+ ],
937
+ "x0": [
938
+ -1.0414022172560469,
939
+ -1.0303919014036294,
940
+ -1.030179489406734,
941
+ -1.0108855945889734,
942
+ -1.0107525502283543,
943
+ -0.989044120775359,
944
+ -0.9888611513537834,
945
+ -0.9822367914190364,
946
+ -0.9822237883133847,
947
+ -0.959024555591222,
948
+ -0.9588443480324798,
949
+ -0.9492286431991185,
950
+ -0.9491016054910486,
951
+ -0.868262399207094,
952
+ -0.8682529003146905,
953
+ -0.8274793436967418,
954
+ -0.826701839397852,
955
+ -0.6882680786258673,
956
+ -0.6859874823646543,
957
+ -0.6041189393814397,
958
+ -0.6021109214208971,
959
+ -0.5253273989559846,
960
+ -0.5249836508026502,
961
+ -0.20071579408044027,
962
+ -0.1932445879322574,
963
+ -0.12811136919545385,
964
+ -0.09567503035144409,
965
+ -0.08763727513835629
966
+ ],
967
+ "x_max": -0.08763727513835629,
968
+ "x_min": -1.0414022172560469,
969
+ "y0": [
970
+ 0.0,
971
+ 0.0,
972
+ 0.008130081300813007,
973
+ 0.008130081300813007,
974
+ 0.01486988847583643,
975
+ 0.01486988847583643,
976
+ 0.015873015873015872,
977
+ 0.015873015873015872,
978
+ 0.018292682926829267,
979
+ 0.018292682926829267,
980
+ 0.028169014084507043,
981
+ 0.028169014084507043,
982
+ 0.04329004329004329,
983
+ 0.04329004329004329,
984
+ 0.06896551724137931,
985
+ 0.06896551724137931,
986
+ 0.07964601769911504,
987
+ 0.07964601769911504,
988
+ 0.11764705882352941,
989
+ 0.11764705882352941,
990
+ 0.21739130434782608,
991
+ 0.21739130434782608,
992
+ 0.25,
993
+ 0.25,
994
+ 0.4,
995
+ 0.4,
996
+ 1.0,
997
+ 1.0
998
+ ]
999
+ },
1000
+ {
1001
+ "coef": [
1002
+ [
1003
+ 1.0236741286444109
1004
+ ]
1005
+ ],
1006
+ "intercept": [
1007
+ -1.0625940402455896
1008
+ ],
1009
+ "x0": [
1010
+ -1.0336085106570108,
1011
+ -1.0144313554536946,
1012
+ -1.014352061695433,
1013
+ -1.0024692401049637,
1014
+ -1.0023982559268134,
1015
+ -0.9959623202441721,
1016
+ -0.9959512916504678,
1017
+ -0.9667386748515856,
1018
+ -0.9665320450724462,
1019
+ -0.8652485370410349,
1020
+ -0.8652359983079437,
1021
+ -0.8220499321037427,
1022
+ -0.821952230661591,
1023
+ -0.7693876649771454,
1024
+ -0.7693015717781595,
1025
+ -0.7142669671983582,
1026
+ -0.7138299115042861,
1027
+ -0.7017531895419336,
1028
+ -0.700041515189594,
1029
+ -0.45283630424364407,
1030
+ -0.4456958160808363,
1031
+ -0.38153801710077406,
1032
+ -0.3722261620546843,
1033
+ -0.3109930912108302,
1034
+ -0.2745786578107059,
1035
+ -0.1432313101190359,
1036
+ -0.1216659095169288,
1037
+ -0.1158644726262289
1038
+ ],
1039
+ "x_max": -0.1158644726262289,
1040
+ "x_min": -1.0336085106570108,
1041
+ "y0": [
1042
+ 0.0,
1043
+ 0.0,
1044
+ 0.00975609756097561,
1045
+ 0.00975609756097561,
1046
+ 0.010752688172043012,
1047
+ 0.010752688172043012,
1048
+ 0.019543973941368076,
1049
+ 0.019543973941368076,
1050
+ 0.02586206896551724,
1051
+ 0.02586206896551724,
1052
+ 0.046875,
1053
+ 0.046875,
1054
+ 0.06976744186046512,
1055
+ 0.06976744186046512,
1056
+ 0.09090909090909091,
1057
+ 0.09090909090909091,
1058
+ 0.14285714285714285,
1059
+ 0.14285714285714285,
1060
+ 0.14864864864864866,
1061
+ 0.14864864864864866,
1062
+ 0.23076923076923078,
1063
+ 0.23076923076923078,
1064
+ 0.42857142857142855,
1065
+ 0.42857142857142855,
1066
+ 0.7777777777777778,
1067
+ 0.7777777777777778,
1068
+ 1.0,
1069
+ 1.0
1070
+ ]
1071
+ },
1072
+ {
1073
+ "coef": [
1074
+ [
1075
+ 1.0396994880608152
1076
+ ]
1077
+ ],
1078
+ "intercept": [
1079
+ -1.0658926889834355
1080
+ ],
1081
+ "x0": [
1082
+ -1.0326793286499445,
1083
+ -1.0106940026668443,
1084
+ -1.0106728822031288,
1085
+ -0.9784254083542221,
1086
+ -0.9784217753091158,
1087
+ -0.9469256058925717,
1088
+ -0.9469102371047443,
1089
+ -0.9370942140091818,
1090
+ -0.9369620532787766,
1091
+ -0.915314170567322,
1092
+ -0.9148419676598699,
1093
+ -0.8716363389381502,
1094
+ -0.870683567049227,
1095
+ -0.6047040278319293,
1096
+ -0.5995969734397801,
1097
+ -0.5752501797570768,
1098
+ -0.5731453065193639,
1099
+ -0.49272688479392623,
1100
+ -0.49071053701351774,
1101
+ -0.4587205910634634,
1102
+ -0.43631017169063924,
1103
+ -0.20659382959771744,
1104
+ -0.19193826507312706,
1105
+ -0.1331462686285585,
1106
+ -0.11129327766907215
1107
+ ],
1108
+ "x_max": -0.11129327766907215,
1109
+ "x_min": -1.0326793286499445,
1110
+ "y0": [
1111
+ 0.0,
1112
+ 0.0,
1113
+ 0.009950248756218905,
1114
+ 0.009950248756218905,
1115
+ 0.014150943396226415,
1116
+ 0.014150943396226415,
1117
+ 0.045454545454545456,
1118
+ 0.045454545454545456,
1119
+ 0.05,
1120
+ 0.05,
1121
+ 0.0673076923076923,
1122
+ 0.0673076923076923,
1123
+ 0.07142857142857142,
1124
+ 0.07142857142857142,
1125
+ 0.1,
1126
+ 0.1,
1127
+ 0.2,
1128
+ 0.2,
1129
+ 0.2222222222222222,
1130
+ 0.2222222222222222,
1131
+ 0.4090909090909091,
1132
+ 0.4090909090909091,
1133
+ 0.6666666666666666,
1134
+ 0.6666666666666666,
1135
+ 1.0
1136
+ ]
1137
+ },
1138
+ {
1139
+ "coef": [
1140
+ [
1141
+ 0.9866801376021137
1142
+ ]
1143
+ ],
1144
+ "intercept": [
1145
+ -1.055717348217441
1146
+ ],
1147
+ "x0": [
1148
+ -1.0244979646808392,
1149
+ -1.0114097824943242,
1150
+ -1.0113990826191164,
1151
+ -0.9855114494715504,
1152
+ -0.9854065899593796,
1153
+ -0.9761218403287525,
1154
+ -0.9760201492440737,
1155
+ -0.9512964316870484,
1156
+ -0.9511816258120083,
1157
+ -0.8886034699831773,
1158
+ -0.8882452097850468,
1159
+ -0.8781322949592707,
1160
+ -0.8780855698429388,
1161
+ -0.7753388033507341,
1162
+ -0.7726365096184081,
1163
+ -0.6674841788771404,
1164
+ -0.6664703408904253,
1165
+ -0.6470297519604127,
1166
+ -0.644380358469925,
1167
+ -0.550908601082995,
1168
+ -0.5479459522971747,
1169
+ -0.429274625122231,
1170
+ -0.422432586061124,
1171
+ -0.2387327764997047,
1172
+ -0.23502523114565355,
1173
+ -0.19190021298402493,
1174
+ -0.18975585654388327,
1175
+ -0.16959224863314815
1176
+ ],
1177
+ "x_max": -0.16959224863314815,
1178
+ "x_min": -1.0244979646808392,
1179
+ "y0": [
1180
+ 0.0,
1181
+ 0.0,
1182
+ 0.008152173913043478,
1183
+ 0.008152173913043478,
1184
+ 0.010416666666666666,
1185
+ 0.010416666666666666,
1186
+ 0.015151515151515152,
1187
+ 0.015151515151515152,
1188
+ 0.019230769230769232,
1189
+ 0.019230769230769232,
1190
+ 0.034482758620689655,
1191
+ 0.034482758620689655,
1192
+ 0.056910569105691054,
1193
+ 0.056910569105691054,
1194
+ 0.07936507936507936,
1195
+ 0.07936507936507936,
1196
+ 0.2,
1197
+ 0.2,
1198
+ 0.20588235294117646,
1199
+ 0.20588235294117646,
1200
+ 0.26666666666666666,
1201
+ 0.26666666666666666,
1202
+ 0.5,
1203
+ 0.5,
1204
+ 0.6666666666666666,
1205
+ 0.6666666666666666,
1206
+ 0.75,
1207
+ 0.75
1208
+ ]
1209
+ },
1210
+ {
1211
+ "coef": [
1212
+ [
1213
+ 0.9720870020574502
1214
+ ]
1215
+ ],
1216
+ "intercept": [
1217
+ -1.0561492900363496
1218
+ ],
1219
+ "x0": [
1220
+ -1.0292343620603719,
1221
+ -1.0149712425262198,
1222
+ -1.0149196968526584,
1223
+ -0.9998886684583321,
1224
+ -0.9997724969529331,
1225
+ -0.9634315079071001,
1226
+ -0.9634086791923234,
1227
+ -0.951270676170449,
1228
+ -0.9512211222153406,
1229
+ -0.8147576198447524,
1230
+ -0.8126328401139585,
1231
+ -0.7783549744382297,
1232
+ -0.7750703047918094,
1233
+ -0.7121262945010313,
1234
+ -0.7096741197122537,
1235
+ -0.6526355039360778,
1236
+ -0.6476279326443739,
1237
+ -0.4480011933435484,
1238
+ -0.43639655803813926,
1239
+ -0.3051916486678352,
1240
+ -0.3035519791260457,
1241
+ -0.17260542823084102,
1242
+ -0.13404917749555145,
1243
+ -0.13035011452912415
1244
+ ],
1245
+ "x_max": -0.13035011452912415,
1246
+ "x_min": -1.0292343620603719,
1247
+ "y0": [
1248
+ 0.0,
1249
+ 0.0,
1250
+ 0.00819672131147541,
1251
+ 0.00819672131147541,
1252
+ 0.011467889908256881,
1253
+ 0.011467889908256881,
1254
+ 0.012987012987012988,
1255
+ 0.012987012987012988,
1256
+ 0.036211699164345405,
1257
+ 0.036211699164345405,
1258
+ 0.07142857142857142,
1259
+ 0.07142857142857142,
1260
+ 0.075,
1261
+ 0.075,
1262
+ 0.13043478260869565,
1263
+ 0.13043478260869565,
1264
+ 0.3170731707317073,
1265
+ 0.3170731707317073,
1266
+ 0.5,
1267
+ 0.5,
1268
+ 0.7142857142857143,
1269
+ 0.7142857142857143,
1270
+ 1.0,
1271
+ 1.0
1272
+ ]
1273
+ }
1274
+ ],
1275
+ "Year5": [
1276
+ {
1277
+ "coef": [
1278
+ [
1279
+ 1.1130009773475025
1280
+ ]
1281
+ ],
1282
+ "intercept": [
1283
+ -1.05794336672334
1284
+ ],
1285
+ "x0": [
1286
+ -1.0261126522122785,
1287
+ -1.0146744061867454,
1288
+ -1.0144537385227264,
1289
+ -0.9969480439120526,
1290
+ -0.9968250495003456,
1291
+ -0.9737491227404367,
1292
+ -0.9736590578600733,
1293
+ -0.9412351121614915,
1294
+ -0.940990193071027,
1295
+ -0.9329694846791076,
1296
+ -0.9328188264757706,
1297
+ -0.8462435476743763,
1298
+ -0.8462336630102207,
1299
+ -0.8038753893527305,
1300
+ -0.8030676331731484,
1301
+ -0.6592534983234417,
1302
+ -0.6568842637374115,
1303
+ -0.6446790254063086,
1304
+ -0.6381987988020102,
1305
+ -0.5718338270620633,
1306
+ -0.5697477317150653,
1307
+ -0.4899798519505131,
1308
+ -0.48962280992041207,
1309
+ -0.15275186333929358,
1310
+ -0.14499027909631035,
1311
+ -0.07732563986998098,
1312
+ -0.04362862074369689,
1313
+ -0.03527840143325056
1314
+ ],
1315
+ "x_max": -0.03527840143325056,
1316
+ "x_min": -1.0261126522122785,
1317
+ "y0": [
1318
+ 0.0,
1319
+ 0.0,
1320
+ 0.009950248756218905,
1321
+ 0.009950248756218905,
1322
+ 0.018867924528301886,
1323
+ 0.018867924528301886,
1324
+ 0.020242914979757085,
1325
+ 0.020242914979757085,
1326
+ 0.05084745762711865,
1327
+ 0.05084745762711865,
1328
+ 0.05150214592274678,
1329
+ 0.05150214592274678,
1330
+ 0.07017543859649122,
1331
+ 0.07017543859649122,
1332
+ 0.09433962264150944,
1333
+ 0.09433962264150944,
1334
+ 0.14285714285714285,
1335
+ 0.14285714285714285,
1336
+ 0.14814814814814814,
1337
+ 0.14814814814814814,
1338
+ 0.21739130434782608,
1339
+ 0.21739130434782608,
1340
+ 0.28,
1341
+ 0.28,
1342
+ 0.4,
1343
+ 0.4,
1344
+ 1.0,
1345
+ 1.0
1346
+ ]
1347
+ },
1348
+ {
1349
+ "coef": [
1350
+ [
1351
+ 1.0638269123140547
1352
+ ]
1353
+ ],
1354
+ "intercept": [
1355
+ -1.0500459135423696
1356
+ ],
1357
+ "x0": [
1358
+ -1.0199234501712975,
1359
+ -0.9999940866794924,
1360
+ -0.9999116787251026,
1361
+ -0.9875627671022001,
1362
+ -0.9874889986274953,
1363
+ -0.9504306995378152,
1364
+ -0.9502159648739382,
1365
+ -0.9230139844783734,
1366
+ -0.922969931058108,
1367
+ -0.8449597096117958,
1368
+ -0.8449466632048586,
1369
+ -0.8000666587391363,
1370
+ -0.7999651250375173,
1371
+ -0.7453387570904597,
1372
+ -0.7452492869558871,
1373
+ -0.6880559631457261,
1374
+ -0.6876018277071652,
1375
+ -0.4163708637296526,
1376
+ -0.4089503591453124,
1377
+ -0.3422760227720679,
1378
+ -0.3325989812075447,
1379
+ -0.26896409304876334,
1380
+ -0.2311212697577245,
1381
+ -0.14109465757978035,
1382
+ -0.1050875889776246,
1383
+ -0.066181523151848
1384
+ ],
1385
+ "x_max": -0.066181523151848,
1386
+ "x_min": -1.0199234501712975,
1387
+ "y0": [
1388
+ 0.0,
1389
+ 0.0,
1390
+ 0.010101010101010102,
1391
+ 0.010101010101010102,
1392
+ 0.02570694087403599,
1393
+ 0.02570694087403599,
1394
+ 0.02857142857142857,
1395
+ 0.02857142857142857,
1396
+ 0.031088082901554404,
1397
+ 0.031088082901554404,
1398
+ 0.08196721311475409,
1399
+ 0.08196721311475409,
1400
+ 0.0975609756097561,
1401
+ 0.0975609756097561,
1402
+ 0.11764705882352941,
1403
+ 0.11764705882352941,
1404
+ 0.14285714285714285,
1405
+ 0.14285714285714285,
1406
+ 0.3076923076923077,
1407
+ 0.3076923076923077,
1408
+ 0.42857142857142855,
1409
+ 0.42857142857142855,
1410
+ 0.8333333333333334,
1411
+ 0.8333333333333334,
1412
+ 1.0,
1413
+ 1.0
1414
+ ]
1415
+ },
1416
+ {
1417
+ "coef": [
1418
+ [
1419
+ 1.096758407454776
1420
+ ]
1421
+ ],
1422
+ "intercept": [
1423
+ -1.055167618027271
1424
+ ],
1425
+ "x0": [
1426
+ -1.020131505808367,
1427
+ -1.0059211960996113,
1428
+ -1.0059050165555292,
1429
+ -0.996939616577453,
1430
+ -0.9969173370183926,
1431
+ -0.9835280206852376,
1432
+ -0.9833181850728733,
1433
+ -0.929671597216839,
1434
+ -0.9296553849868093,
1435
+ -0.9193006483755612,
1436
+ -0.919161242808875,
1437
+ -0.8963253198907385,
1438
+ -0.8958272187346468,
1439
+ -0.8878365014579762,
1440
+ -0.8877675667944027,
1441
+ -0.8502504399770857,
1442
+ -0.8492453634301178,
1443
+ -0.5686688293396501,
1444
+ -0.5632815641355099,
1445
+ -0.5375985154051841,
1446
+ -0.5353781589819728,
1447
+ -0.45054635791402964,
1448
+ -0.4484194179291747,
1449
+ -0.4146738572381863,
1450
+ -0.3910334841196985,
1451
+ -0.2983852309049294,
1452
+ -0.29808164382324565,
1453
+ -0.14871026244525198,
1454
+ -0.13325039755840862,
1455
+ -0.07123188438986094,
1456
+ -0.048179596841319006
1457
+ ],
1458
+ "x_max": -0.048179596841319006,
1459
+ "x_min": -1.020131505808367,
1460
+ "y0": [
1461
+ 0.0,
1462
+ 0.0,
1463
+ 0.007518796992481203,
1464
+ 0.007518796992481203,
1465
+ 0.017543859649122806,
1466
+ 0.017543859649122806,
1467
+ 0.021479713603818614,
1468
+ 0.021479713603818614,
1469
+ 0.04878048780487805,
1470
+ 0.04878048780487805,
1471
+ 0.06329113924050633,
1472
+ 0.06329113924050633,
1473
+ 0.06896551724137931,
1474
+ 0.06896551724137931,
1475
+ 0.07142857142857142,
1476
+ 0.07142857142857142,
1477
+ 0.07453416149068323,
1478
+ 0.07453416149068323,
1479
+ 0.1111111111111111,
1480
+ 0.1111111111111111,
1481
+ 0.2,
1482
+ 0.2,
1483
+ 0.25,
1484
+ 0.25,
1485
+ 0.42857142857142855,
1486
+ 0.42857142857142855,
1487
+ 0.4375,
1488
+ 0.4375,
1489
+ 0.6666666666666666,
1490
+ 0.6666666666666666,
1491
+ 1.0
1492
+ ]
1493
+ },
1494
+ {
1495
+ "coef": [
1496
+ [
1497
+ 1.0192893240958014
1498
+ ]
1499
+ ],
1500
+ "intercept": [
1501
+ -1.0434135518718168
1502
+ ],
1503
+ "x0": [
1504
+ -1.0111623826452667,
1505
+ -0.9959888476152152,
1506
+ -0.9959373241054497,
1507
+ -0.9611874678027185,
1508
+ -0.9610824158887104,
1509
+ -0.9355415867075108,
1510
+ -0.9354229865671895,
1511
+ -0.8979901713623936,
1512
+ -0.8978116598109821,
1513
+ -0.8846290685337032,
1514
+ -0.8843235043891193,
1515
+ -0.8755302346654252,
1516
+ -0.8751063969353022,
1517
+ -0.8599594191627716,
1518
+ -0.8599111498093823,
1519
+ -0.7541104380913812,
1520
+ -0.7509770614187808,
1521
+ -0.6423494788656237,
1522
+ -0.6413021645189869,
1523
+ -0.6212190757900966,
1524
+ -0.6184820606801298,
1525
+ -0.52192117855335,
1526
+ -0.5188606160028857,
1527
+ -0.39626727267313655,
1528
+ -0.3891991083266022,
1529
+ -0.34026030244508254,
1530
+ -0.3401742134913346,
1531
+ -0.19942813028762418,
1532
+ -0.19559799202994355,
1533
+ -0.1510479001582279,
1534
+ -0.14883255251569716,
1535
+ -0.1280025494626167
1536
+ ],
1537
+ "x_max": -0.1280025494626167,
1538
+ "x_min": -1.0111623826452667,
1539
+ "y0": [
1540
+ 0.0,
1541
+ 0.0,
1542
+ 0.0136986301369863,
1543
+ 0.0136986301369863,
1544
+ 0.021739130434782608,
1545
+ 0.021739130434782608,
1546
+ 0.02247191011235955,
1547
+ 0.02247191011235955,
1548
+ 0.02564102564102564,
1549
+ 0.02564102564102564,
1550
+ 0.05,
1551
+ 0.05,
1552
+ 0.05405405405405406,
1553
+ 0.05405405405405406,
1554
+ 0.059322033898305086,
1555
+ 0.059322033898305086,
1556
+ 0.109375,
1557
+ 0.109375,
1558
+ 0.2,
1559
+ 0.2,
1560
+ 0.2727272727272727,
1561
+ 0.2727272727272727,
1562
+ 0.2857142857142857,
1563
+ 0.2857142857142857,
1564
+ 0.5,
1565
+ 0.5,
1566
+ 0.6,
1567
+ 0.6,
1568
+ 0.6666666666666666,
1569
+ 0.6666666666666666,
1570
+ 0.75,
1571
+ 0.75
1572
+ ]
1573
+ },
1574
+ {
1575
+ "coef": [
1576
+ [
1577
+ 1.0246281291281125
1578
+ ]
1579
+ ],
1580
+ "intercept": [
1581
+ -1.046126360981268
1582
+ ],
1583
+ "x0": [
1584
+ -1.017756686004363,
1585
+ -1.0076691078074915,
1586
+ -1.007111022611281,
1587
+ -0.9865689458798288,
1588
+ -0.9864557783600643,
1589
+ -0.9355790769588279,
1590
+ -0.9355268446213867,
1591
+ -0.8592524325149089,
1592
+ -0.8591646101223447,
1593
+ -0.8017786006234253,
1594
+ -0.8017372850124589,
1595
+ -0.7916875145693405,
1596
+ -0.7894478908774645,
1597
+ -0.6835089846082325,
1598
+ -0.6809242702145596,
1599
+ -0.6208027275469761,
1600
+ -0.6155244368578598,
1601
+ -0.5322587317287224,
1602
+ -0.5320813769109154,
1603
+ -0.40510803046102895,
1604
+ -0.392876105638554,
1605
+ -0.25457965566226204,
1606
+ -0.2528513622775791,
1607
+ -0.11482711286015956,
1608
+ -0.07418678158401704,
1609
+ -0.07028790707685573
1610
+ ],
1611
+ "x_max": -0.07028790707685573,
1612
+ "x_min": -1.017756686004363,
1613
+ "y0": [
1614
+ 0.0,
1615
+ 0.0,
1616
+ 0.010638297872340425,
1617
+ 0.010638297872340425,
1618
+ 0.016393442622950817,
1619
+ 0.016393442622950817,
1620
+ 0.04918032786885246,
1621
+ 0.04918032786885246,
1622
+ 0.05555555555555555,
1623
+ 0.05555555555555555,
1624
+ 0.07142857142857142,
1625
+ 0.07142857142857142,
1626
+ 0.08333333333333333,
1627
+ 0.08333333333333333,
1628
+ 0.13043478260869565,
1629
+ 0.13043478260869565,
1630
+ 0.3157894736842105,
1631
+ 0.3157894736842105,
1632
+ 0.3333333333333333,
1633
+ 0.3333333333333333,
1634
+ 0.5,
1635
+ 0.5,
1636
+ 0.7142857142857143,
1637
+ 0.7142857142857143,
1638
+ 1.0,
1639
+ 1.0
1640
+ ]
1641
+ }
1642
+ ],
1643
+ "Year6": [
1644
+ {
1645
+ "coef": [
1646
+ [
1647
+ 1.340606917145108
1648
+ ]
1649
+ ],
1650
+ "intercept": [
1651
+ -1.0475421908007814
1652
+ ],
1653
+ "x0": [
1654
+ -1.0092021741074475,
1655
+ -0.995633400824669,
1656
+ -0.9951590414806812,
1657
+ -0.9820283475396332,
1658
+ -0.9817901515581261,
1659
+ -0.906122027838656,
1660
+ -0.9058965319804526,
1661
+ -0.8970114597943656,
1662
+ -0.8968299923620552,
1663
+ -0.7925502837390519,
1664
+ -0.792538377685589,
1665
+ -0.7439244631515856,
1666
+ -0.7405450017919006,
1667
+ -0.5673212330021985,
1668
+ -0.5644674958186597,
1669
+ -0.46202445575510687,
1670
+ -0.4595117590828409,
1671
+ -0.35183289217277947,
1672
+ -0.35087936911255946,
1673
+ 0.04275873029063826,
1674
+ 0.05210753926378531,
1675
+ 0.1336094294140786,
1676
+ 0.17419740538830197,
1677
+ 0.18425522384048465
1678
+ ],
1679
+ "x_max": 0.18425522384048465,
1680
+ "x_min": -1.0092021741074475,
1681
+ "y0": [
1682
+ 0.0,
1683
+ 0.0,
1684
+ 0.022988505747126436,
1685
+ 0.022988505747126436,
1686
+ 0.03211009174311927,
1687
+ 0.03211009174311927,
1688
+ 0.046511627906976744,
1689
+ 0.046511627906976744,
1690
+ 0.06936416184971098,
1691
+ 0.06936416184971098,
1692
+ 0.10810810810810811,
1693
+ 0.10810810810810811,
1694
+ 0.13414634146341464,
1695
+ 0.13414634146341464,
1696
+ 0.18518518518518517,
1697
+ 0.18518518518518517,
1698
+ 0.3333333333333333,
1699
+ 0.3333333333333333,
1700
+ 0.35294117647058826,
1701
+ 0.35294117647058826,
1702
+ 0.5,
1703
+ 0.5,
1704
+ 1.0,
1705
+ 1.0
1706
+ ]
1707
+ },
1708
+ {
1709
+ "coef": [
1710
+ [
1711
+ 1.2907222572139896
1712
+ ]
1713
+ ],
1714
+ "intercept": [
1715
+ -1.039821376539258
1716
+ ],
1717
+ "x0": [
1718
+ -1.0032743278933614,
1719
+ -0.9791775889843037,
1720
+ -0.9789944017955169,
1721
+ -0.9643426097971722,
1722
+ -0.963922185149528,
1723
+ -0.9613656665174612,
1724
+ -0.961356819217672,
1725
+ -0.9205582848036054,
1726
+ -0.9202258763639181,
1727
+ -0.7909939357247382,
1728
+ -0.7909781067514198,
1729
+ -0.7780041955414604,
1730
+ -0.7776605356444324,
1731
+ -0.7365259961709816,
1732
+ -0.7364028071380476,
1733
+ -0.7206493820664985,
1734
+ -0.7201010418121743,
1735
+ -0.6034922842627248,
1736
+ -0.6000744184880863,
1737
+ -0.27099471764664695,
1738
+ -0.26199155151510733,
1739
+ -0.1810967659576298,
1740
+ -0.16935578367307202,
1741
+ -0.09214870653380258,
1742
+ -0.04623468261490005,
1743
+ 0.06299300351957249,
1744
+ 0.10667973894981264,
1745
+ 0.15388377611101745
1746
+ ],
1747
+ "x_max": 0.15388377611101745,
1748
+ "x_min": -1.0032743278933614,
1749
+ "y0": [
1750
+ 0.0,
1751
+ 0.0,
1752
+ 0.014388489208633094,
1753
+ 0.014388489208633094,
1754
+ 0.04,
1755
+ 0.04,
1756
+ 0.0421455938697318,
1757
+ 0.0421455938697318,
1758
+ 0.05138339920948617,
1759
+ 0.05138339920948617,
1760
+ 0.07692307692307693,
1761
+ 0.07692307692307693,
1762
+ 0.08333333333333333,
1763
+ 0.08333333333333333,
1764
+ 0.14285714285714285,
1765
+ 0.14285714285714285,
1766
+ 0.15217391304347827,
1767
+ 0.15217391304347827,
1768
+ 0.20689655172413793,
1769
+ 0.20689655172413793,
1770
+ 0.36363636363636365,
1771
+ 0.36363636363636365,
1772
+ 0.6,
1773
+ 0.6,
1774
+ 0.8333333333333334,
1775
+ 0.8333333333333334,
1776
+ 1.0,
1777
+ 1.0
1778
+ ]
1779
+ },
1780
+ {
1781
+ "coef": [
1782
+ [
1783
+ 1.2981443067116996
1784
+ ]
1785
+ ],
1786
+ "intercept": [
1787
+ -1.0424440037259006
1788
+ ],
1789
+ "x0": [
1790
+ -1.0009745886777577,
1791
+ -0.9841549932959078,
1792
+ -0.9841358428769162,
1793
+ -0.9735242233444598,
1794
+ -0.9734978528306313,
1795
+ -0.9576500009696335,
1796
+ -0.9574016355103996,
1797
+ -0.893904504212875,
1798
+ -0.8938853151061683,
1799
+ -0.8816292500621034,
1800
+ -0.8814642469570553,
1801
+ -0.8544352101854283,
1802
+ -0.8538456480944956,
1803
+ -0.8443876817194529,
1804
+ -0.8443060893282346,
1805
+ -0.79990009777071,
1806
+ -0.7987104698741856,
1807
+ -0.7891257045127901,
1808
+ -0.7888712360664938,
1809
+ -0.42983927753286244,
1810
+ -0.4272112210437845,
1811
+ -0.3268026726926374,
1812
+ -0.32428518569341347,
1813
+ -0.284343292209814,
1814
+ -0.2563620927371575,
1815
+ -0.14670184156420663,
1816
+ -0.1463425100660386,
1817
+ 0.030456324575673266,
1818
+ 0.048754917455359426,
1819
+ 0.11314767903017375,
1820
+ 0.1494463503795691
1821
+ ],
1822
+ "x_max": 0.1494463503795691,
1823
+ "x_min": -1.0009745886777577,
1824
+ "y0": [
1825
+ 0.0,
1826
+ 0.0,
1827
+ 0.00980392156862745,
1828
+ 0.00980392156862745,
1829
+ 0.022556390977443608,
1830
+ 0.022556390977443608,
1831
+ 0.03289473684210526,
1832
+ 0.03289473684210526,
1833
+ 0.0625,
1834
+ 0.0625,
1835
+ 0.08771929824561403,
1836
+ 0.08771929824561403,
1837
+ 0.1,
1838
+ 0.1,
1839
+ 0.10526315789473684,
1840
+ 0.10526315789473684,
1841
+ 0.1111111111111111,
1842
+ 0.1111111111111111,
1843
+ 0.14545454545454545,
1844
+ 0.14545454545454545,
1845
+ 0.2631578947368421,
1846
+ 0.2631578947368421,
1847
+ 0.2857142857142857,
1848
+ 0.2857142857142857,
1849
+ 0.42857142857142855,
1850
+ 0.42857142857142855,
1851
+ 0.6363636363636364,
1852
+ 0.6363636363636364,
1853
+ 0.8,
1854
+ 0.8,
1855
+ 1.0
1856
+ ]
1857
+ },
1858
+ {
1859
+ "coef": [
1860
+ [
1861
+ 1.267499953639535
1862
+ ]
1863
+ ],
1864
+ "intercept": [
1865
+ -1.035861815812616
1866
+ ],
1867
+ "x0": [
1868
+ -0.9957570540603671,
1869
+ -0.9821540666109716,
1870
+ -0.982102731143961,
1871
+ -0.9638658914809329,
1872
+ -0.9638377872959027,
1873
+ -0.9336125767773732,
1874
+ -0.9334819433124802,
1875
+ -0.8550258905297626,
1876
+ -0.8548039090199113,
1877
+ -0.8384111798528299,
1878
+ -0.8380312067382899,
1879
+ -0.8279540810062146,
1880
+ -0.826569609923502,
1881
+ -0.8077341397870003,
1882
+ -0.8076741161982733,
1883
+ -0.6761095113040186,
1884
+ -0.6722131153609145,
1885
+ -0.5384220470663117,
1886
+ -0.5358309092005328,
1887
+ -0.5108573188459119,
1888
+ -0.5074538038252172,
1889
+ -0.33549109502565666,
1890
+ -0.3195973473534073,
1891
+ -0.2311267327585821,
1892
+ -0.22233737553707267,
1893
+ -0.16148131365196827,
1894
+ -0.16137426088264661,
1895
+ 0.0738068478711209,
1896
+ 0.07656166239514639,
1897
+ 0.10246405073568132
1898
+ ],
1899
+ "x_max": 0.10246405073568132,
1900
+ "x_min": -0.9957570540603671,
1901
+ "y0": [
1902
+ 0.0,
1903
+ 0.0,
1904
+ 0.024691358024691357,
1905
+ 0.024691358024691357,
1906
+ 0.0297029702970297,
1907
+ 0.0297029702970297,
1908
+ 0.03543307086614173,
1909
+ 0.03543307086614173,
1910
+ 0.04,
1911
+ 0.04,
1912
+ 0.06666666666666667,
1913
+ 0.06666666666666667,
1914
+ 0.08,
1915
+ 0.08,
1916
+ 0.08791208791208792,
1917
+ 0.08791208791208792,
1918
+ 0.13725490196078433,
1919
+ 0.13725490196078433,
1920
+ 0.2857142857142857,
1921
+ 0.2857142857142857,
1922
+ 0.2972972972972973,
1923
+ 0.2972972972972973,
1924
+ 0.3333333333333333,
1925
+ 0.3333333333333333,
1926
+ 0.5714285714285714,
1927
+ 0.5714285714285714,
1928
+ 0.7272727272727273,
1929
+ 0.7272727272727273,
1930
+ 0.75,
1931
+ 0.75
1932
+ ]
1933
+ },
1934
+ {
1935
+ "coef": [
1936
+ [
1937
+ 1.262442132690388
1938
+ ]
1939
+ ],
1940
+ "intercept": [
1941
+ -1.0375704296176012
1942
+ ],
1943
+ "x0": [
1944
+ -1.0026162135821177,
1945
+ -0.9901873299993725,
1946
+ -0.9894997144193408,
1947
+ -0.9646615162846798,
1948
+ -0.9640504320285327,
1949
+ -0.9013653567360134,
1950
+ -0.9013010013844471,
1951
+ -0.8107793489199652,
1952
+ -0.8072152551147188,
1953
+ -0.7464076686646566,
1954
+ -0.7457327181651399,
1955
+ -0.5907903335367819,
1956
+ -0.5876057124447174,
1957
+ -0.5135300879442599,
1958
+ -0.5070267172431278,
1959
+ -0.40443521953298234,
1960
+ -0.40421670104020413,
1961
+ -0.2537263109006871,
1962
+ -0.232702183186429,
1963
+ -0.06230742211331197,
1964
+ -0.0601779955199484,
1965
+ 0.10988138782509971,
1966
+ 0.15995425331743718,
1967
+ 0.16475804828264184
1968
+ ],
1969
+ "x_max": 0.16475804828264184,
1970
+ "x_min": -1.0026162135821177,
1971
+ "y0": [
1972
+ 0.0,
1973
+ 0.0,
1974
+ 0.014563106796116505,
1975
+ 0.014563106796116505,
1976
+ 0.027932960893854747,
1977
+ 0.027932960893854747,
1978
+ 0.0755813953488372,
1979
+ 0.0755813953488372,
1980
+ 0.1016949152542373,
1981
+ 0.1016949152542373,
1982
+ 0.109375,
1983
+ 0.109375,
1984
+ 0.15,
1985
+ 0.15,
1986
+ 0.4,
1987
+ 0.4,
1988
+ 0.4375,
1989
+ 0.4375,
1990
+ 0.5,
1991
+ 0.5,
1992
+ 0.7142857142857143,
1993
+ 0.7142857142857143,
1994
+ 1.0,
1995
+ 1.0
1996
+ ]
1997
+ }
1998
+ ]
1999
+ },
2000
+ "censoring_distribution": "weibull",
2001
+ "dropout": 0.0,
2002
+ "ensemble_size": 5,
2003
+ "hidden_dim": 512,
2004
+ "img_size": [
2005
+ 512,
2006
+ 512
2007
+ ],
2008
+ "initializer_range": 0.02,
2009
+ "max_followup": 6,
2010
+ "model_type": "sybil",
2011
+ "num_images": 208,
2012
+ "transformers_version": "4.53.2",
2013
+ "voxel_spacing": [
2014
+ 0.703125,
2015
+ 0.703125,
2016
+ 2.5
2017
+ ]
2018
+ }
configuration_sybil.py ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Sybil model configuration"""
2
+
3
+ from transformers import PretrainedConfig
4
+ from typing import Optional, List, Dict
5
+ import json
6
+
7
+
8
+ class SybilConfig(PretrainedConfig):
9
+ """
10
+ This is the configuration class to store the configuration of a [`SybilForRiskPrediction`].
11
+ It is used to instantiate a Sybil model according to the specified arguments, defining the model architecture.
12
+
13
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs.
14
+
15
+ Args:
16
+ hidden_dim (`int`, *optional*, defaults to 512):
17
+ Dimensionality of the hidden representations.
18
+ dropout (`float`, *optional*, defaults to 0.0):
19
+ The dropout probability for all fully connected layers.
20
+ max_followup (`int`, *optional*, defaults to 6):
21
+ Maximum number of years for risk prediction.
22
+ num_images (`int`, *optional*, defaults to 208):
23
+ Number of CT scan slices to process.
24
+ img_size (`List[int]`, *optional*, defaults to `[512, 512]`):
25
+ Size of input images after preprocessing.
26
+ voxel_spacing (`List[float]`, *optional*, defaults to `[0.703125, 0.703125, 2.5]`):
27
+ Target voxel spacing for CT scans (row, column, slice thickness).
28
+ censoring_distribution (`str`, *optional*, defaults to "weibull"):
29
+ Distribution used for censoring in survival analysis.
30
+ ensemble_size (`int`, *optional*, defaults to 5):
31
+ Number of models in the ensemble.
32
+ calibrator_data (`Dict`, *optional*):
33
+ Calibration data for risk score adjustment.
34
+ """
35
+
36
+ model_type = "sybil"
37
+
38
+ def __init__(
39
+ self,
40
+ hidden_dim: int = 512,
41
+ dropout: float = 0.0,
42
+ max_followup: int = 6,
43
+ num_images: int = 208,
44
+ img_size: List[int] = None,
45
+ voxel_spacing: List[float] = None,
46
+ censoring_distribution: str = "weibull",
47
+ ensemble_size: int = 5,
48
+ calibrator_data: Optional[Dict] = None,
49
+ initializer_range: float = 0.02,
50
+ **kwargs
51
+ ):
52
+ super().__init__(**kwargs)
53
+
54
+ self.hidden_dim = hidden_dim
55
+ self.dropout = dropout
56
+ self.max_followup = max_followup
57
+ self.num_images = num_images
58
+ self.img_size = img_size if img_size is not None else [512, 512]
59
+ self.voxel_spacing = voxel_spacing if voxel_spacing is not None else [0.703125, 0.703125, 2.5]
60
+ self.censoring_distribution = censoring_distribution
61
+ self.ensemble_size = ensemble_size
62
+ self.calibrator_data = calibrator_data
63
+ self.initializer_range = initializer_range
example.py ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Simple example of using Sybil for lung cancer risk prediction
3
+ """
4
+
5
+ import sys
6
+ import os
7
+
8
+ # Install required packages if needed
9
+ # !pip install torch torchvision transformers pydicom torchio sybil
10
+
11
+ # Import the model
12
+ from modeling_sybil_wrapper import SybilHFWrapper
13
+ from configuration_sybil import SybilConfig
14
+
15
+ def predict_cancer_risk(dicom_paths):
16
+ """
17
+ Predict lung cancer risk from DICOM files.
18
+
19
+ Args:
20
+ dicom_paths: List of paths to DICOM files from a CT scan
21
+
22
+ Returns:
23
+ Risk scores for years 1-6
24
+ """
25
+ # Load model
26
+ print("Loading Sybil model...")
27
+ config = SybilConfig()
28
+ model = SybilHFWrapper.from_pretrained("Lab-Rasool/sybil")
29
+
30
+ # Run prediction
31
+ print(f"Processing {len(dicom_paths)} DICOM files...")
32
+ output = model(dicom_paths=dicom_paths, return_attentions=False)
33
+
34
+ # Extract risk scores
35
+ risk_scores = output.risk_scores.numpy()
36
+
37
+ return risk_scores
38
+
39
+
40
+ def main():
41
+ # Example usage with demo data
42
+ # In practice, replace with actual DICOM file paths
43
+ demo_dicom_paths = [
44
+ "path/to/slice001.dcm",
45
+ "path/to/slice002.dcm",
46
+ # ... more slices
47
+ ]
48
+
49
+ # For testing, you can download demo data:
50
+ # Download from: https://github.com/reginabarzilaygroup/Sybil
51
+
52
+ print("=" * 50)
53
+ print("Sybil Lung Cancer Risk Prediction")
54
+ print("=" * 50)
55
+
56
+ # Uncomment when you have actual DICOM files:
57
+ # risk_scores = predict_cancer_risk(demo_dicom_paths)
58
+
59
+ # Print results
60
+ # print("\nLung Cancer Risk Predictions:")
61
+ # print("-" * 30)
62
+ # for year, score in enumerate(risk_scores, 1):
63
+ # risk_pct = score * 100
64
+ # print(f"Year {year}: {risk_pct:.2f}% risk")
65
+
66
+ print("\nNote: This example requires actual DICOM files.")
67
+ print("Please provide paths to LDCT scan DICOM files.")
68
+ print("\nFor more information:")
69
+ print("- Original paper: https://doi.org/10.1200/JCO.22.01345")
70
+ print("- GitHub: https://github.com/reginabarzilaygroup/Sybil")
71
+
72
+
73
+ if __name__ == "__main__":
74
+ main()
image_processing_sybil.py ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Image processor for Sybil CT scan preprocessing"""
2
+
3
+ import numpy as np
4
+ import torch
5
+ from typing import Dict, List, Optional, Union, Tuple
6
+ from transformers.image_processing_utils import BaseImageProcessor, BatchFeature
7
+ from transformers.utils import TensorType
8
+ import pydicom
9
+ from PIL import Image
10
+ import torchio as tio
11
+
12
+
13
+ def order_slices(dicoms: List) -> List:
14
+ """Order DICOM slices by their position"""
15
+ # Sort by ImagePositionPatient if available
16
+ try:
17
+ dicoms = sorted(dicoms, key=lambda x: float(x.ImagePositionPatient[2]))
18
+ except (AttributeError, TypeError):
19
+ # Fall back to InstanceNumber if ImagePositionPatient not available
20
+ try:
21
+ dicoms = sorted(dicoms, key=lambda x: int(x.InstanceNumber))
22
+ except (AttributeError, TypeError):
23
+ pass # Keep original order if neither attribute is available
24
+ return dicoms
25
+
26
+
27
+ class SybilImageProcessor(BaseImageProcessor):
28
+ """
29
+ Constructs a Sybil image processor for preprocessing CT scans.
30
+
31
+ Args:
32
+ voxel_spacing (`List[float]`, *optional*, defaults to `[0.703125, 0.703125, 2.5]`):
33
+ Target voxel spacing for resampling (row, column, slice thickness).
34
+ img_size (`List[int]`, *optional*, defaults to `[512, 512]`):
35
+ Target image size after resizing.
36
+ num_images (`int`, *optional*, defaults to `208`):
37
+ Number of slices to use from the CT scan.
38
+ windowing (`Dict[str, float]`, *optional*):
39
+ Windowing parameters for CT scan visualization.
40
+ Default uses lung window: center=-600, width=1500.
41
+ normalize (`bool`, *optional*, defaults to `True`):
42
+ Whether to normalize pixel values to [0, 1].
43
+ **kwargs:
44
+ Additional keyword arguments passed to the parent class.
45
+ """
46
+
47
+ model_input_names = ["pixel_values"]
48
+
49
+ def __init__(
50
+ self,
51
+ voxel_spacing: List[float] = None,
52
+ img_size: List[int] = None,
53
+ num_images: int = 208,
54
+ windowing: Dict[str, float] = None,
55
+ normalize: bool = True,
56
+ **kwargs
57
+ ):
58
+ super().__init__(**kwargs)
59
+
60
+ self.voxel_spacing = voxel_spacing if voxel_spacing is not None else [0.703125, 0.703125, 2.5]
61
+ self.img_size = img_size if img_size is not None else [512, 512]
62
+ self.num_images = num_images
63
+
64
+ # Default lung window settings
65
+ self.windowing = windowing if windowing is not None else {
66
+ "center": -600,
67
+ "width": 1500
68
+ }
69
+ self.normalize = normalize
70
+
71
+ # TorchIO transforms for standardization
72
+ self.resample_transform = tio.transforms.Resample(target=self.voxel_spacing)
73
+ # Note: Original Sybil uses 200 depth, 256x256 images
74
+ self.default_depth = 200
75
+ self.default_size = [256, 256]
76
+ self.padding_transform = tio.transforms.CropOrPad(
77
+ target_shape=(self.default_depth, *self.default_size),
78
+ padding_mode=0
79
+ )
80
+
81
+ def load_dicom_series(self, paths: List[str]) -> Tuple[np.ndarray, Dict]:
82
+ """
83
+ Load a series of DICOM files.
84
+
85
+ Args:
86
+ paths: List of paths to DICOM files.
87
+
88
+ Returns:
89
+ Tuple of (volume array, metadata dict)
90
+ """
91
+ dicoms = []
92
+ for path in paths:
93
+ try:
94
+ dcm = pydicom.dcmread(path, stop_before_pixels=False)
95
+ dicoms.append(dcm)
96
+ except Exception as e:
97
+ print(f"Error reading DICOM file {path}: {e}")
98
+ continue
99
+
100
+ if not dicoms:
101
+ raise ValueError("No valid DICOM files found")
102
+
103
+ # Order slices by position
104
+ dicoms = order_slices(dicoms)
105
+
106
+ # Extract pixel arrays
107
+ volume = np.stack([dcm.pixel_array.astype(np.float32) for dcm in dicoms])
108
+
109
+ # Extract metadata
110
+ metadata = {
111
+ "slice_thickness": float(dicoms[0].SliceThickness) if hasattr(dicoms[0], 'SliceThickness') else None,
112
+ "pixel_spacing": list(map(float, dicoms[0].PixelSpacing)) if hasattr(dicoms[0], 'PixelSpacing') else None,
113
+ "manufacturer": str(dicoms[0].Manufacturer) if hasattr(dicoms[0], 'Manufacturer') else None,
114
+ "num_slices": len(dicoms)
115
+ }
116
+
117
+ # Apply rescale if present
118
+ if hasattr(dicoms[0], 'RescaleSlope') and hasattr(dicoms[0], 'RescaleIntercept'):
119
+ slope = float(dicoms[0].RescaleSlope)
120
+ intercept = float(dicoms[0].RescaleIntercept)
121
+ volume = volume * slope + intercept
122
+
123
+ return volume, metadata
124
+
125
+ def load_png_series(self, paths: List[str]) -> np.ndarray:
126
+ """
127
+ Load a series of PNG files.
128
+
129
+ Args:
130
+ paths: List of paths to PNG files (must be in anatomical order).
131
+
132
+ Returns:
133
+ 3D volume array
134
+ """
135
+ images = []
136
+ for path in paths:
137
+ img = Image.open(path).convert('L') # Convert to grayscale
138
+ images.append(np.array(img, dtype=np.float32))
139
+
140
+ return np.stack(images)
141
+
142
+ def apply_windowing(self, volume: np.ndarray) -> np.ndarray:
143
+ """
144
+ Apply windowing to CT scan for better visualization.
145
+
146
+ Args:
147
+ volume: 3D CT volume.
148
+
149
+ Returns:
150
+ Windowed volume.
151
+ """
152
+ center = self.windowing["center"]
153
+ width = self.windowing["width"]
154
+
155
+ # Calculate window boundaries
156
+ lower = center - width / 2
157
+ upper = center + width / 2
158
+
159
+ # Apply windowing
160
+ volume = np.clip(volume, lower, upper)
161
+
162
+ # Normalize to [0, 1] if requested
163
+ if self.normalize:
164
+ volume = (volume - lower) / (upper - lower)
165
+
166
+ return volume
167
+
168
+ def resample_volume(
169
+ self,
170
+ volume: torch.Tensor,
171
+ original_spacing: Optional[List[float]] = None
172
+ ) -> torch.Tensor:
173
+ """
174
+ Resample volume to target voxel spacing.
175
+
176
+ Args:
177
+ volume: 3D volume tensor.
178
+ original_spacing: Original voxel spacing.
179
+
180
+ Returns:
181
+ Resampled volume.
182
+ """
183
+ # Create TorchIO subject
184
+ subject = tio.Subject(
185
+ image=tio.ScalarImage(tensor=volume.unsqueeze(0), spacing=original_spacing)
186
+ )
187
+
188
+ # Apply resampling
189
+ resampled = self.resample_transform(subject)
190
+
191
+ return resampled['image'].data.squeeze(0)
192
+
193
+ def pad_or_crop_volume(self, volume: torch.Tensor) -> torch.Tensor:
194
+ """
195
+ Pad or crop volume to target shape.
196
+
197
+ Args:
198
+ volume: 3D volume tensor.
199
+
200
+ Returns:
201
+ Padded/cropped volume.
202
+ """
203
+ # Create TorchIO subject
204
+ subject = tio.Subject(
205
+ image=tio.ScalarImage(tensor=volume.unsqueeze(0))
206
+ )
207
+
208
+ # Apply padding/cropping
209
+ transformed = self.padding_transform(subject)
210
+
211
+ return transformed['image'].data.squeeze(0)
212
+
213
+ def preprocess(
214
+ self,
215
+ images: Union[List[str], np.ndarray, torch.Tensor],
216
+ file_type: str = "dicom",
217
+ voxel_spacing: Optional[List[float]] = None,
218
+ return_tensors: Optional[Union[str, TensorType]] = None,
219
+ **kwargs
220
+ ) -> BatchFeature:
221
+ """
222
+ Preprocess CT scan images.
223
+
224
+ Args:
225
+ images: Either list of file paths or numpy/torch array of images.
226
+ file_type: Type of input files ("dicom" or "png").
227
+ voxel_spacing: Original voxel spacing (required for PNG files).
228
+ return_tensors: The type of tensors to return.
229
+
230
+ Returns:
231
+ BatchFeature with preprocessed images.
232
+ """
233
+ # Load images if paths are provided
234
+ if isinstance(images, list) and isinstance(images[0], str):
235
+ if file_type == "dicom":
236
+ volume, metadata = self.load_dicom_series(images)
237
+ if voxel_spacing is None and metadata["pixel_spacing"]:
238
+ voxel_spacing = metadata["pixel_spacing"] + [metadata["slice_thickness"]]
239
+ elif file_type == "png":
240
+ if voxel_spacing is None:
241
+ raise ValueError("voxel_spacing must be provided for PNG files")
242
+ volume = self.load_png_series(images)
243
+ else:
244
+ raise ValueError(f"Unknown file type: {file_type}")
245
+ elif isinstance(images, (np.ndarray, torch.Tensor)):
246
+ volume = images
247
+ else:
248
+ raise ValueError("Images must be file paths, numpy array, or torch tensor")
249
+
250
+ # Convert to torch tensor
251
+ if isinstance(volume, np.ndarray):
252
+ volume = torch.from_numpy(volume).float()
253
+
254
+ # Apply windowing
255
+ if isinstance(volume, torch.Tensor):
256
+ volume_np = volume.numpy()
257
+ else:
258
+ volume_np = volume
259
+ volume_np = self.apply_windowing(volume_np)
260
+ volume = torch.from_numpy(volume_np).float()
261
+
262
+ # Resample if spacing is provided
263
+ if voxel_spacing is not None:
264
+ volume = self.resample_volume(volume, voxel_spacing)
265
+
266
+ # Pad or crop to target shape
267
+ volume = self.pad_or_crop_volume(volume)
268
+
269
+ # Reshape to match original Sybil format: (D, H, W) -> (C, D, H, W)
270
+ # The model expects 3 channels (RGB format), so repeat grayscale to 3 channels
271
+ volume = volume.unsqueeze(0).repeat(3, 1, 1, 1) # Now (3, D, H, W)
272
+
273
+ # Prepare output
274
+ data = {"pixel_values": volume}
275
+
276
+ # Convert to requested tensor type
277
+ if return_tensors == "pt":
278
+ return BatchFeature(data=data, tensor_type=TensorType.PYTORCH)
279
+ elif return_tensors == "np":
280
+ data = {k: v.numpy() for k, v in data.items()}
281
+ return BatchFeature(data=data, tensor_type=TensorType.NUMPY)
282
+ else:
283
+ return BatchFeature(data=data)
284
+
285
+ def __call__(
286
+ self,
287
+ images: Union[List[str], List[List[str]], np.ndarray, torch.Tensor],
288
+ **kwargs
289
+ ) -> BatchFeature:
290
+ """
291
+ Main method to prepare images for the model.
292
+
293
+ Args:
294
+ images: Images to preprocess. Can be:
295
+ - List of file paths for a single series
296
+ - List of lists of file paths for multiple series
297
+ - Numpy array or torch tensor
298
+
299
+ Returns:
300
+ BatchFeature with preprocessed images ready for model input.
301
+ """
302
+ # Handle batch processing
303
+ if isinstance(images, list) and images and isinstance(images[0], list):
304
+ # Multiple series
305
+ batch_volumes = []
306
+ for series_paths in images:
307
+ result = self.preprocess(series_paths, **kwargs)
308
+ batch_volumes.append(result["pixel_values"])
309
+
310
+ # Stack into batch (B, C, D, H, W)
311
+ pixel_values = torch.stack(batch_volumes)
312
+ return BatchFeature(data={"pixel_values": pixel_values})
313
+ else:
314
+ # Single series
315
+ return self.preprocess(images, **kwargs)
modeling_sybil.py ADDED
@@ -0,0 +1,385 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """PyTorch Sybil model for lung cancer risk prediction"""
2
+
3
+ import torch
4
+ import torch.nn as nn
5
+ import torchvision
6
+ from transformers import PreTrainedModel
7
+ from transformers.modeling_outputs import BaseModelOutput
8
+ from typing import Optional, Dict, List, Tuple
9
+ import numpy as np
10
+ from dataclasses import dataclass
11
+
12
+ try:
13
+ from .configuration_sybil import SybilConfig
14
+ except ImportError:
15
+ from configuration_sybil import SybilConfig
16
+
17
+
18
+ @dataclass
19
+ class SybilOutput(BaseModelOutput):
20
+ """
21
+ Base class for Sybil model outputs.
22
+
23
+ Args:
24
+ risk_scores: (`torch.FloatTensor` of shape `(batch_size, max_followup)`):
25
+ Predicted risk scores for each year up to max_followup.
26
+ image_attention: (`torch.FloatTensor` of shape `(batch_size, num_slices, height, width)`, *optional*):
27
+ Attention weights over image pixels.
28
+ volume_attention: (`torch.FloatTensor` of shape `(batch_size, num_slices)`, *optional*):
29
+ Attention weights over CT scan slices.
30
+ hidden_states: (`torch.FloatTensor` of shape `(batch_size, hidden_dim)`, *optional*):
31
+ Hidden states from the pooling layer.
32
+ """
33
+ risk_scores: torch.FloatTensor = None
34
+ image_attention: Optional[torch.FloatTensor] = None
35
+ volume_attention: Optional[torch.FloatTensor] = None
36
+ hidden_states: Optional[torch.FloatTensor] = None
37
+
38
+
39
+ class CumulativeProbabilityLayer(nn.Module):
40
+ """Cumulative probability layer for survival prediction"""
41
+
42
+ def __init__(self, hidden_dim: int, max_followup: int = 6):
43
+ super().__init__()
44
+ self.max_followup = max_followup
45
+ self.fc = nn.Linear(hidden_dim, max_followup)
46
+
47
+ def forward(self, x):
48
+ logits = self.fc(x)
49
+ # Apply cumulative sum for monotonic risk scores
50
+ cumsum = torch.cumsum(torch.sigmoid(logits), dim=-1)
51
+ # Normalize to [0, 1] range
52
+ return cumsum / self.max_followup
53
+
54
+
55
+ class MultiAttentionPool(nn.Module):
56
+ """Multi-attention pooling layer for CT scan aggregation"""
57
+
58
+ def __init__(self, channels: int = 512):
59
+ super().__init__()
60
+ self.channels = channels
61
+
62
+ # Volume-level attention (across slices)
63
+ self.volume_attention = nn.Sequential(
64
+ nn.Conv3d(channels, 128, kernel_size=1),
65
+ nn.ReLU(),
66
+ nn.Conv3d(128, 1, kernel_size=1)
67
+ )
68
+
69
+ # Image-level attention (within slices)
70
+ self.image_attention = nn.Sequential(
71
+ nn.Conv3d(channels, 128, kernel_size=1),
72
+ nn.ReLU(),
73
+ nn.Conv3d(128, 1, kernel_size=1)
74
+ )
75
+
76
+ def forward(self, x):
77
+ batch_size = x.shape[0]
78
+
79
+ # Compute attention weights
80
+ volume_att = self.volume_attention(x) # [B, 1, D, H, W]
81
+ image_att = self.image_attention(x) # [B, 1, D, H, W]
82
+
83
+ # Apply softmax for normalization
84
+ volume_att_flat = volume_att.view(batch_size, -1)
85
+ volume_att_weights = torch.softmax(volume_att_flat, dim=-1)
86
+ volume_att_weights = volume_att_weights.view_as(volume_att)
87
+
88
+ image_att_2d = image_att.squeeze(1) # [B, D, H, W]
89
+ for i in range(image_att_2d.shape[1]): # For each slice
90
+ slice_att = image_att_2d[:, i, :, :].contiguous()
91
+ slice_att_flat = slice_att.view(batch_size, -1)
92
+ slice_att_weights = torch.softmax(slice_att_flat, dim=-1)
93
+ image_att_2d[:, i, :, :] = slice_att_weights.view_as(slice_att)
94
+ image_att = image_att_2d.unsqueeze(1)
95
+
96
+ # Apply attention and pool
97
+ attended = x * volume_att_weights * image_att
98
+ hidden = attended.mean(dim=[2, 3, 4]) # Global average pooling
99
+
100
+ return {
101
+ 'hidden': hidden,
102
+ 'volume_attention_1': volume_att_weights.squeeze(1),
103
+ 'image_attention_1': image_att.squeeze(1)
104
+ }
105
+
106
+
107
+ class SybilPreTrainedModel(PreTrainedModel):
108
+ """
109
+ An abstract class to handle weights initialization and a simple interface
110
+ for downloading and loading pretrained models.
111
+ """
112
+ config_class = SybilConfig
113
+ base_model_prefix = "sybil"
114
+ supports_gradient_checkpointing = False
115
+
116
+ def _init_weights(self, module):
117
+ """Initialize the weights"""
118
+ if isinstance(module, nn.Linear):
119
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
120
+ if module.bias is not None:
121
+ module.bias.data.zero_()
122
+ elif isinstance(module, nn.Conv3d):
123
+ nn.init.kaiming_normal_(module.weight, mode='fan_out', nonlinearity='relu')
124
+ if module.bias is not None:
125
+ module.bias.data.zero_()
126
+
127
+
128
+ class SybilForRiskPrediction(SybilPreTrainedModel):
129
+ """
130
+ Sybil model for lung cancer risk prediction from CT scans.
131
+
132
+ This model takes 3D CT scan volumes as input and predicts cancer risk scores
133
+ for multiple future time points (typically 1-6 years).
134
+ """
135
+
136
+ def __init__(self, config: SybilConfig):
137
+ super().__init__(config)
138
+ self.config = config
139
+
140
+ # Use pretrained R3D-18 as backbone
141
+ encoder = torchvision.models.video.r3d_18(pretrained=True)
142
+ self.image_encoder = nn.Sequential(*list(encoder.children())[:-2])
143
+
144
+ # Multi-attention pooling
145
+ self.pool = MultiAttentionPool(channels=512)
146
+
147
+ # Classification layers
148
+ self.relu = nn.ReLU(inplace=False)
149
+ self.dropout = nn.Dropout(p=config.dropout)
150
+
151
+ # Risk prediction layer
152
+ self.prob_of_failure_layer = CumulativeProbabilityLayer(
153
+ config.hidden_dim,
154
+ max_followup=config.max_followup
155
+ )
156
+
157
+ # Calibrator for ensemble predictions
158
+ self.calibrator = None
159
+ if config.calibrator_data:
160
+ self.set_calibrator(config.calibrator_data)
161
+
162
+ # Initialize weights
163
+ self.post_init()
164
+
165
+ def set_calibrator(self, calibrator_data: Dict):
166
+ """Set calibration data for risk score adjustment"""
167
+ self.calibrator = calibrator_data
168
+
169
+ def _calibrate_scores(self, scores: torch.Tensor) -> torch.Tensor:
170
+ """Apply calibration to raw risk scores"""
171
+ if self.calibrator is None:
172
+ return scores
173
+
174
+ # Convert to numpy for calibration
175
+ scores_np = scores.detach().cpu().numpy()
176
+ calibrated = np.zeros_like(scores_np)
177
+
178
+ # Apply calibration for each year
179
+ for year in range(scores_np.shape[1]):
180
+ year_key = f"Year{year + 1}"
181
+ if year_key in self.calibrator:
182
+ # Apply calibration transformation
183
+ calibrated[:, year] = self._apply_calibration(
184
+ scores_np[:, year],
185
+ self.calibrator[year_key]
186
+ )
187
+ else:
188
+ calibrated[:, year] = scores_np[:, year]
189
+
190
+ return torch.from_numpy(calibrated).to(scores.device)
191
+
192
+ def _apply_calibration(self, scores: np.ndarray, calibrator_params: Dict) -> np.ndarray:
193
+ """Apply specific calibration transformation"""
194
+ # Simplified calibration - in practice, this would use the full calibration model
195
+ # from the original Sybil implementation
196
+ return scores # Placeholder for now
197
+
198
+ def forward(
199
+ self,
200
+ pixel_values: torch.FloatTensor,
201
+ return_attentions: bool = False,
202
+ return_dict: bool = True,
203
+ ) -> SybilOutput:
204
+ """
205
+ Forward pass of the Sybil model.
206
+
207
+ Args:
208
+ pixel_values: (`torch.FloatTensor` of shape `(batch_size, channels, depth, height, width)`):
209
+ Pixel values of CT scan volumes.
210
+ return_attentions: (`bool`, *optional*, defaults to `False`):
211
+ Whether to return attention weights.
212
+ return_dict: (`bool`, *optional*, defaults to `True`):
213
+ Whether to return a `SybilOutput` instead of a plain tuple.
214
+
215
+ Returns:
216
+ `SybilOutput` or tuple
217
+ """
218
+ # Extract features using 3D CNN backbone
219
+ features = self.image_encoder(pixel_values)
220
+
221
+ # Apply multi-attention pooling
222
+ pool_output = self.pool(features)
223
+
224
+ # Apply ReLU and dropout
225
+ hidden = self.relu(pool_output['hidden'])
226
+ hidden = self.dropout(hidden)
227
+
228
+ # Predict risk scores
229
+ risk_logits = self.prob_of_failure_layer(hidden)
230
+ risk_scores = torch.sigmoid(risk_logits)
231
+
232
+ # Apply calibration if available
233
+ risk_scores = self._calibrate_scores(risk_scores)
234
+
235
+ if not return_dict:
236
+ outputs = (risk_scores,)
237
+ if return_attentions:
238
+ outputs = outputs + (pool_output.get('image_attention_1'),
239
+ pool_output.get('volume_attention_1'))
240
+ return outputs
241
+
242
+ return SybilOutput(
243
+ risk_scores=risk_scores,
244
+ image_attention=pool_output.get('image_attention_1') if return_attentions else None,
245
+ volume_attention=pool_output.get('volume_attention_1') if return_attentions else None,
246
+ hidden_states=hidden if return_attentions else None
247
+ )
248
+
249
+ @classmethod
250
+ def from_pretrained_ensemble(
251
+ cls,
252
+ pretrained_model_name_or_path,
253
+ checkpoint_paths: List[str],
254
+ calibrator_path: Optional[str] = None,
255
+ **kwargs
256
+ ):
257
+ """
258
+ Load an ensemble of Sybil models from checkpoints.
259
+
260
+ Args:
261
+ pretrained_model_name_or_path: Path to the pretrained model or model identifier.
262
+ checkpoint_paths: List of paths to individual model checkpoints.
263
+ calibrator_path: Path to calibration data.
264
+ **kwargs: Additional keyword arguments for model initialization.
265
+
266
+ Returns:
267
+ SybilEnsemble: An ensemble of Sybil models.
268
+ """
269
+ config = kwargs.pop("config", None)
270
+ if config is None:
271
+ config = SybilConfig.from_pretrained(pretrained_model_name_or_path)
272
+
273
+ # Load calibrator if provided
274
+ calibrator_data = None
275
+ if calibrator_path:
276
+ import json
277
+ with open(calibrator_path, 'r') as f:
278
+ calibrator_data = json.load(f)
279
+ config.calibrator_data = calibrator_data
280
+
281
+ # Create ensemble
282
+ models = []
283
+ for checkpoint_path in checkpoint_paths:
284
+ model = cls(config)
285
+ # Load checkpoint weights
286
+ checkpoint = torch.load(checkpoint_path, map_location='cpu')
287
+ # Remove 'model.' prefix from state dict keys if present
288
+ state_dict = {}
289
+ for k, v in checkpoint['state_dict'].items():
290
+ if k.startswith('model.'):
291
+ state_dict[k[6:]] = v
292
+ else:
293
+ state_dict[k] = v
294
+
295
+ # Map to new model structure
296
+ mapped_state_dict = model._map_checkpoint_weights(state_dict)
297
+ model.load_state_dict(mapped_state_dict, strict=False)
298
+ models.append(model)
299
+
300
+ return SybilEnsemble(models, config)
301
+
302
+ def _map_checkpoint_weights(self, state_dict: Dict) -> Dict:
303
+ """Map original Sybil checkpoint weights to new structure"""
304
+ mapped = {}
305
+
306
+ # Map encoder weights
307
+ for k, v in state_dict.items():
308
+ if k.startswith('image_encoder'):
309
+ mapped[k] = v
310
+ elif k.startswith('pool'):
311
+ # Map pooling layer weights
312
+ mapped[k] = v
313
+ elif k.startswith('prob_of_failure_layer'):
314
+ # Map final prediction layer
315
+ mapped[k] = v
316
+
317
+ return mapped
318
+
319
+
320
+ class SybilEnsemble:
321
+ """Ensemble of Sybil models for improved predictions"""
322
+
323
+ def __init__(self, models: List[SybilForRiskPrediction], config: SybilConfig):
324
+ self.models = models
325
+ self.config = config
326
+ self.device = None
327
+
328
+ def to(self, device):
329
+ """Move all models to device"""
330
+ self.device = device
331
+ for model in self.models:
332
+ model.to(device)
333
+ return self
334
+
335
+ def eval(self):
336
+ """Set all models to evaluation mode"""
337
+ for model in self.models:
338
+ model.eval()
339
+
340
+ def __call__(
341
+ self,
342
+ pixel_values: torch.FloatTensor,
343
+ return_attentions: bool = False,
344
+ ) -> SybilOutput:
345
+ """
346
+ Run inference with ensemble voting.
347
+
348
+ Args:
349
+ pixel_values: Input CT scan volumes.
350
+ return_attentions: Whether to return attention maps.
351
+
352
+ Returns:
353
+ SybilOutput with averaged predictions from all models.
354
+ """
355
+ all_risk_scores = []
356
+ all_image_attentions = []
357
+ all_volume_attentions = []
358
+
359
+ with torch.no_grad():
360
+ for model in self.models:
361
+ output = model(
362
+ pixel_values=pixel_values,
363
+ return_attentions=return_attentions
364
+ )
365
+ all_risk_scores.append(output.risk_scores)
366
+
367
+ if return_attentions:
368
+ all_image_attentions.append(output.image_attention)
369
+ all_volume_attentions.append(output.volume_attention)
370
+
371
+ # Average predictions
372
+ risk_scores = torch.stack(all_risk_scores).mean(dim=0)
373
+
374
+ # Average attentions if requested
375
+ image_attention = None
376
+ volume_attention = None
377
+ if return_attentions:
378
+ image_attention = torch.stack(all_image_attentions).mean(dim=0)
379
+ volume_attention = torch.stack(all_volume_attentions).mean(dim=0)
380
+
381
+ return SybilOutput(
382
+ risk_scores=risk_scores,
383
+ image_attention=image_attention,
384
+ volume_attention=volume_attention
385
+ )
modeling_sybil_wrapper.py ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ Simplified Hugging Face wrapper for original Sybil model
3
+ This ensures full compatibility with the original implementation
4
+ """
5
+
6
+ import os
7
+ import sys
8
+ import json
9
+ import torch
10
+ import torch.nn as nn
11
+ from typing import Optional, List, Dict
12
+ from transformers import PreTrainedModel
13
+ from dataclasses import dataclass
14
+ from transformers.modeling_outputs import BaseModelOutput
15
+
16
+ # Add original Sybil to path
17
+ sys.path.append('/mnt/f/Projects/hfsybil/Sybil')
18
+ from sybil import Sybil as OriginalSybil
19
+ from sybil import Serie
20
+
21
+ try:
22
+ from .configuration_sybil import SybilConfig
23
+ except ImportError:
24
+ from configuration_sybil import SybilConfig
25
+
26
+
27
+ @dataclass
28
+ class SybilOutput(BaseModelOutput):
29
+ """
30
+ Output class for Sybil model.
31
+ """
32
+ risk_scores: torch.FloatTensor = None
33
+ attentions: Optional[Dict] = None
34
+
35
+
36
+ class SybilHFWrapper(PreTrainedModel):
37
+ """
38
+ Hugging Face wrapper around the original Sybil model.
39
+ This ensures complete compatibility while providing HF interface.
40
+ """
41
+ config_class = SybilConfig
42
+ base_model_prefix = "sybil"
43
+
44
+ def __init__(self, config: SybilConfig):
45
+ super().__init__(config)
46
+ self.config = config
47
+
48
+ # Load the original Sybil model with ensemble
49
+ checkpoint_dir = "/mnt/f/Projects/hfsybil/checkpoints"
50
+
51
+ # Copy checkpoints to ~/.sybil if needed
52
+ cache_dir = os.path.expanduser("~/.sybil")
53
+ os.makedirs(cache_dir, exist_ok=True)
54
+
55
+ # Map of checkpoint files
56
+ checkpoint_files = {
57
+ "28a7cd44f5bcd3e6cc760b65c7e0d54d.ckpt": "sybil_1",
58
+ "56ce1a7d241dc342982f5466c4a9d7ef.ckpt": "sybil_2",
59
+ "624407ef8e3a2a009f9fa51f9846fe9a.ckpt": "sybil_3",
60
+ "64a91b25f84141d32852e75a3aec7305.ckpt": "sybil_4",
61
+ "65fd1f04cb4c5847d86a9ed8ba31ac1a.ckpt": "sybil_5",
62
+ "sybil_ensemble_simple_calibrator.json": "ensemble_calibrator"
63
+ }
64
+
65
+ # Copy checkpoint files
66
+ for filename in checkpoint_files.keys():
67
+ src = os.path.join(checkpoint_dir, filename)
68
+ dst = os.path.join(cache_dir, filename)
69
+ if os.path.exists(src) and not os.path.exists(dst):
70
+ import shutil
71
+ shutil.copy2(src, dst)
72
+
73
+ # Initialize the original model
74
+ self.sybil_model = OriginalSybil("sybil_ensemble")
75
+
76
+ def forward(
77
+ self,
78
+ pixel_values: torch.FloatTensor = None,
79
+ dicom_paths: List[str] = None,
80
+ return_attentions: bool = False,
81
+ **kwargs
82
+ ) -> SybilOutput:
83
+ """
84
+ Forward pass using original Sybil model.
85
+
86
+ Args:
87
+ pixel_values: Pre-processed tensor (not used directly, for compatibility)
88
+ dicom_paths: List of DICOM file paths
89
+ return_attentions: Whether to return attention maps
90
+
91
+ Returns:
92
+ SybilOutput with risk scores and optional attentions
93
+ """
94
+
95
+ if dicom_paths is None:
96
+ raise ValueError("dicom_paths must be provided")
97
+
98
+ # Create Serie object
99
+ serie = Serie(dicom_paths)
100
+
101
+ # Run prediction
102
+ prediction = self.sybil_model.predict([serie], return_attentions=return_attentions)
103
+
104
+ # Convert to torch tensors
105
+ risk_scores = torch.tensor(prediction.scores[0])
106
+
107
+ return SybilOutput(
108
+ risk_scores=risk_scores,
109
+ attentions=prediction.attentions[0] if return_attentions else None
110
+ )
111
+
112
+ @classmethod
113
+ def from_pretrained(cls, pretrained_model_name_or_path, **kwargs):
114
+ """
115
+ Load the model. Since we're using the original Sybil,
116
+ we just need to ensure the checkpoints are available.
117
+ """
118
+ config = kwargs.pop("config", None)
119
+ if config is None:
120
+ config = SybilConfig.from_pretrained(pretrained_model_name_or_path)
121
+
122
+ return cls(config)
123
+
124
+ def save_pretrained(self, save_directory, **kwargs):
125
+ """
126
+ Save the model configuration.
127
+ The actual model weights are handled by the original Sybil.
128
+ """
129
+ os.makedirs(save_directory, exist_ok=True)
130
+ self.config.save_pretrained(save_directory)
131
+
132
+ # Save info about checkpoint locations
133
+ info = {
134
+ "model_type": "sybil_wrapper",
135
+ "checkpoint_dir": "/mnt/f/Projects/hfsybil/checkpoints",
136
+ "note": "This model uses the original Sybil implementation"
137
+ }
138
+
139
+ with open(os.path.join(save_directory, "model_info.json"), "w") as f:
140
+ json.dump(info, f, indent=2)
requirements.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ torch>=2.0.0
2
+ torchvision>=0.15.0
3
+ transformers>=4.30.0
4
+ pydicom>=2.3.0
5
+ torchio>=0.19.0
6
+ SimpleITK>=2.2.0
7
+ numpy>=1.21.0
8
+ Pillow>=9.0.0
9
+ sybil>=1.2.0
sybil_1/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SybilForRiskPrediction"
4
+ ],
5
+ "calibrator_data": null,
6
+ "censoring_distribution": {
7
+ "0": 0.9851933387778276,
8
+ "1": 0.9748326267838882,
9
+ "2": 0.9659936099043455,
10
+ "3": 0.9587266943913851,
11
+ "4": 0.952360797355704,
12
+ "5": 0.9461857341570268
13
+ },
14
+ "dropout": 0.1,
15
+ "ensemble_size": 5,
16
+ "hidden_dim": 512,
17
+ "img_size": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "initializer_range": 0.02,
22
+ "max_followup": 6,
23
+ "model_type": "sybil",
24
+ "num_images": 200,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.53.2",
27
+ "voxel_spacing": [
28
+ 0.703125,
29
+ 0.703125,
30
+ 2.5
31
+ ]
32
+ }
sybil_1/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3409876228509cb5cb993216d840253b48ffc803acf5066146276c38df03e85
3
+ size 133255624
sybil_2/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SybilForRiskPrediction"
4
+ ],
5
+ "calibrator_data": null,
6
+ "censoring_distribution": {
7
+ "0": 0.9851928130104384,
8
+ "1": 0.9748317321074379,
9
+ "2": 0.9659923988537461,
10
+ "3": 0.9587252204657827,
11
+ "4": 0.9523590830936266,
12
+ "5": 0.9461840310101451
13
+ },
14
+ "dropout": 0.1,
15
+ "ensemble_size": 5,
16
+ "hidden_dim": 512,
17
+ "img_size": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "initializer_range": 0.02,
22
+ "max_followup": 6,
23
+ "model_type": "sybil",
24
+ "num_images": 200,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.53.2",
27
+ "voxel_spacing": [
28
+ 0.703125,
29
+ 0.703125,
30
+ 2.5
31
+ ]
32
+ }
sybil_2/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72557b9dc9b609ae2105d571e4d1fd13acf54c20f517989112540c1eec3824d4
3
+ size 133255624
sybil_3/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SybilForRiskPrediction"
4
+ ],
5
+ "calibrator_data": null,
6
+ "censoring_distribution": {
7
+ "0": 0.9851928130104384,
8
+ "1": 0.9748317321074379,
9
+ "2": 0.9659923988537461,
10
+ "3": 0.9587252204657827,
11
+ "4": 0.9523590830936266,
12
+ "5": 0.9461840310101451
13
+ },
14
+ "dropout": 0.1,
15
+ "ensemble_size": 5,
16
+ "hidden_dim": 512,
17
+ "img_size": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "initializer_range": 0.02,
22
+ "max_followup": 6,
23
+ "model_type": "sybil",
24
+ "num_images": 200,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.53.2",
27
+ "voxel_spacing": [
28
+ 0.703125,
29
+ 0.703125,
30
+ 2.5
31
+ ]
32
+ }
sybil_3/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b5d06c8b7763fb4549a75fcdd518eb76258a7fa558a5df7d8521a990f83458f
3
+ size 133255624
sybil_4/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SybilForRiskPrediction"
4
+ ],
5
+ "calibrator_data": null,
6
+ "censoring_distribution": {
7
+ "0": 0.9851928130104384,
8
+ "1": 0.9748317321074379,
9
+ "2": 0.9659923988537461,
10
+ "3": 0.9587252204657827,
11
+ "4": 0.9523590830936266,
12
+ "5": 0.9461840310101451
13
+ },
14
+ "dropout": 0.1,
15
+ "ensemble_size": 5,
16
+ "hidden_dim": 512,
17
+ "img_size": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "initializer_range": 0.02,
22
+ "max_followup": 6,
23
+ "model_type": "sybil",
24
+ "num_images": 200,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.53.2",
27
+ "voxel_spacing": [
28
+ 0.703125,
29
+ 0.703125,
30
+ 2.5
31
+ ]
32
+ }
sybil_4/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99012397f340cfad8fc97961a3df6338109aa23f39998d8385ac23af08f3d334
3
+ size 133255624
sybil_5/config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SybilForRiskPrediction"
4
+ ],
5
+ "calibrator_data": null,
6
+ "censoring_distribution": {
7
+ "0": 0.9851928130104384,
8
+ "1": 0.9748317321074379,
9
+ "2": 0.9659923988537461,
10
+ "3": 0.9587252204657827,
11
+ "4": 0.9523590830936266,
12
+ "5": 0.9461840310101451
13
+ },
14
+ "dropout": 0.1,
15
+ "ensemble_size": 5,
16
+ "hidden_dim": 512,
17
+ "img_size": [
18
+ 256,
19
+ 256
20
+ ],
21
+ "initializer_range": 0.02,
22
+ "max_followup": 6,
23
+ "model_type": "sybil",
24
+ "num_images": 200,
25
+ "torch_dtype": "float32",
26
+ "transformers_version": "4.53.2",
27
+ "voxel_spacing": [
28
+ 0.703125,
29
+ 0.703125,
30
+ 2.5
31
+ ]
32
+ }
sybil_5/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b56be6f034b03f98b3940d2968cd0bb9838424a13924c4a07b85884f28e8e73
3
+ size 133255624