diff --git a/README.md b/README.md
index 10b0f4a783..f41d4de9e3 100644
--- a/README.md
+++ b/README.md
@@ -92,9 +92,12 @@ These options determine the overall layout of the plot; all are specified as num
* **margin** - shorthand for the four margins
* **width** - the outer width of the plot (including margins)
* **height** - the outer height of the plot (including margins)
+* **aspectRatio** - the desired aspect ratio of data (affecting default **height**)
The default **width** is 640. On Observable, the width can be set to the [standard width](https://github.com/observablehq/stdlib/blob/main/README.md#width) to make responsive plots. The default **height** is chosen automatically based on the plot’s associated scales; for example, if *y* is linear and there is no *fy* scale, it might be 396. The default margins depend on the maximum margins of the plot’s constituent [marks](#mark-options). While most marks default to zero margins (because they are drawn inside the chart area), Plot’s [axis mark](#axis) has non-zero default margins.
+The **aspectRatio** option, if not null, computes a default **height** such that a variation of one unit in the *x* dimension is represented by the corresponding number of pixels as a variation in the *y* dimension of one unit. Note: when using facets, set the *fx* and *fy* scales’ **round** option to false if you need an exact aspect ratio.
+
The **style** option allows custom styles to override Plot’s defaults. It may be specified either as a string of inline styles (*e.g.*, `"color: red;"`, in the same fashion as assigning [*element*.style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style)) or an object of properties (*e.g.*, `{color: "red"}`, in the same fashion as assigning [*element*.style properties](https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleDeclaration)). Note that unitless numbers ([quirky lengths](https://www.w3.org/TR/css-values-4/#deprecated-quirky-length)) such as `{padding: 20}` may not supported by some browsers; you should instead specify a string with units such as `{padding: "20px"}`. By default, the returned plot has a white background, a max-width of 100%, and the system-ui font. Plot’s marks and axes default to [currentColor](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#currentcolor_keyword), meaning that they will inherit the surrounding content’s color. For example, a dark theme:
```js
diff --git a/src/dimensions.js b/src/dimensions.js
index a939725599..998ce36b54 100644
--- a/src/dimensions.js
+++ b/src/dimensions.js
@@ -1,3 +1,4 @@
+import {extent} from "d3";
import {projectionAspectRatio} from "./projection.js";
import {isOrdinalScale} from "./scales.js";
import {offset} from "./style.js";
@@ -87,9 +88,9 @@ export function Dimensions(scales, marks, options = {}) {
}
function autoHeight(
- {y, fy, fx},
+ {x, y, fy, fx},
marks,
- {projection},
+ {projection, aspectRatio},
{width, marginTopDefault, marginRightDefault, marginBottomDefault, marginLeftDefault}
) {
const nfy = fy ? fy.scale.domain().length : 1;
@@ -104,5 +105,45 @@ function autoHeight(
}
const ny = y ? (isOrdinalScale(y) ? y.scale.domain().length : Math.max(7, 17 / nfy)) : 1;
+
+ // If a desired aspect ratio is given, compute a default height to match.
+ if (aspectRatio != null) {
+ aspectRatio = +aspectRatio;
+ if (!(isFinite(aspectRatio) && aspectRatio > 0)) throw new Error(`invalid aspectRatio: ${aspectRatio}`);
+ const ratio = aspectRatioLength("y", y) / (aspectRatioLength("x", x) * aspectRatio);
+ const fxb = fx ? fx.scale.bandwidth() : 1;
+ const fyb = fy ? fy.scale.bandwidth() : 1;
+ const w = fxb * (width - marginLeftDefault - marginRightDefault) - x.insetLeft - x.insetRight;
+ return (ratio * w + y.insetTop + y.insetBottom) / fyb + marginTopDefault + marginBottomDefault;
+ }
+
return !!(y || fy) * Math.max(1, Math.min(60, ny * nfy)) * 20 + !!fx * 30 + 60;
}
+
+function aspectRatioLength(k, scale) {
+ if (!scale) throw new Error(`aspectRatio requires ${k} scale`);
+ const {type, domain} = scale;
+ let transform;
+ switch (type) {
+ case "linear":
+ case "utc":
+ case "time":
+ transform = Number;
+ break;
+ case "pow": {
+ const exponent = scale.scale.exponent();
+ transform = (x) => Math.pow(x, exponent);
+ break;
+ }
+ case "log":
+ transform = Math.log;
+ break;
+ case "point":
+ case "band":
+ return domain.length;
+ default:
+ throw new Error(`unsupported ${k} scale for aspectRatio: ${type}`);
+ }
+ const [min, max] = extent(domain);
+ return Math.abs(transform(max) - transform(min));
+}
diff --git a/test/data/README.md b/test/data/README.md
index e4e77a68a3..09028e7844 100644
--- a/test/data/README.md
+++ b/test/data/README.md
@@ -95,6 +95,11 @@ https://data.giss.nasa.gov/gistemp/
Met Office Hadley Centre
https://www.metoffice.gov.uk/hadobs/hadcrut4/data/current/series_format.html
+## libor.csv
+CBO
+https://www.cbo.gov/topics/budget/accuracy-projections
+https://observablehq.com/@tophtucker/examples-of-bitemporal-charts
+
## metros.csv
The New York Times
https://www.nytimes.com/2019/12/02/upshot/wealth-poverty-divide-american-cities.html
diff --git a/test/data/libor-projections.csv b/test/data/libor-projections.csv
new file mode 100644
index 0000000000..4afadf1d3e
--- /dev/null
+++ b/test/data/libor-projections.csv
@@ -0,0 +1,2988 @@
+on,about,value
+2014-06-30,2014-06-30,0.001495
+2014-06-30,2014-07-31,0.001518
+2014-06-30,2014-08-31,0.0014928
+2014-06-30,2014-09-30,0.0015184
+2014-06-30,2014-10-31,0.0015797
+2014-06-30,2014-11-30,0.0016527
+2014-06-30,2014-12-31,0.0017622
+2014-06-30,2015-01-31,0.0019167
+2014-06-30,2015-02-28,0.002112
+2014-06-30,2015-03-31,0.002395
+2014-06-30,2015-04-30,0.0027637
+2014-06-30,2015-05-31,0.0032435
+2014-06-30,2015-06-30,0.003862
+2014-06-30,2015-07-31,0.0044738
+2014-06-30,2015-08-31,0.0051147
+2014-06-30,2015-09-30,0.0058751
+2014-06-30,2015-10-31,0.0065628
+2014-06-30,2015-11-30,0.0072844
+2014-06-30,2015-12-31,0.0079379
+2014-06-30,2016-01-31,0.0086836
+2014-06-30,2016-02-29,0.0094782
+2014-06-30,2016-03-31,0.0101887
+2014-06-30,2016-04-30,0.0110019
+2014-06-30,2016-05-31,0.0118652
+2014-06-30,2016-06-30,0.0126413
+2014-06-30,2016-07-31,0.013465
+2014-06-30,2016-08-31,0.0143128
+2014-06-30,2016-09-30,0.0151226
+2014-06-30,2016-10-31,0.0159521
+2014-06-30,2016-11-30,0.0167248
+2014-06-30,2016-12-31,0.0174432
+2014-06-30,2017-01-31,0.018216
+2014-06-30,2017-02-28,0.0189558
+2014-06-30,2017-03-31,0.019624
+2014-06-30,2017-04-30,0.02031
+2014-06-30,2017-05-31,0.0209979
+2014-06-30,2017-06-30,0.0216412
+2014-06-30,2017-07-31,0.0222872
+2014-06-30,2017-08-31,0.0228215
+2014-06-30,2017-09-30,0.0234084
+2014-06-30,2017-10-31,0.0239523
+2014-06-30,2017-11-30,0.0244286
+2014-06-30,2017-12-31,0.0248849
+2014-06-30,2018-01-31,0.0253391
+2014-06-30,2018-02-28,0.0257336
+2014-06-30,2018-03-31,0.0260618
+2014-06-30,2018-04-30,0.026431
+2014-06-30,2018-05-31,0.0267043
+2014-06-30,2018-06-30,0.0270045
+2014-06-30,2018-07-31,0.0272948
+2014-06-30,2018-08-31,0.0275582
+2014-06-30,2018-09-30,0.0278348
+2014-06-30,2018-10-31,0.0281431
+2014-06-30,2018-11-30,0.0284336
+2014-06-30,2018-12-31,0.0287501
+2014-06-30,2019-01-31,0.0290496
+2014-06-30,2019-02-28,0.0293724
+2014-06-30,2019-03-31,0.0297051
+2014-06-30,2019-04-30,0.0300745
+2014-06-30,2019-05-31,0.0303873
+2014-06-30,2019-06-30,0.0307178
+2014-06-30,2019-07-31,0.031065
+2014-06-30,2019-08-31,0.0313678
+2014-06-30,2019-09-30,0.031666
+2014-06-30,2019-10-31,0.0319191
+2014-06-30,2019-11-30,0.0321708
+2014-06-30,2019-12-31,0.0323948
+2014-06-30,2020-01-31,0.0325962
+2014-06-30,2020-02-29,0.0327713
+2014-06-30,2020-03-31,0.0329307
+2014-06-30,2020-04-30,0.0330726
+2014-06-30,2020-05-31,0.033198
+2014-06-30,2020-06-30,0.0333276
+2014-06-30,2020-07-31,0.0334473
+2014-06-30,2020-08-31,0.0335603
+2014-06-30,2020-09-30,0.033703
+2014-06-30,2020-10-31,0.0338487
+2014-06-30,2020-11-30,0.0340038
+2014-06-30,2020-12-31,0.0341618
+2014-06-30,2021-01-31,0.0343585
+2014-06-30,2021-02-28,0.0345556
+2014-06-30,2021-03-31,0.0347603
+2014-06-30,2021-04-30,0.0350085
+2014-06-30,2021-05-31,0.0352329
+2014-06-30,2021-06-30,0.0354916
+2014-06-30,2021-07-31,0.0357148
+2014-06-30,2021-08-31,0.0359219
+2014-06-30,2021-09-30,0.0360925
+2014-06-30,2021-10-31,0.0362532
+2014-06-30,2021-11-30,0.0363878
+2014-06-30,2021-12-31,0.0364802
+2014-06-30,2022-01-31,0.0365685
+2014-06-30,2022-02-28,0.0366126
+2014-06-30,2022-03-31,0.0366378
+2014-06-30,2022-04-30,0.0366537
+2014-06-30,2022-05-31,0.0366448
+2014-06-30,2022-06-30,0.0366327
+2014-06-30,2022-07-31,0.0366237
+2014-06-30,2022-08-31,0.0366099
+2014-06-30,2022-09-30,0.0366088
+2014-06-30,2022-10-31,0.036625
+2014-06-30,2022-11-30,0.0366453
+2014-06-30,2022-12-31,0.0366823
+2014-06-30,2023-01-31,0.0367416
+2014-06-30,2023-02-28,0.036806
+2014-06-30,2023-03-31,0.0368814
+2014-06-30,2023-04-30,0.0369753
+2014-06-30,2023-05-31,0.0370754
+2014-06-30,2023-06-30,0.0371823
+2014-06-30,2023-07-31,0.0373019
+2014-06-30,2023-08-31,0.0374003
+2014-06-30,2023-09-30,0.0375152
+2014-06-30,2023-10-31,0.0376297
+2014-06-30,2023-11-30,0.0377276
+2014-06-30,2023-12-31,0.0378271
+2014-06-30,2024-01-31,0.0379342
+2014-06-30,2024-02-29,0.0380221
+2014-06-30,2024-03-31,0.0381097
+2014-06-30,2024-04-30,0.0382142
+2014-06-30,2024-05-31,0.0382936
+2014-09-30,2014-09-30,0.00154
+2014-09-30,2014-10-31,0.0015472
+2014-09-30,2014-11-30,0.0015096
+2014-09-30,2014-12-31,0.0014951
+2014-09-30,2015-01-31,0.0015634
+2014-09-30,2015-02-28,0.0017313
+2014-09-30,2015-03-31,0.0020574
+2014-09-30,2015-04-30,0.002529
+2014-09-30,2015-05-31,0.0031686
+2014-09-30,2015-06-30,0.0039952
+2014-09-30,2015-07-31,0.0047972
+2014-09-30,2015-08-31,0.005623
+2014-09-30,2015-09-30,0.0065889
+2014-09-30,2015-10-31,0.0074662
+2014-09-30,2015-11-30,0.0083972
+2014-09-30,2015-12-31,0.0092453
+2014-09-30,2016-01-31,0.0101995
+2014-09-30,2016-02-29,0.011183
+2014-09-30,2016-03-31,0.012026
+2014-09-30,2016-04-30,0.0129534
+2014-09-30,2016-05-31,0.0138948
+2014-09-30,2016-06-30,0.0147071
+2014-09-30,2016-07-31,0.0155455
+2014-09-30,2016-08-31,0.0163875
+2014-09-30,2016-09-30,0.0171794
+2014-09-30,2016-10-31,0.0179849
+2014-09-30,2016-11-30,0.0187246
+2014-09-30,2016-12-31,0.0194106
+2014-09-30,2017-01-31,0.0201447
+2014-09-30,2017-02-28,0.0208291
+2014-09-30,2017-03-31,0.0214381
+2014-09-30,2017-04-30,0.022054
+2014-09-30,2017-05-31,0.0226472
+2014-09-30,2017-06-30,0.0231896
+2014-09-30,2017-07-31,0.0237258
+2014-09-30,2017-08-31,0.0241504
+2014-09-30,2017-09-30,0.0246134
+2014-09-30,2017-10-31,0.0250459
+2014-09-30,2017-11-30,0.0254164
+2014-09-30,2017-12-31,0.0257781
+2014-09-30,2018-01-31,0.026148
+2014-09-30,2018-02-28,0.0264618
+2014-09-30,2018-03-31,0.0267283
+2014-09-30,2018-04-30,0.0270332
+2014-09-30,2018-05-31,0.0272456
+2014-09-30,2018-06-30,0.0274734
+2014-09-30,2018-07-31,0.0276845
+2014-09-30,2018-08-31,0.0278455
+2014-09-30,2018-09-30,0.0280025
+2014-09-30,2018-10-31,0.0281709
+2014-09-30,2018-11-30,0.0283037
+2014-09-30,2018-12-31,0.0284475
+2014-09-30,2019-01-31,0.0285876
+2014-09-30,2019-02-28,0.0287183
+2014-09-30,2019-03-31,0.028856
+2014-09-30,2019-04-30,0.0290205
+2014-09-30,2019-05-31,0.0291488
+2014-09-30,2019-06-30,0.0292994
+2014-09-30,2019-07-31,0.0294813
+2014-09-30,2019-08-31,0.0296437
+2014-09-30,2019-09-30,0.0298258
+2014-09-30,2019-10-31,0.0299993
+2014-09-30,2019-11-30,0.0301733
+2014-09-30,2019-12-31,0.0303428
+2014-09-30,2020-01-31,0.0305126
+2014-09-30,2020-02-29,0.0306694
+2014-09-30,2020-03-31,0.0308306
+2014-09-30,2020-04-30,0.0309922
+2014-09-30,2020-05-31,0.0311485
+2014-09-30,2020-06-30,0.0313218
+2014-09-30,2020-07-31,0.0314841
+2014-09-30,2020-08-31,0.0316319
+2014-09-30,2020-09-30,0.0318039
+2014-09-30,2020-10-31,0.0319593
+2014-09-30,2020-11-30,0.0320958
+2014-09-30,2020-12-31,0.0322138
+2014-09-30,2021-01-31,0.0323412
+2014-09-30,2021-02-28,0.0324351
+2014-09-30,2021-03-31,0.0325176
+2014-09-30,2021-04-30,0.0326066
+2014-09-30,2021-05-31,0.0326605
+2014-09-30,2021-06-30,0.0327175
+2014-09-30,2021-07-31,0.032772
+2014-09-30,2021-08-31,0.0328101
+2014-09-30,2021-09-30,0.0328503
+2014-09-30,2021-10-31,0.0328995
+2014-09-30,2021-11-30,0.0329384
+2014-09-30,2021-12-31,0.0329786
+2014-09-30,2022-01-31,0.0330376
+2014-09-30,2022-02-28,0.0330846
+2014-09-30,2022-03-31,0.0331412
+2014-09-30,2022-04-30,0.0332193
+2014-09-30,2022-05-31,0.0333
+2014-09-30,2022-06-30,0.0333861
+2014-09-30,2022-07-31,0.0334916
+2014-09-30,2022-08-31,0.0335983
+2014-09-30,2022-09-30,0.0337113
+2014-09-30,2022-10-31,0.0338375
+2014-09-30,2022-11-30,0.0339451
+2014-09-30,2022-12-31,0.0340496
+2014-09-30,2023-01-31,0.0341656
+2014-09-30,2023-02-28,0.0342612
+2014-09-30,2023-03-31,0.0343478
+2014-09-30,2023-04-30,0.0344382
+2014-09-30,2023-05-31,0.034514
+2014-09-30,2023-06-30,0.0345853
+2014-09-30,2023-07-31,0.0346609
+2014-09-30,2023-08-31,0.0347117
+2014-09-30,2023-09-30,0.0347705
+2014-09-30,2023-10-31,0.0348315
+2014-09-30,2023-11-30,0.034876
+2014-09-30,2023-12-31,0.0349242
+2014-09-30,2024-01-31,0.0349818
+2014-09-30,2024-02-29,0.0350235
+2014-09-30,2024-03-31,0.03507
+2014-09-30,2024-04-30,0.0351338
+2014-09-30,2024-05-31,0.0351805
+2014-09-30,2024-06-30,0.0352387
+2014-09-30,2024-07-31,0.0353128
+2014-09-30,2024-08-31,0.035378
+2014-12-31,2014-12-31,0.0016925
+2014-12-31,2015-01-31,0.0017225
+2014-12-31,2015-02-28,0.0017462
+2014-12-31,2015-03-31,0.0018473
+2014-12-31,2015-04-30,0.00211
+2014-12-31,2015-05-31,0.0025125
+2014-12-31,2015-06-30,0.0031042
+2014-12-31,2015-07-31,0.0037755
+2014-12-31,2015-08-31,0.0043415
+2014-12-31,2015-09-30,0.0050927
+2014-12-31,2015-10-31,0.0058182
+2014-12-31,2015-11-30,0.0066042
+2014-12-31,2015-12-31,0.0075282
+2014-12-31,2016-01-31,0.0084032
+2014-12-31,2016-02-29,0.0093029
+2014-12-31,2016-03-31,0.0102131
+2014-12-31,2016-04-30,0.0110082
+2014-12-31,2016-05-31,0.0117636
+2014-12-31,2016-06-30,0.0124723
+2014-12-31,2016-07-31,0.0131123
+2014-12-31,2016-08-31,0.0137992
+2014-12-31,2016-09-30,0.0144377
+2014-12-31,2016-10-31,0.0150572
+2014-12-31,2016-11-30,0.0157041
+2014-12-31,2016-12-31,0.0163165
+2014-12-31,2017-01-31,0.0169403
+2014-12-31,2017-02-28,0.0175058
+2014-12-31,2017-03-31,0.0180943
+2014-12-31,2017-04-30,0.0186044
+2014-12-31,2017-05-31,0.0191412
+2014-12-31,2017-06-30,0.0196126
+2014-12-31,2017-07-31,0.0200482
+2014-12-31,2017-08-31,0.0204711
+2014-12-31,2017-09-30,0.020839
+2014-12-31,2017-10-31,0.021203
+2014-12-31,2017-11-30,0.0215168
+2014-12-31,2017-12-31,0.021787
+2014-12-31,2018-01-31,0.0220763
+2014-12-31,2018-02-28,0.0222991
+2014-12-31,2018-03-31,0.0224995
+2014-12-31,2018-04-30,0.0226977
+2014-12-31,2018-05-31,0.0228685
+2014-12-31,2018-06-30,0.0230051
+2014-12-31,2018-07-31,0.023135
+2014-12-31,2018-08-31,0.0232204
+2014-12-31,2018-09-30,0.0232812
+2014-12-31,2018-10-31,0.0233418
+2014-12-31,2018-11-30,0.0233586
+2014-12-31,2018-12-31,0.0233718
+2014-12-31,2019-01-31,0.0233986
+2014-12-31,2019-02-28,0.0234104
+2014-12-31,2019-03-31,0.0234419
+2014-12-31,2019-04-30,0.0235083
+2014-12-31,2019-05-31,0.0235801
+2014-12-31,2019-06-30,0.0236739
+2014-12-31,2019-07-31,0.023825
+2014-12-31,2019-08-31,0.0239711
+2014-12-31,2019-09-30,0.0241523
+2014-12-31,2019-10-31,0.0243886
+2014-12-31,2019-11-30,0.0246113
+2014-12-31,2019-12-31,0.0248609
+2014-12-31,2020-01-31,0.0251227
+2014-12-31,2020-02-29,0.0253383
+2014-12-31,2020-03-31,0.0255522
+2014-12-31,2020-04-30,0.0257536
+2014-12-31,2020-05-31,0.0259074
+2014-12-31,2020-06-30,0.0260601
+2014-12-31,2020-07-31,0.0262046
+2014-12-31,2020-08-31,0.0263019
+2014-12-31,2020-09-30,0.0264181
+2014-12-31,2020-10-31,0.0265177
+2014-12-31,2020-11-30,0.0265935
+2014-12-31,2020-12-31,0.0266688
+2014-12-31,2021-01-31,0.026738
+2014-12-31,2021-02-28,0.026789
+2014-12-31,2021-03-31,0.0268408
+2014-12-31,2021-04-30,0.0268949
+2014-12-31,2021-05-31,0.026926
+2014-12-31,2021-06-30,0.0269661
+2014-12-31,2021-07-31,0.0270094
+2014-12-31,2021-08-31,0.0270395
+2014-12-31,2021-09-30,0.0270745
+2014-12-31,2021-10-31,0.027118
+2014-12-31,2021-11-30,0.0271551
+2014-12-31,2021-12-31,0.027197
+2014-12-31,2022-01-31,0.0272437
+2014-12-31,2022-02-28,0.0272774
+2014-12-31,2022-03-31,0.0273139
+2014-12-31,2022-04-30,0.0273529
+2014-12-31,2022-05-31,0.0273831
+2014-12-31,2022-06-30,0.0274183
+2014-12-31,2022-07-31,0.0274614
+2014-12-31,2022-08-31,0.0275035
+2014-12-31,2022-09-30,0.0275506
+2014-12-31,2022-10-31,0.0276072
+2014-12-31,2022-11-30,0.0276603
+2014-12-31,2022-12-31,0.0277153
+2014-12-31,2023-01-31,0.0277784
+2014-12-31,2023-02-28,0.0278259
+2014-12-31,2023-03-31,0.0278756
+2014-12-31,2023-04-30,0.0279222
+2014-12-31,2023-05-31,0.0279594
+2014-12-31,2023-06-30,0.0279918
+2014-12-31,2023-07-31,0.0280257
+2014-12-31,2023-08-31,0.0280465
+2014-12-31,2023-09-30,0.0280643
+2014-12-31,2023-10-31,0.0280864
+2014-12-31,2023-11-30,0.0280945
+2014-12-31,2023-12-31,0.0281035
+2014-12-31,2024-01-31,0.0281212
+2014-12-31,2024-02-29,0.0281284
+2014-12-31,2024-03-31,0.0281407
+2014-12-31,2024-04-30,0.0281652
+2014-12-31,2024-05-31,0.0281838
+2014-12-31,2024-06-30,0.0282068
+2014-12-31,2024-07-31,0.0282446
+2014-12-31,2024-08-31,0.028273
+2014-12-31,2024-09-30,0.0283085
+2014-12-31,2024-10-31,0.0283564
+2014-12-31,2024-11-30,0.0283926
+2015-03-31,2015-03-31,0.0017625
+2015-03-31,2015-04-30,0.001802026
+2015-03-31,2015-05-31,0.001888623
+2015-03-31,2015-06-30,0.002071167
+2015-03-31,2015-07-31,0.00237892
+2015-03-31,2015-08-31,0.002840512
+2015-03-31,2015-09-30,0.003385239
+2015-03-31,2015-10-31,0.003946449
+2015-03-31,2015-11-30,0.004510796
+2015-03-31,2015-12-31,0.005003569
+2015-03-31,2016-01-31,0.005634928
+2015-03-31,2016-02-29,0.006200349
+2015-03-31,2016-03-31,0.00676155
+2015-03-31,2016-04-30,0.007446559
+2015-03-31,2016-05-31,0.008105732
+2015-03-31,2016-06-30,0.008693062
+2015-03-31,2016-07-31,0.009308454
+2015-03-31,2016-08-31,0.009865651
+2015-03-31,2016-09-30,0.010395025
+2015-03-31,2016-10-31,0.010948991
+2015-03-31,2016-11-30,0.011421892
+2015-03-31,2016-12-31,0.011887006
+2015-03-31,2017-01-31,0.012414004
+2015-03-31,2017-02-28,0.012898298
+2015-03-31,2017-03-31,0.013315846
+2015-03-31,2017-04-30,0.013813468
+2015-03-31,2017-05-31,0.014258459
+2015-03-31,2017-06-30,0.014678811
+2015-03-31,2017-07-31,0.015107299
+2015-03-31,2017-08-31,0.015483028
+2015-03-31,2017-09-30,0.015887556
+2015-03-31,2017-10-31,0.016272297
+2015-03-31,2017-11-30,0.016565126
+2015-03-31,2017-12-31,0.01687612
+2015-03-31,2018-01-31,0.017182564
+2015-03-31,2018-02-28,0.017443792
+2015-03-31,2018-03-31,0.01765324
+2015-03-31,2018-04-30,0.0179201
+2015-03-31,2018-05-31,0.018098831
+2015-03-31,2018-06-30,0.018327248
+2015-03-31,2018-07-31,0.018563294
+2015-03-31,2018-08-31,0.018744916
+2015-03-31,2018-09-30,0.01896099
+2015-03-31,2018-10-31,0.019181128
+2015-03-31,2018-11-30,0.019366975
+2015-03-31,2018-12-31,0.019563169
+2015-03-31,2019-01-31,0.019762432
+2015-03-31,2019-02-28,0.019957837
+2015-03-31,2019-03-31,0.020134455
+2015-03-31,2019-04-30,0.020338096
+2015-03-31,2019-05-31,0.020487027
+2015-03-31,2019-06-30,0.020663267
+2015-03-31,2019-07-31,0.020845075
+2015-03-31,2019-08-31,0.020998321
+2015-03-31,2019-09-30,0.021181124
+2015-03-31,2019-10-31,0.021337984
+2015-03-31,2019-11-30,0.021512348
+2015-03-31,2019-12-31,0.021689763
+2015-03-31,2020-01-31,0.021856487
+2015-03-31,2020-02-29,0.022029616
+2015-03-31,2020-03-31,0.022194729
+2015-03-31,2020-04-30,0.022345789
+2015-03-31,2020-05-31,0.022492413
+2015-03-31,2020-06-30,0.022638453
+2015-03-31,2020-07-31,0.022763649
+2015-03-31,2020-08-31,0.022871633
+2015-03-31,2020-09-30,0.02297392
+2015-03-31,2020-10-31,0.023071239
+2015-03-31,2020-11-30,0.023146289
+2015-03-31,2020-12-31,0.023203024
+2015-03-31,2021-01-31,0.02327446
+2015-03-31,2021-02-28,0.023319363
+2015-03-31,2021-03-31,0.02335356
+2015-03-31,2021-04-30,0.02340324
+2015-03-31,2021-05-31,0.023433347
+2015-03-31,2021-06-30,0.023469492
+2015-03-31,2021-07-31,0.023520367
+2015-03-31,2021-08-31,0.023563173
+2015-03-31,2021-09-30,0.023616207
+2015-03-31,2021-10-31,0.023697464
+2015-03-31,2021-11-30,0.02377729
+2015-03-31,2021-12-31,0.023862677
+2015-03-31,2022-01-31,0.023985883
+2015-03-31,2022-02-28,0.024108982
+2015-03-31,2022-03-31,0.024215361
+2015-03-31,2022-04-30,0.024348742
+2015-03-31,2022-05-31,0.02445805
+2015-03-31,2022-06-30,0.024541906
+2015-03-31,2022-07-31,0.02462959
+2015-03-31,2022-08-31,0.0246911
+2015-03-31,2022-09-30,0.02474029
+2015-03-31,2022-10-31,0.024788916
+2015-03-31,2022-11-30,0.024816804
+2015-03-31,2022-12-31,0.024839965
+2015-03-31,2023-01-31,0.024869006
+2015-03-31,2023-02-28,0.024875862
+2015-03-31,2023-03-31,0.024884219
+2015-03-31,2023-04-30,0.024900113
+2015-03-31,2023-05-31,0.024901673
+2015-03-31,2023-06-30,0.024908856
+2015-03-31,2023-07-31,0.024925755
+2015-03-31,2023-08-31,0.024931868
+2015-03-31,2023-09-30,0.024943935
+2015-03-31,2023-10-31,0.024966646
+2015-03-31,2023-11-30,0.02497524
+2015-03-31,2023-12-31,0.024990696
+2015-03-31,2024-01-31,0.025016379
+2015-03-31,2024-02-29,0.025028055
+2015-03-31,2024-03-31,0.025044597
+2015-03-31,2024-04-30,0.02507167
+2015-03-31,2024-05-31,0.025083196
+2015-03-31,2024-06-30,0.025102332
+2015-03-31,2024-07-31,0.025130767
+2015-03-31,2024-08-31,0.025146834
+2015-03-31,2024-09-30,0.025172321
+2015-03-31,2024-10-31,0.02520192
+2015-03-31,2024-11-30,0.025226477
+2015-03-31,2024-12-31,0.025255772
+2015-03-31,2025-01-31,0.025289918
+2015-03-31,2025-02-28,0.025316573
+2015-06-30,2015-06-30,0.001865
+2015-06-30,2015-07-31,0.001904556
+2015-06-30,2015-08-31,0.002087191
+2015-06-30,2015-09-30,0.002468372
+2015-06-30,2015-10-31,0.002946768
+2015-06-30,2015-11-30,0.003480948
+2015-06-30,2015-12-31,0.003977775
+2015-06-30,2016-01-31,0.00462795
+2015-06-30,2016-02-29,0.005211045
+2015-06-30,2016-03-31,0.005782701
+2015-06-30,2016-04-30,0.006474224
+2015-06-30,2016-05-31,0.007140647
+2015-06-30,2016-06-30,0.007745904
+2015-06-30,2016-07-31,0.008409659
+2015-06-30,2016-08-31,0.009053299
+2015-06-30,2016-09-30,0.009706025
+2015-06-30,2016-10-31,0.010417264
+2015-06-30,2016-11-30,0.011041439
+2015-06-30,2016-12-31,0.011654644
+2015-06-30,2017-01-31,0.01234001
+2015-06-30,2017-02-28,0.012960049
+2015-06-30,2017-03-31,0.01347998
+2015-06-30,2017-04-30,0.014084951
+2015-06-30,2017-05-31,0.014616189
+2015-06-30,2017-06-30,0.01511241
+2015-06-30,2017-07-31,0.015620614
+2015-06-30,2017-08-31,0.016076491
+2015-06-30,2017-09-30,0.016583468
+2015-06-30,2017-10-31,0.017086458
+2015-06-30,2017-11-30,0.017493806
+2015-06-30,2017-12-31,0.017949603
+2015-06-30,2018-01-31,0.018424885
+2015-06-30,2018-02-28,0.018870675
+2015-06-30,2018-03-31,0.019245421
+2015-06-30,2018-04-30,0.019727611
+2015-06-30,2018-05-31,0.020069956
+2015-06-30,2018-06-30,0.020497677
+2015-06-30,2018-07-31,0.020918994
+2015-06-30,2018-08-31,0.021252007
+2015-06-30,2018-09-30,0.021630527
+2015-06-30,2018-10-31,0.02199365
+2015-06-30,2018-11-30,0.022307645
+2015-06-30,2018-12-31,0.022624419
+2015-06-30,2019-01-31,0.022928052
+2015-06-30,2019-02-28,0.023230629
+2015-06-30,2019-03-31,0.023494119
+2015-06-30,2019-04-30,0.023783713
+2015-06-30,2019-05-31,0.023998606
+2015-06-30,2019-06-30,0.024247083
+2015-06-30,2019-07-31,0.024499094
+2015-06-30,2019-08-31,0.024722017
+2015-06-30,2019-09-30,0.024990255
+2015-06-30,2019-10-31,0.025220295
+2015-06-30,2019-11-30,0.025489916
+2015-06-30,2019-12-31,0.025768625
+2015-06-30,2020-01-31,0.026031648
+2015-06-30,2020-02-29,0.026325462
+2015-06-30,2020-03-31,0.026614595
+2015-06-30,2020-04-30,0.026885424
+2015-06-30,2020-05-31,0.027181123
+2015-06-30,2020-06-30,0.027491485
+2015-06-30,2020-07-31,0.027757479
+2015-06-30,2020-08-31,0.028019219
+2015-06-30,2020-09-30,0.028270376
+2015-06-30,2020-10-31,0.028500073
+2015-06-30,2020-11-30,0.028715787
+2015-06-30,2020-12-31,0.028874137
+2015-06-30,2021-01-31,0.029060748
+2015-06-30,2021-02-28,0.02922139
+2015-06-30,2021-03-31,0.029328324
+2015-06-30,2021-04-30,0.029459389
+2015-06-30,2021-05-31,0.029560173
+2015-06-30,2021-06-30,0.029652296
+2015-06-30,2021-07-31,0.029741522
+2015-06-30,2021-08-31,0.029812486
+2015-06-30,2021-09-30,0.029875398
+2015-06-30,2021-10-31,0.029952773
+2015-06-30,2021-11-30,0.030011354
+2015-06-30,2021-12-31,0.030064604
+2015-06-30,2022-01-31,0.030136515
+2015-06-30,2022-02-28,0.030191326
+2015-06-30,2022-03-31,0.030241683
+2015-06-30,2022-04-30,0.030315564
+2015-06-30,2022-05-31,0.030377148
+2015-06-30,2022-06-30,0.030438511
+2015-06-30,2022-07-31,0.030517678
+2015-06-30,2022-08-31,0.030583269
+2015-06-30,2022-09-30,0.030649842
+2015-06-30,2022-10-31,0.030729471
+2015-06-30,2022-11-30,0.030799852
+2015-06-30,2022-12-31,0.030873372
+2015-06-30,2023-01-31,0.030972658
+2015-06-30,2023-02-28,0.03105477
+2015-06-30,2023-03-31,0.031135525
+2015-06-30,2023-04-30,0.031243638
+2015-06-30,2023-05-31,0.031335579
+2015-06-30,2023-06-30,0.031430196
+2015-06-30,2023-07-31,0.031534783
+2015-06-30,2023-08-31,0.031617008
+2015-06-30,2023-09-30,0.031705721
+2015-06-30,2023-10-31,0.031793264
+2015-06-30,2023-11-30,0.031845371
+2015-06-30,2023-12-31,0.031898685
+2015-06-30,2024-01-31,0.031951533
+2015-06-30,2024-02-29,0.03197456
+2015-06-30,2024-03-31,0.031992576
+2015-06-30,2024-04-30,0.032011717
+2015-06-30,2024-05-31,0.03200661
+2015-06-30,2024-06-30,0.032001084
+2015-06-30,2024-07-31,0.032002724
+2015-06-30,2024-08-31,0.031989994
+2015-06-30,2024-09-30,0.031983425
+2015-06-30,2024-10-31,0.031989922
+2015-06-30,2024-11-30,0.031985823
+2015-06-30,2024-12-31,0.031990468
+2015-06-30,2025-01-31,0.032007055
+2015-06-30,2025-02-28,0.032014604
+2015-06-30,2025-03-31,0.032028917
+2015-06-30,2025-04-30,0.032057082
+2015-06-30,2025-05-31,0.032073832
+2015-09-30,2015-09-30,0.00193
+2015-09-30,2015-10-31,0.002216827
+2015-09-30,2015-11-30,0.00256328
+2015-09-30,2015-12-31,0.002921081
+2015-09-30,2016-01-31,0.003379849
+2015-09-30,2016-02-29,0.003750478
+2015-09-30,2016-03-31,0.004083956
+2015-09-30,2016-04-30,0.004479651
+2015-09-30,2016-05-31,0.004863723
+2015-09-30,2016-06-30,0.005228314
+2015-09-30,2016-07-31,0.005641447
+2015-09-30,2016-08-31,0.006049558
+2015-09-30,2016-09-30,0.006476199
+2015-09-30,2016-10-31,0.006960756
+2015-09-30,2016-11-30,0.007404679
+2015-09-30,2016-12-31,0.007860003
+2015-09-30,2017-01-31,0.008387458
+2015-09-30,2017-02-28,0.008879017
+2015-09-30,2017-03-31,0.009296124
+2015-09-30,2017-04-30,0.009776487
+2015-09-30,2017-05-31,0.010186208
+2015-09-30,2017-06-30,0.010548316
+2015-09-30,2017-07-31,0.010893734
+2015-09-30,2017-08-31,0.011178168
+2015-09-30,2017-09-30,0.011475427
+2015-09-30,2017-10-31,0.011766184
+2015-09-30,2017-11-30,0.012003073
+2015-09-30,2017-12-31,0.012280852
+2015-09-30,2018-01-31,0.012588213
+2015-09-30,2018-02-28,0.0128889
+2015-09-30,2018-03-31,0.013156585
+2015-09-30,2018-04-30,0.013515983
+2015-09-30,2018-05-31,0.013779712
+2015-09-30,2018-06-30,0.014120714
+2015-09-30,2018-07-31,0.014470985
+2015-09-30,2018-08-31,0.014757285
+2015-09-30,2018-09-30,0.015095603
+2015-09-30,2018-10-31,0.015434446
+2015-09-30,2018-11-30,0.015738211
+2015-09-30,2018-12-31,0.016056405
+2015-09-30,2019-01-31,0.016371843
+2015-09-30,2019-02-28,0.016697682
+2015-09-30,2019-03-31,0.016990654
+2015-09-30,2019-04-30,0.017319824
+2015-09-30,2019-05-31,0.017573054
+2015-09-30,2019-06-30,0.017865234
+2015-09-30,2019-07-31,0.018153017
+2015-09-30,2019-08-31,0.018402396
+2015-09-30,2019-09-30,0.018687506
+2015-09-30,2019-10-31,0.018919103
+2015-09-30,2019-11-30,0.019182241
+2015-09-30,2019-12-31,0.019442219
+2015-09-30,2020-01-31,0.01967857
+2015-09-30,2020-02-29,0.019933769
+2015-09-30,2020-03-31,0.020178742
+2015-09-30,2020-04-30,0.020406067
+2015-09-30,2020-05-31,0.020651302
+2015-09-30,2020-06-30,0.02091398
+2015-09-30,2020-07-31,0.021150914
+2015-09-30,2020-08-31,0.021396769
+2015-09-30,2020-09-30,0.021648359
+2015-09-30,2020-10-31,0.02188896
+2015-09-30,2020-11-30,0.02212663
+2015-09-30,2020-12-31,0.02230588
+2015-09-30,2021-01-31,0.022520405
+2015-09-30,2021-02-28,0.022718056
+2015-09-30,2021-03-31,0.022853069
+2015-09-30,2021-04-30,0.023020724
+2015-09-30,2021-05-31,0.02316417
+2015-09-30,2021-06-30,0.023300922
+2015-09-30,2021-07-31,0.023432461
+2015-09-30,2021-08-31,0.023553583
+2015-09-30,2021-09-30,0.023661001
+2015-09-30,2021-10-31,0.023790576
+2015-09-30,2021-11-30,0.023912287
+2015-09-30,2021-12-31,0.024022564
+2015-09-30,2022-01-31,0.024166118
+2015-09-30,2022-02-28,0.024306964
+2015-09-30,2022-03-31,0.024429955
+2015-09-30,2022-04-30,0.024596494
+2015-09-30,2022-05-31,0.024762721
+2015-09-30,2022-06-30,0.024919223
+2015-09-30,2022-07-31,0.025110757
+2015-09-30,2022-08-31,0.025298845
+2015-09-30,2022-09-30,0.025477793
+2015-09-30,2022-10-31,0.025661037
+2015-09-30,2022-11-30,0.025819581
+2015-09-30,2022-12-31,0.025948542
+2015-09-30,2023-01-31,0.02608087
+2015-09-30,2023-02-28,0.026164412
+2015-09-30,2023-03-31,0.026220365
+2015-09-30,2023-04-30,0.026273621
+2015-09-30,2023-05-31,0.026291365
+2015-09-30,2023-06-30,0.026297661
+2015-09-30,2023-07-31,0.026300352
+2015-09-30,2023-08-31,0.026284095
+2015-09-30,2023-09-30,0.026266782
+2015-09-30,2023-10-31,0.026263217
+2015-09-30,2023-11-30,0.026258872
+2015-09-30,2023-12-31,0.026272212
+2015-09-30,2024-01-31,0.026312694
+2015-09-30,2024-02-29,0.026358534
+2015-09-30,2024-03-31,0.02642911
+2015-09-30,2024-04-30,0.02653594
+2015-09-30,2024-05-31,0.026635371
+2015-09-30,2024-06-30,0.026772249
+2015-09-30,2024-07-31,0.026928405
+2015-09-30,2024-08-31,0.027078492
+2015-09-30,2024-09-30,0.027260632
+2015-09-30,2024-10-31,0.027410673
+2015-09-30,2024-11-30,0.027578988
+2015-09-30,2024-12-31,0.027735995
+2015-09-30,2025-01-31,0.027866859
+2015-09-30,2025-02-28,0.027991239
+2015-09-30,2025-03-31,0.028084305
+2015-09-30,2025-04-30,0.028174878
+2015-09-30,2025-05-31,0.028229015
+2015-09-30,2025-06-30,0.028275159
+2015-09-30,2025-07-31,0.028303321
+2015-09-30,2025-08-31,0.028311196
+2015-12-31,2015-12-31,0.004295
+2015-12-31,2016-01-31,0.0045103
+2015-12-31,2016-02-29,0.004854014
+2015-12-31,2016-03-31,0.005408519
+2015-12-31,2016-04-30,0.006077853
+2015-12-31,2016-05-31,0.006644074
+2015-12-31,2016-06-30,0.007151754
+2015-12-31,2016-07-31,0.007614708
+2015-12-31,2016-08-31,0.008065491
+2015-12-31,2016-09-30,0.008563117
+2015-12-31,2016-10-31,0.009106708
+2015-12-31,2016-11-30,0.009681372
+2015-12-31,2016-12-31,0.010283
+2015-12-31,2017-01-31,0.010899882
+2015-12-31,2017-02-28,0.011450943
+2015-12-31,2017-03-31,0.011913495
+2015-12-31,2017-04-30,0.012358425
+2015-12-31,2017-05-31,0.012702844
+2015-12-31,2017-06-30,0.012998772
+2015-12-31,2017-07-31,0.013276902
+2015-12-31,2017-08-31,0.01357766
+2015-12-31,2017-09-30,0.013915278
+2015-12-31,2017-10-31,0.014297419
+2015-12-31,2017-11-30,0.014677602
+2015-12-31,2017-12-31,0.015086938
+2015-12-31,2018-01-31,0.015538347
+2015-12-31,2018-02-28,0.015962278
+2015-12-31,2018-03-31,0.016319665
+2015-12-31,2018-04-30,0.016702895
+2015-12-31,2018-05-31,0.017016144
+2015-12-31,2018-06-30,0.017328845
+2015-12-31,2018-07-31,0.017610424
+2015-12-31,2018-08-31,0.017825753
+2015-12-31,2018-09-30,0.018032146
+2015-12-31,2018-10-31,0.018218621
+2015-12-31,2018-11-30,0.018358792
+2015-12-31,2018-12-31,0.018478012
+2015-12-31,2019-01-31,0.018612619
+2015-12-31,2019-02-28,0.018729651
+2015-12-31,2019-03-31,0.018832109
+2015-12-31,2019-04-30,0.018961944
+2015-12-31,2019-05-31,0.019072194
+2015-12-31,2019-06-30,0.019197753
+2015-12-31,2019-07-31,0.019339946
+2015-12-31,2019-08-31,0.019461109
+2015-12-31,2019-09-30,0.019600276
+2015-12-31,2019-10-31,0.019743793
+2015-12-31,2019-11-30,0.019883979
+2015-12-31,2019-12-31,0.020027103
+2015-12-31,2020-01-31,0.020178734
+2015-12-31,2020-02-29,0.020329414
+2015-12-31,2020-03-31,0.020478844
+2015-12-31,2020-04-30,0.020646446
+2015-12-31,2020-05-31,0.020802362
+2015-12-31,2020-06-30,0.020979279
+2015-12-31,2020-07-31,0.02116842
+2015-12-31,2020-08-31,0.021351337
+2015-12-31,2020-09-30,0.02156376
+2015-12-31,2020-10-31,0.021788645
+2015-12-31,2020-11-30,0.022013419
+2015-12-31,2020-12-31,0.022222538
+2015-12-31,2021-01-31,0.022456918
+2015-12-31,2021-02-28,0.022681087
+2015-12-31,2021-03-31,0.022852298
+2015-12-31,2021-04-30,0.023045062
+2015-12-31,2021-05-31,0.023196566
+2015-12-31,2021-06-30,0.023355148
+2015-12-31,2021-07-31,0.023505275
+2015-12-31,2021-08-31,0.023634487
+2015-12-31,2021-09-30,0.02374959
+2015-12-31,2021-10-31,0.023870037
+2015-12-31,2021-11-30,0.023972725
+2015-12-31,2021-12-31,0.024066268
+2015-12-31,2022-01-31,0.024169014
+2015-12-31,2022-02-28,0.024261468
+2015-12-31,2022-03-31,0.024344847
+2015-12-31,2022-04-30,0.024444673
+2015-12-31,2022-05-31,0.024524897
+2015-12-31,2022-06-30,0.02460617
+2015-12-31,2022-07-31,0.024701184
+2015-12-31,2022-08-31,0.024786059
+2015-12-31,2022-09-30,0.024872696
+2015-12-31,2022-10-31,0.024966999
+2015-12-31,2022-11-30,0.025057462
+2015-12-31,2022-12-31,0.025143121
+2015-12-31,2023-01-31,0.025243299
+2015-12-31,2023-02-28,0.025317956
+2015-12-31,2023-03-31,0.025386641
+2015-12-31,2023-04-30,0.025468287
+2015-12-31,2023-05-31,0.02552662
+2015-12-31,2023-06-30,0.025583756
+2015-12-31,2023-07-31,0.025645894
+2015-12-31,2023-08-31,0.025695621
+2015-12-31,2023-09-30,0.025743713
+2015-12-31,2023-10-31,0.025800839
+2015-12-31,2023-11-30,0.025837407
+2015-12-31,2023-12-31,0.025877259
+2015-12-31,2024-01-31,0.025933065
+2015-12-31,2024-02-29,0.025974477
+2015-12-31,2024-03-31,0.026021214
+2015-12-31,2024-04-30,0.026088539
+2015-12-31,2024-05-31,0.026144697
+2015-12-31,2024-06-30,0.026214002
+2015-12-31,2024-07-31,0.026301068
+2015-12-31,2024-08-31,0.026376844
+2015-12-31,2024-09-30,0.026469071
+2015-12-31,2024-10-31,0.026568918
+2015-12-31,2024-11-30,0.026667047
+2015-12-31,2024-12-31,0.026767257
+2015-12-31,2025-01-31,0.026871261
+2015-12-31,2025-02-28,0.026968297
+2015-12-31,2025-03-31,0.027044758
+2015-12-31,2025-04-30,0.027138784
+2015-12-31,2025-05-31,0.027208312
+2015-12-31,2025-06-30,0.027273218
+2015-12-31,2025-07-31,0.027332699
+2015-12-31,2025-08-31,0.027370822
+2015-12-31,2025-09-30,0.027399885
+2015-12-31,2025-10-31,0.027426915
+2015-12-31,2025-11-30,0.027428922
+2016-03-31,2016-03-31,0.0043725
+2016-03-31,2016-04-30,0.004484658
+2016-03-31,2016-05-31,0.004664554
+2016-03-31,2016-06-30,0.005013666
+2016-03-31,2016-07-31,0.005377718
+2016-03-31,2016-08-31,0.005602173
+2016-03-31,2016-09-30,0.005804796
+2016-03-31,2016-10-31,0.006028051
+2016-03-31,2016-11-30,0.006276491
+2016-03-31,2016-12-31,0.006581279
+2016-03-31,2017-01-31,0.00686143
+2016-03-31,2017-02-28,0.007067129
+2016-03-31,2017-03-31,0.007196173
+2016-03-31,2017-04-30,0.0072993
+2016-03-31,2017-05-31,0.007364476
+2016-03-31,2017-06-30,0.007445178
+2016-03-31,2017-07-31,0.00755789
+2016-03-31,2017-08-31,0.007679214
+2016-03-31,2017-09-30,0.007835942
+2016-03-31,2017-10-31,0.008022782
+2016-03-31,2017-11-30,0.008209124
+2016-03-31,2017-12-31,0.008410119
+2016-03-31,2018-01-31,0.008638579
+2016-03-31,2018-02-28,0.008867166
+2016-03-31,2018-03-31,0.009083963
+2016-03-31,2018-04-30,0.009349598
+2016-03-31,2018-05-31,0.009551154
+2016-03-31,2018-06-30,0.009780996
+2016-03-31,2018-07-31,0.010009789
+2016-03-31,2018-08-31,0.010214389
+2016-03-31,2018-09-30,0.010431816
+2016-03-31,2018-10-31,0.010643326
+2016-03-31,2018-11-30,0.010841657
+2016-03-31,2018-12-31,0.01103444
+2016-03-31,2019-01-31,0.011239404
+2016-03-31,2019-02-28,0.011442807
+2016-03-31,2019-03-31,0.011618111
+2016-03-31,2019-04-30,0.011815372
+2016-03-31,2019-05-31,0.011999978
+2016-03-31,2019-06-30,0.012197612
+2016-03-31,2019-07-31,0.0123945
+2016-03-31,2019-08-31,0.012581893
+2016-03-31,2019-09-30,0.012800332
+2016-03-31,2019-10-31,0.012997215
+2016-03-31,2019-11-30,0.013213768
+2016-03-31,2019-12-31,0.013435947
+2016-03-31,2020-01-31,0.013672376
+2016-03-31,2020-02-29,0.013927304
+2016-03-31,2020-03-31,0.014163609
+2016-03-31,2020-04-30,0.014407795
+2016-03-31,2020-05-31,0.014642436
+2016-03-31,2020-06-30,0.014870265
+2016-03-31,2020-07-31,0.015086707
+2016-03-31,2020-08-31,0.015291236
+2016-03-31,2020-09-30,0.015485884
+2016-03-31,2020-10-31,0.015679233
+2016-03-31,2020-11-30,0.015876032
+2016-03-31,2020-12-31,0.016037516
+2016-03-31,2021-01-31,0.016220062
+2016-03-31,2021-02-28,0.016410944
+2016-03-31,2021-03-31,0.016560706
+2016-03-31,2021-04-30,0.016743892
+2016-03-31,2021-05-31,0.01691028
+2016-03-31,2021-06-30,0.017080968
+2016-03-31,2021-07-31,0.017258023
+2016-03-31,2021-08-31,0.017433553
+2016-03-31,2021-09-30,0.017609104
+2016-03-31,2021-10-31,0.017791726
+2016-03-31,2021-11-30,0.017971607
+2016-03-31,2021-12-31,0.018149565
+2016-03-31,2022-01-31,0.01834118
+2016-03-31,2022-02-28,0.018534624
+2016-03-31,2022-03-31,0.018698563
+2016-03-31,2022-04-30,0.018884231
+2016-03-31,2022-05-31,0.01904855
+2016-03-31,2022-06-30,0.019209946
+2016-03-31,2022-07-31,0.019368831
+2016-03-31,2022-08-31,0.019514026
+2016-03-31,2022-09-30,0.019654077
+2016-03-31,2022-10-31,0.01978938
+2016-03-31,2022-11-30,0.01991247
+2016-03-31,2022-12-31,0.020031272
+2016-03-31,2023-01-31,0.020155546
+2016-03-31,2023-02-28,0.020263505
+2016-03-31,2023-03-31,0.020364538
+2016-03-31,2023-04-30,0.020470789
+2016-03-31,2023-05-31,0.020555864
+2016-03-31,2023-06-30,0.020637566
+2016-03-31,2023-07-31,0.0207151
+2016-03-31,2023-08-31,0.020781805
+2016-03-31,2023-09-30,0.02084715
+2016-03-31,2023-10-31,0.020911693
+2016-03-31,2023-11-30,0.020966826
+2016-03-31,2023-12-31,0.021021164
+2016-03-31,2024-01-31,0.021080662
+2016-03-31,2024-02-29,0.021134705
+2016-03-31,2024-03-31,0.021187606
+2016-03-31,2024-04-30,0.021250369
+2016-03-31,2024-05-31,0.021311902
+2016-03-31,2024-06-30,0.021384413
+2016-03-31,2024-07-31,0.02146429
+2016-03-31,2024-08-31,0.021545356
+2016-03-31,2024-09-30,0.021646361
+2016-03-31,2024-10-31,0.021742095
+2016-03-31,2024-11-30,0.021850554
+2016-03-31,2024-12-31,0.02196361
+2016-03-31,2025-01-31,0.022083837
+2016-03-31,2025-02-28,0.02221567
+2016-03-31,2025-03-31,0.022328062
+2016-03-31,2025-04-30,0.022450177
+2016-03-31,2025-05-31,0.022565042
+2016-03-31,2025-06-30,0.022684653
+2016-03-31,2025-07-31,0.02277899
+2016-03-31,2025-08-31,0.022866629
+2016-03-31,2025-09-30,0.022945021
+2016-03-31,2025-10-31,0.023013187
+2016-03-31,2025-11-30,0.023064533
+2016-03-31,2025-12-31,0.023100447
+2016-03-31,2026-01-31,0.023127797
+2016-03-31,2026-02-28,0.023135999
+2016-06-30,2016-06-30,0.0046505
+2016-06-30,2016-07-31,0.004617502
+2016-06-30,2016-08-31,0.004578101
+2016-06-30,2016-09-30,0.00459028
+2016-06-30,2016-10-31,0.00467789
+2016-06-30,2016-11-30,0.00478191
+2016-06-30,2016-12-31,0.004918698
+2016-06-30,2017-01-31,0.00504859
+2016-06-30,2017-02-28,0.005126431
+2016-06-30,2017-03-31,0.005179399
+2016-06-30,2017-04-30,0.005259284
+2016-06-30,2017-05-31,0.005347054
+2016-06-30,2017-06-30,0.00547997
+2016-06-30,2017-07-31,0.005643856
+2016-06-30,2017-08-31,0.00579498
+2016-06-30,2017-09-30,0.005947243
+2016-06-30,2017-10-31,0.006095596
+2016-06-30,2017-11-30,0.0062101
+2016-06-30,2017-12-31,0.006317846
+2016-06-30,2018-01-31,0.006440962
+2016-06-30,2018-02-28,0.006555309
+2016-06-30,2018-03-31,0.006676046
+2016-06-30,2018-04-30,0.006848817
+2016-06-30,2018-05-31,0.006990073
+2016-06-30,2018-06-30,0.007170072
+2016-06-30,2018-07-31,0.007365118
+2016-06-30,2018-08-31,0.007539921
+2016-06-30,2018-09-30,0.00772818
+2016-06-30,2018-10-31,0.007913944
+2016-06-30,2018-11-30,0.00808227
+2016-06-30,2018-12-31,0.008244649
+2016-06-30,2019-01-31,0.008418439
+2016-06-30,2019-02-28,0.008584739
+2016-06-30,2019-03-31,0.008729569
+2016-06-30,2019-04-30,0.008897662
+2016-06-30,2019-05-31,0.009053056
+2016-06-30,2019-06-30,0.009221588
+2016-06-30,2019-07-31,0.009391551
+2016-06-30,2019-08-31,0.009547009
+2016-06-30,2019-09-30,0.009725028
+2016-06-30,2019-10-31,0.009884835
+2016-06-30,2019-11-30,0.010053427
+2016-06-30,2019-12-31,0.010226317
+2016-06-30,2020-01-31,0.010413725
+2016-06-30,2020-02-29,0.010613725
+2016-06-30,2020-03-31,0.010807556
+2016-06-30,2020-04-30,0.011022597
+2016-06-30,2020-05-31,0.011240879
+2016-06-30,2020-06-30,0.011467966
+2016-06-30,2020-07-31,0.011693077
+2016-06-30,2020-08-31,0.011906291
+2016-06-30,2020-09-30,0.012107268
+2016-06-30,2020-10-31,0.012303659
+2016-06-30,2020-11-30,0.012496583
+2016-06-30,2020-12-31,0.012650277
+2016-06-30,2021-01-31,0.012821225
+2016-06-30,2021-02-28,0.0129945
+2016-06-30,2021-03-31,0.013129986
+2016-06-30,2021-04-30,0.013297931
+2016-06-30,2021-05-31,0.013450192
+2016-06-30,2021-06-30,0.013606793
+2016-06-30,2021-07-31,0.013766701
+2016-06-30,2021-08-31,0.013918085
+2016-06-30,2021-09-30,0.014062248
+2016-06-30,2021-10-31,0.014206534
+2016-06-30,2021-11-30,0.014341984
+2016-06-30,2021-12-31,0.014472404
+2016-06-30,2022-01-31,0.014611766
+2016-06-30,2022-02-28,0.014749974
+2016-06-30,2022-03-31,0.014868876
+2016-06-30,2022-04-30,0.015007853
+2016-06-30,2022-05-31,0.015134514
+2016-06-30,2022-06-30,0.015264979
+2016-06-30,2022-07-31,0.015400328
+2016-06-30,2022-08-31,0.015530342
+2016-06-30,2022-09-30,0.015662908
+2016-06-30,2022-10-31,0.015797569
+2016-06-30,2022-11-30,0.015927282
+2016-06-30,2022-12-31,0.016058764
+2016-06-30,2023-01-31,0.016201686
+2016-06-30,2023-02-28,0.016334402
+2016-06-30,2023-03-31,0.016466402
+2016-06-30,2023-04-30,0.016614661
+2016-06-30,2023-05-31,0.016747896
+2016-06-30,2023-06-30,0.016885345
+2016-06-30,2023-07-31,0.01701825
+2016-06-30,2023-08-31,0.017138869
+2016-06-30,2023-09-30,0.017253801
+2016-06-30,2023-10-31,0.017358982
+2016-06-30,2023-11-30,0.017448532
+2016-06-30,2023-12-31,0.017528989
+2016-06-30,2024-01-31,0.017606437
+2016-06-30,2024-02-29,0.017671181
+2016-06-30,2024-03-31,0.017725323
+2016-06-30,2024-04-30,0.017780367
+2016-06-30,2024-05-31,0.017825781
+2016-06-30,2024-06-30,0.017872202
+2016-06-30,2024-07-31,0.017919823
+2016-06-30,2024-08-31,0.017963527
+2016-06-30,2024-09-30,0.018017231
+2016-06-30,2024-10-31,0.018069705
+2016-06-30,2024-11-30,0.018127453
+2016-06-30,2024-12-31,0.018189965
+2016-06-30,2025-01-31,0.018260003
+2016-06-30,2025-02-28,0.018337442
+2016-06-30,2025-03-31,0.018407663
+2016-06-30,2025-04-30,0.018489685
+2016-06-30,2025-05-31,0.018571746
+2016-06-30,2025-06-30,0.01866518
+2016-06-30,2025-07-31,0.018746398
+2016-06-30,2025-08-31,0.018829019
+2016-06-30,2025-09-30,0.018911709
+2016-06-30,2025-10-31,0.018992771
+2016-06-30,2025-11-30,0.019068322
+2016-06-30,2025-12-31,0.019135202
+2016-06-30,2026-01-31,0.01919972
+2016-06-30,2026-02-28,0.019258967
+2016-06-30,2026-03-31,0.019295793
+2016-06-30,2026-04-30,0.01933531
+2016-06-30,2026-05-31,0.019361512
+2016-09-30,2016-09-30,0.0053111
+2016-09-30,2016-10-31,0.00560308
+2016-09-30,2016-11-30,0.005928296
+2016-09-30,2016-12-31,0.006313039
+2016-09-30,2017-01-31,0.006647122
+2016-09-30,2017-02-28,0.006853443
+2016-09-30,2017-03-31,0.006972308
+2016-09-30,2017-04-30,0.007123895
+2016-09-30,2017-05-31,0.007303564
+2016-09-30,2017-06-30,0.007563033
+2016-09-30,2017-07-31,0.007844364
+2016-09-30,2017-08-31,0.008068844
+2016-09-30,2017-09-30,0.008246903
+2016-09-30,2017-10-31,0.008389058
+2016-09-30,2017-11-30,0.008471509
+2016-09-30,2017-12-31,0.008530139
+2016-09-30,2018-01-31,0.008582774
+2016-09-30,2018-02-28,0.008586473
+2016-09-30,2018-03-31,0.008588344
+2016-09-30,2018-04-30,0.008621666
+2016-09-30,2018-05-31,0.008653634
+2016-09-30,2018-06-30,0.00873517
+2016-09-30,2018-07-31,0.008875478
+2016-09-30,2018-08-31,0.009032255
+2016-09-30,2018-09-30,0.009238328
+2016-09-30,2018-10-31,0.009463879
+2016-09-30,2018-11-30,0.009672021
+2016-09-30,2018-12-31,0.009867509
+2016-09-30,2019-01-31,0.010064581
+2016-09-30,2019-02-28,0.010230326
+2016-09-30,2019-03-31,0.010355377
+2016-09-30,2019-04-30,0.010485866
+2016-09-30,2019-05-31,0.010579887
+2016-09-30,2019-06-30,0.010666766
+2016-09-30,2019-07-31,0.010751987
+2016-09-30,2019-08-31,0.010810552
+2016-09-30,2019-09-30,0.010874312
+2016-09-30,2019-10-31,0.010935921
+2016-09-30,2019-11-30,0.010984171
+2016-09-30,2019-12-31,0.01103518
+2016-09-30,2020-01-31,0.011098715
+2016-09-30,2020-02-29,0.011153865
+2016-09-30,2020-03-31,0.011213882
+2016-09-30,2020-04-30,0.011292298
+2016-09-30,2020-05-31,0.011364206
+2016-09-30,2020-06-30,0.01144856
+2016-09-30,2020-07-31,0.011549249
+2016-09-30,2020-08-31,0.011644024
+2016-09-30,2020-09-30,0.011747591
+2016-09-30,2020-10-31,0.01186789
+2016-09-30,2020-11-30,0.011986264
+2016-09-30,2020-12-31,0.012092483
+2016-09-30,2021-01-31,0.012224475
+2016-09-30,2021-02-28,0.012355273
+2016-09-30,2021-03-31,0.012465859
+2016-09-30,2021-04-30,0.012613437
+2016-09-30,2021-05-31,0.012745431
+2016-09-30,2021-06-30,0.012891595
+2016-09-30,2021-07-31,0.013058113
+2016-09-30,2021-08-31,0.013222188
+2016-09-30,2021-09-30,0.013388936
+2016-09-30,2021-10-31,0.013561319
+2016-09-30,2021-11-30,0.013713815
+2016-09-30,2021-12-31,0.013852804
+2016-09-30,2022-01-31,0.013994455
+2016-09-30,2022-02-28,0.014116718
+2016-09-30,2022-03-31,0.014213648
+2016-09-30,2022-04-30,0.014323405
+2016-09-30,2022-05-31,0.014409678
+2016-09-30,2022-06-30,0.014495122
+2016-09-30,2022-07-31,0.014585779
+2016-09-30,2022-08-31,0.014663123
+2016-09-30,2022-09-30,0.01474335
+2016-09-30,2022-10-31,0.014831935
+2016-09-30,2022-11-30,0.014912081
+2016-09-30,2022-12-31,0.014998702
+2016-09-30,2023-01-31,0.015103095
+2016-09-30,2023-02-28,0.015196659
+2016-09-30,2023-03-31,0.015295876
+2016-09-30,2023-04-30,0.015418751
+2016-09-30,2023-05-31,0.015530409
+2016-09-30,2023-06-30,0.015657796
+2016-09-30,2023-07-31,0.015799459
+2016-09-30,2023-08-31,0.015939481
+2016-09-30,2023-09-30,0.016089711
+2016-09-30,2023-10-31,0.016240567
+2016-09-30,2023-11-30,0.016373174
+2016-09-30,2023-12-31,0.016496156
+2016-09-30,2024-01-31,0.016617567
+2016-09-30,2024-02-29,0.016719151
+2016-09-30,2024-03-31,0.016804021
+2016-09-30,2024-04-30,0.016889688
+2016-09-30,2024-05-31,0.016957435
+2016-09-30,2024-06-30,0.017022629
+2016-09-30,2024-07-31,0.017084874
+2016-09-30,2024-08-31,0.01713266
+2016-09-30,2024-09-30,0.017184922
+2016-09-30,2024-10-31,0.017233698
+2016-09-30,2024-11-30,0.017278179
+2016-09-30,2024-12-31,0.01732472
+2016-09-30,2025-01-31,0.017378051
+2016-09-30,2025-02-28,0.017427993
+2016-09-30,2025-03-31,0.017473628
+2016-09-30,2025-04-30,0.017530549
+2016-09-30,2025-05-31,0.017581461
+2016-09-30,2025-06-30,0.017641272
+2016-09-30,2025-07-31,0.017698904
+2016-09-30,2025-08-31,0.017753471
+2016-09-30,2025-09-30,0.017811709
+2016-09-30,2025-10-31,0.01787471
+2016-09-30,2025-11-30,0.017930055
+2016-09-30,2025-12-31,0.01798278
+2016-09-30,2026-01-31,0.018040351
+2016-09-30,2026-02-28,0.018092759
+2016-09-30,2026-03-31,0.018131589
+2016-09-30,2026-04-30,0.018181045
+2016-09-30,2026-05-31,0.018220265
+2016-09-30,2026-06-30,0.018259858
+2016-09-30,2026-07-31,0.018303706
+2016-09-30,2026-08-31,0.018338907
+2016-12-31,2016-12-31,0.007720431
+2016-12-31,2017-01-31,0.007817446
+2016-12-31,2017-02-28,0.00796406
+2016-12-31,2017-03-31,0.008224823
+2016-12-31,2017-04-30,0.00864499
+2016-12-31,2017-05-31,0.00911917
+2016-12-31,2017-06-30,0.009680177
+2016-12-31,2017-07-31,0.010256804
+2016-12-31,2017-08-31,0.010802659
+2016-12-31,2017-09-30,0.011337957
+2016-12-31,2017-10-31,0.011855133
+2016-12-31,2017-11-30,0.012349157
+2016-12-31,2017-12-31,0.012844727
+2016-12-31,2018-01-31,0.013365363
+2016-12-31,2018-02-28,0.013871614
+2016-12-31,2018-03-31,0.01433304
+2016-12-31,2018-04-30,0.01488755
+2016-12-31,2018-05-31,0.015325405
+2016-12-31,2018-06-30,0.015819031
+2016-12-31,2018-07-31,0.01628462
+2016-12-31,2018-08-31,0.016689682
+2016-12-31,2018-09-30,0.017083207
+2016-12-31,2018-10-31,0.017422337
+2016-12-31,2018-11-30,0.017715684
+2016-12-31,2018-12-31,0.017972469
+2016-12-31,2019-01-31,0.0182254
+2016-12-31,2019-02-28,0.018468742
+2016-12-31,2019-03-31,0.018676455
+2016-12-31,2019-04-30,0.018912332
+2016-12-31,2019-05-31,0.019137321
+2016-12-31,2019-06-30,0.019384734
+2016-12-31,2019-07-31,0.019637065
+2016-12-31,2019-08-31,0.019882122
+2016-12-31,2019-09-30,0.020170483
+2016-12-31,2019-10-31,0.020429566
+2016-12-31,2019-11-30,0.020712176
+2016-12-31,2019-12-31,0.020989821
+2016-12-31,2020-01-31,0.021263864
+2016-12-31,2020-02-29,0.021532735
+2016-12-31,2020-03-31,0.021756522
+2016-12-31,2020-04-30,0.021971328
+2016-12-31,2020-05-31,0.022162684
+2016-12-31,2020-06-30,0.02233937
+2016-12-31,2020-07-31,0.022502517
+2016-12-31,2020-08-31,0.02264763
+2016-12-31,2020-09-30,0.022782195
+2016-12-31,2020-10-31,0.022915251
+2016-12-31,2020-11-30,0.023041874
+2016-12-31,2020-12-31,0.023143742
+2016-12-31,2021-01-31,0.02325871
+2016-12-31,2021-02-28,0.023369291
+2016-12-31,2021-03-31,0.023455285
+2016-12-31,2021-04-30,0.023562998
+2016-12-31,2021-05-31,0.023656053
+2016-12-31,2021-06-30,0.023755316
+2016-12-31,2021-07-31,0.02386618
+2016-12-31,2021-08-31,0.023976529
+2016-12-31,2021-09-30,0.024093867
+2016-12-31,2021-10-31,0.024225429
+2016-12-31,2021-11-30,0.024357457
+2016-12-31,2021-12-31,0.024490566
+2016-12-31,2022-01-31,0.024632077
+2016-12-31,2022-02-28,0.024765852
+2016-12-31,2022-03-31,0.024871875
+2016-12-31,2022-04-30,0.024987142
+2016-12-31,2022-05-31,0.025084173
+2016-12-31,2022-06-30,0.025177804
+2016-12-31,2022-07-31,0.025270878
+2016-12-31,2022-08-31,0.025356334
+2016-12-31,2022-09-30,0.025441423
+2016-12-31,2022-10-31,0.025526963
+2016-12-31,2022-11-30,0.025606392
+2016-12-31,2022-12-31,0.025685081
+2016-12-31,2023-01-31,0.025768731
+2016-12-31,2023-02-28,0.025840282
+2016-12-31,2023-03-31,0.025907388
+2016-12-31,2023-04-30,0.025979528
+2016-12-31,2023-05-31,0.026036788
+2016-12-31,2023-06-30,0.026093359
+2016-12-31,2023-07-31,0.026149079
+2016-12-31,2023-08-31,0.02619595
+2016-12-31,2023-09-30,0.026242525
+2016-12-31,2023-10-31,0.026289971
+2016-12-31,2023-11-30,0.026329152
+2016-12-31,2023-12-31,0.026368236
+2016-12-31,2024-01-31,0.026412297
+2016-12-31,2024-02-29,0.026451457
+2016-12-31,2024-03-31,0.026490023
+2016-12-31,2024-04-30,0.026536019
+2016-12-31,2024-05-31,0.02657876
+2016-12-31,2024-06-30,0.026627745
+2016-12-31,2024-07-31,0.026681005
+2016-12-31,2024-08-31,0.026731345
+2016-12-31,2024-09-30,0.02679196
+2016-12-31,2024-10-31,0.026848264
+2016-12-31,2024-11-30,0.02690684
+2016-12-31,2024-12-31,0.026965283
+2016-12-31,2025-01-31,0.02702544
+2016-12-31,2025-02-28,0.027083336
+2016-12-31,2025-03-31,0.027129634
+2016-12-31,2025-04-30,0.027179217
+2016-12-31,2025-05-31,0.027219971
+2016-12-31,2025-06-30,0.027260442
+2016-12-31,2025-07-31,0.027293336
+2016-12-31,2025-08-31,0.027319341
+2016-12-31,2025-09-30,0.027342936
+2016-12-31,2025-10-31,0.027366276
+2016-12-31,2025-11-30,0.027381579
+2016-12-31,2025-12-31,0.027395015
+2016-12-31,2026-01-31,0.027411175
+2016-12-31,2026-02-28,0.027422376
+2016-12-31,2026-03-31,0.027432631
+2016-12-31,2026-04-30,0.027448567
+2016-12-31,2026-05-31,0.027460311
+2016-12-31,2026-06-30,0.027474551
+2016-12-31,2026-07-31,0.027493582
+2016-12-31,2026-08-31,0.027509006
+2016-12-31,2026-09-30,0.027526678
+2016-12-31,2026-10-31,0.027549239
+2016-12-31,2026-11-30,0.027568539
+2017-03-31,2017-03-31,0.0098278
+2017-03-31,2017-04-30,0.010138164
+2017-03-31,2017-05-31,0.010560919
+2017-03-31,2017-06-30,0.011123991
+2017-03-31,2017-07-31,0.011728429
+2017-03-31,2017-08-31,0.012275125
+2017-03-31,2017-09-30,0.012764521
+2017-03-31,2017-10-31,0.013192161
+2017-03-31,2017-11-30,0.013599596
+2017-03-31,2017-12-31,0.013976234
+2017-03-31,2018-01-31,0.014342291
+2017-03-31,2018-02-28,0.014695428
+2017-03-31,2018-03-31,0.01508743
+2017-03-31,2018-04-30,0.015481133
+2017-03-31,2018-05-31,0.015863134
+2017-03-31,2018-06-30,0.016248815
+2017-03-31,2018-07-31,0.016624348
+2017-03-31,2018-08-31,0.017008998
+2017-03-31,2018-09-30,0.017370926
+2017-03-31,2018-10-31,0.017717923
+2017-03-31,2018-11-30,0.018043589
+2017-03-31,2018-12-31,0.018352328
+2017-03-31,2019-01-31,0.018649918
+2017-03-31,2019-02-28,0.018908497
+2017-03-31,2019-03-31,0.019165278
+2017-03-31,2019-04-30,0.01939627
+2017-03-31,2019-05-31,0.019638173
+2017-03-31,2019-06-30,0.019861545
+2017-03-31,2019-07-31,0.020081031
+2017-03-31,2019-08-31,0.020287355
+2017-03-31,2019-09-30,0.02048891
+2017-03-31,2019-10-31,0.020697005
+2017-03-31,2019-11-30,0.020882161
+2017-03-31,2019-12-31,0.021062148
+2017-03-31,2020-01-31,0.021265996
+2017-03-31,2020-02-29,0.021440601
+2017-03-31,2020-03-31,0.021609001
+2017-03-31,2020-04-30,0.021789998
+2017-03-31,2020-05-31,0.021953393
+2017-03-31,2020-06-30,0.022099937
+2017-03-31,2020-07-31,0.022265032
+2017-03-31,2020-08-31,0.022402888
+2017-03-31,2020-09-30,0.022535837
+2017-03-31,2020-10-31,0.022682236
+2017-03-31,2020-11-30,0.022806572
+2017-03-31,2020-12-31,0.022934547
+2017-03-31,2021-01-31,0.023069137
+2017-03-31,2021-02-28,0.023184859
+2017-03-31,2021-03-31,0.023300746
+2017-03-31,2021-04-30,0.023431226
+2017-03-31,2021-05-31,0.023541064
+2017-03-31,2021-06-30,0.023647923
+2017-03-31,2021-07-31,0.023767905
+2017-03-31,2021-08-31,0.023865296
+2017-03-31,2021-09-30,0.023975196
+2017-03-31,2021-10-31,0.024091367
+2017-03-31,2021-11-30,0.02418783
+2017-03-31,2021-12-31,0.024300704
+2017-03-31,2022-01-31,0.024418492
+2017-03-31,2022-02-28,0.024520408
+2017-03-31,2022-03-31,0.02462806
+2017-03-31,2022-04-30,0.024737054
+2017-03-31,2022-05-31,0.024824191
+2017-03-31,2022-06-30,0.024915444
+2017-03-31,2022-07-31,0.025004112
+2017-03-31,2022-08-31,0.025071326
+2017-03-31,2022-09-30,0.025139039
+2017-03-31,2022-10-31,0.025207398
+2017-03-31,2022-11-30,0.025257341
+2017-03-31,2022-12-31,0.025310396
+2017-03-31,2023-01-31,0.025363276
+2017-03-31,2023-02-28,0.025403796
+2017-03-31,2023-03-31,0.025449197
+2017-03-31,2023-04-30,0.025498188
+2017-03-31,2023-05-31,0.025536741
+2017-03-31,2023-06-30,0.025583186
+2017-03-31,2023-07-31,0.025639623
+2017-03-31,2023-08-31,0.025688616
+2017-03-31,2023-09-30,0.025745565
+2017-03-31,2023-10-31,0.025810223
+2017-03-31,2023-11-30,0.025872627
+2017-03-31,2023-12-31,0.025939206
+2017-03-31,2024-01-31,0.026011176
+2017-03-31,2024-02-29,0.026075181
+2017-03-31,2024-03-31,0.026143146
+2017-03-31,2024-04-30,0.026211287
+2017-03-31,2024-05-31,0.026278019
+2017-03-31,2024-06-30,0.02634246
+2017-03-31,2024-07-31,0.026410081
+2017-03-31,2024-08-31,0.026466381
+2017-03-31,2024-09-30,0.02652209
+2017-03-31,2024-10-31,0.02658194
+2017-03-31,2024-11-30,0.026626066
+2017-03-31,2024-12-31,0.026669269
+2017-03-31,2025-01-31,0.026719569
+2017-03-31,2025-02-28,0.026751606
+2017-03-31,2025-03-31,0.026784997
+2017-03-31,2025-04-30,0.026820672
+2017-03-31,2025-05-31,0.026847191
+2017-03-31,2025-06-30,0.02687469
+2017-03-31,2025-07-31,0.026908863
+2017-03-31,2025-08-31,0.026931646
+2017-03-31,2025-09-30,0.026957496
+2017-03-31,2025-10-31,0.026993081
+2017-03-31,2025-11-30,0.027015823
+2017-03-31,2025-12-31,0.027042138
+2017-03-31,2026-01-31,0.027076561
+2017-03-31,2026-02-28,0.027098538
+2017-03-31,2026-03-31,0.027123928
+2017-03-31,2026-04-30,0.027158922
+2017-03-31,2026-05-31,0.027184808
+2017-03-31,2026-06-30,0.027213036
+2017-03-31,2026-07-31,0.027252502
+2017-03-31,2026-08-31,0.027281186
+2017-03-31,2026-09-30,0.027313845
+2017-03-31,2026-10-31,0.027355965
+2017-03-31,2026-11-30,0.027386122
+2017-03-31,2026-12-31,0.027420197
+2017-03-31,2027-01-31,0.027459994
+2017-06-30,2017-06-30,0.012240616
+2017-06-30,2017-07-31,0.012285239
+2017-06-30,2017-08-31,0.01240074
+2017-06-30,2017-09-30,0.012637363
+2017-06-30,2017-10-31,0.012976525
+2017-06-30,2017-11-30,0.013417088
+2017-06-30,2017-12-31,0.013876863
+2017-06-30,2018-01-31,0.014269273
+2017-06-30,2018-02-28,0.014567725
+2017-06-30,2018-03-31,0.014807015
+2017-06-30,2018-04-30,0.015023025
+2017-06-30,2018-05-31,0.015256289
+2017-06-30,2018-06-30,0.015525812
+2017-06-30,2018-07-31,0.015798923
+2017-06-30,2018-08-31,0.016076964
+2017-06-30,2018-09-30,0.016320042
+2017-06-30,2018-10-31,0.016529099
+2017-06-30,2018-11-30,0.01670335
+2017-06-30,2018-12-31,0.016856513
+2017-06-30,2019-01-31,0.017012312
+2017-06-30,2019-02-28,0.017168132
+2017-06-30,2019-03-31,0.017355397
+2017-06-30,2019-04-30,0.01755546
+2017-06-30,2019-05-31,0.01780166
+2017-06-30,2019-06-30,0.018056125
+2017-06-30,2019-07-31,0.018315922
+2017-06-30,2019-08-31,0.018573301
+2017-06-30,2019-09-30,0.018819011
+2017-06-30,2019-10-31,0.019059368
+2017-06-30,2019-11-30,0.019271341
+2017-06-30,2019-12-31,0.019461983
+2017-06-30,2020-01-31,0.019659829
+2017-06-30,2020-02-29,0.019821081
+2017-06-30,2020-03-31,0.01996341
+2017-06-30,2020-04-30,0.020104867
+2017-06-30,2020-05-31,0.020226153
+2017-06-30,2020-06-30,0.020330685
+2017-06-30,2020-07-31,0.020448224
+2017-06-30,2020-08-31,0.020549099
+2017-06-30,2020-09-30,0.020650964
+2017-06-30,2020-10-31,0.020767908
+2017-06-30,2020-11-30,0.020872396
+2017-06-30,2020-12-31,0.020983836
+2017-06-30,2021-01-31,0.021103721
+2017-06-30,2021-02-28,0.021211245
+2017-06-30,2021-03-31,0.021321263
+2017-06-30,2021-04-30,0.021447802
+2017-06-30,2021-05-31,0.021560652
+2017-06-30,2021-06-30,0.021672768
+2017-06-30,2021-07-31,0.021798659
+2017-06-30,2021-08-31,0.021904514
+2017-06-30,2021-09-30,0.022022522
+2017-06-30,2021-10-31,0.022143818
+2017-06-30,2021-11-30,0.022245904
+2017-06-30,2021-12-31,0.022362702
+2017-06-30,2022-01-31,0.022481451
+2017-06-30,2022-02-28,0.022586432
+2017-06-30,2022-03-31,0.022698751
+2017-06-30,2022-04-30,0.022816714
+2017-06-30,2022-05-31,0.022920858
+2017-06-30,2022-06-30,0.023037681
+2017-06-30,2022-07-31,0.023156463
+2017-06-30,2022-08-31,0.023258097
+2017-06-30,2022-09-30,0.023364353
+2017-06-30,2022-10-31,0.023472214
+2017-06-30,2022-11-30,0.023563072
+2017-06-30,2022-12-31,0.023659821
+2017-06-30,2023-01-31,0.023752329
+2017-06-30,2023-02-28,0.023834332
+2017-06-30,2023-03-31,0.023924141
+2017-06-30,2023-04-30,0.024010982
+2017-06-30,2023-05-31,0.024084341
+2017-06-30,2023-06-30,0.024162651
+2017-06-30,2023-07-31,0.024245585
+2017-06-30,2023-08-31,0.024318369
+2017-06-30,2023-09-30,0.024394855
+2017-06-30,2023-10-31,0.02447439
+2017-06-30,2023-11-30,0.024552282
+2017-06-30,2023-12-31,0.024631885
+2017-06-30,2024-01-31,0.024714788
+2017-06-30,2024-02-29,0.02479214
+2017-06-30,2024-03-31,0.024873244
+2017-06-30,2024-04-30,0.02495247
+2017-06-30,2024-05-31,0.025035201
+2017-06-30,2024-06-30,0.025114377
+2017-06-30,2024-07-31,0.025194462
+2017-06-30,2024-08-31,0.025265993
+2017-06-30,2024-09-30,0.02533507
+2017-06-30,2024-10-31,0.025406035
+2017-06-30,2024-11-30,0.025463327
+2017-06-30,2024-12-31,0.025517536
+2017-06-30,2025-01-31,0.025577828
+2017-06-30,2025-02-28,0.025621714
+2017-06-30,2025-03-31,0.025665819
+2017-06-30,2025-04-30,0.025709459
+2017-06-30,2025-05-31,0.025747243
+2017-06-30,2025-06-30,0.025785312
+2017-06-30,2025-07-31,0.02582996
+2017-06-30,2025-08-31,0.025868443
+2017-06-30,2025-09-30,0.025911104
+2017-06-30,2025-10-31,0.025967711
+2017-06-30,2025-11-30,0.026017841
+2017-06-30,2025-12-31,0.026074059
+2017-06-30,2026-01-31,0.026142361
+2017-06-30,2026-02-28,0.026203809
+2017-06-30,2026-03-31,0.026268146
+2017-06-30,2026-04-30,0.026345884
+2017-06-30,2026-05-31,0.026418194
+2017-06-30,2026-06-30,0.026486091
+2017-06-30,2026-07-31,0.026564403
+2017-06-30,2026-08-31,0.026627196
+2017-06-30,2026-09-30,0.026685447
+2017-06-30,2026-10-31,0.026746163
+2017-06-30,2026-11-30,0.026789229
+2017-06-30,2026-12-31,0.026827699
+2017-06-30,2027-01-31,0.026862826
+2017-06-30,2027-02-28,0.026880106
+2017-06-30,2027-03-31,0.026892327
+2017-06-30,2027-04-30,0.026902188
+2017-09-30,2017-09-30,0.0123222
+2017-09-30,2017-10-31,0.012503231
+2017-09-30,2017-11-30,0.01293978
+2017-09-30,2017-12-31,0.013674273
+2017-09-30,2018-01-31,0.014309686
+2017-09-30,2018-02-28,0.014743844
+2017-09-30,2018-03-31,0.014994026
+2017-09-30,2018-04-30,0.015194418
+2017-09-30,2018-05-31,0.015465627
+2017-09-30,2018-06-30,0.015860312
+2017-09-30,2018-07-31,0.016279496
+2017-09-30,2018-08-31,0.016639937
+2017-09-30,2018-09-30,0.016937732
+2017-09-30,2018-10-31,0.017176099
+2017-09-30,2018-11-30,0.017379848
+2017-09-30,2018-12-31,0.017540548
+2017-09-30,2019-01-31,0.017667349
+2017-09-30,2019-02-28,0.017746933
+2017-09-30,2019-03-31,0.017818388
+2017-09-30,2019-04-30,0.017898768
+2017-09-30,2019-05-31,0.017982882
+2017-09-30,2019-06-30,0.018102285
+2017-09-30,2019-07-31,0.018257
+2017-09-30,2019-08-31,0.018444399
+2017-09-30,2019-09-30,0.018653359
+2017-09-30,2019-10-31,0.018873501
+2017-09-30,2019-11-30,0.019084831
+2017-09-30,2019-12-31,0.019286961
+2017-09-30,2020-01-31,0.019480438
+2017-09-30,2020-02-29,0.019639941
+2017-09-30,2020-03-31,0.019788158
+2017-09-30,2020-04-30,0.019916964
+2017-09-30,2020-05-31,0.020029642
+2017-09-30,2020-06-30,0.020124612
+2017-09-30,2020-07-31,0.020213785
+2017-09-30,2020-08-31,0.020278338
+2017-09-30,2020-09-30,0.020337354
+2017-09-30,2020-10-31,0.020406748
+2017-09-30,2020-11-30,0.020458479
+2017-09-30,2020-12-31,0.020514939
+2017-09-30,2021-01-31,0.020583522
+2017-09-30,2021-02-28,0.020638321
+2017-09-30,2021-03-31,0.020697151
+2017-09-30,2021-04-30,0.020771312
+2017-09-30,2021-05-31,0.020834135
+2017-09-30,2021-06-30,0.020897055
+2017-09-30,2021-07-31,0.020976313
+2017-09-30,2021-08-31,0.021040496
+2017-09-30,2021-09-30,0.021111678
+2017-09-30,2021-10-31,0.021202261
+2017-09-30,2021-11-30,0.021284855
+2017-09-30,2021-12-31,0.021381292
+2017-09-30,2022-01-31,0.021501555
+2017-09-30,2022-02-28,0.021613777
+2017-09-30,2022-03-31,0.021741702
+2017-09-30,2022-04-30,0.021895113
+2017-09-30,2022-05-31,0.022044701
+2017-09-30,2022-06-30,0.022205925
+2017-09-30,2022-07-31,0.022396654
+2017-09-30,2022-08-31,0.022568101
+2017-09-30,2022-09-30,0.022763651
+2017-09-30,2022-10-31,0.022955097
+2017-09-30,2022-11-30,0.023110728
+2017-09-30,2022-12-31,0.02327402
+2017-09-30,2023-01-31,0.023419592
+2017-09-30,2023-02-28,0.023533094
+2017-09-30,2023-03-31,0.023636691
+2017-09-30,2023-04-30,0.023730011
+2017-09-30,2023-05-31,0.023795111
+2017-09-30,2023-06-30,0.023858498
+2017-09-30,2023-07-31,0.02391593
+2017-09-30,2023-08-31,0.023952463
+2017-09-30,2023-09-30,0.023990189
+2017-09-30,2023-10-31,0.024032334
+2017-09-30,2023-11-30,0.024063597
+2017-09-30,2023-12-31,0.02410468
+2017-09-30,2024-01-31,0.02415367
+2017-09-30,2024-02-29,0.024200231
+2017-09-30,2024-03-31,0.024258012
+2017-09-30,2024-04-30,0.024326495
+2017-09-30,2024-05-31,0.024391053
+2017-09-30,2024-06-30,0.024466306
+2017-09-30,2024-07-31,0.024549905
+2017-09-30,2024-08-31,0.024635919
+2017-09-30,2024-09-30,0.024724209
+2017-09-30,2024-10-31,0.024815583
+2017-09-30,2024-11-30,0.024897348
+2017-09-30,2024-12-31,0.024977164
+2017-09-30,2025-01-31,0.025056955
+2017-09-30,2025-02-28,0.02511897
+2017-09-30,2025-03-31,0.02518045
+2017-09-30,2025-04-30,0.025236673
+2017-09-30,2025-05-31,0.025286484
+2017-09-30,2025-06-30,0.025330776
+2017-09-30,2025-07-31,0.025375569
+2017-09-30,2025-08-31,0.025408971
+2017-09-30,2025-09-30,0.02544305
+2017-09-30,2025-10-31,0.025482395
+2017-09-30,2025-11-30,0.025511827
+2017-09-30,2025-12-31,0.025545133
+2017-09-30,2026-01-31,0.025588991
+2017-09-30,2026-02-28,0.025622346
+2017-09-30,2026-03-31,0.025658464
+2017-09-30,2026-04-30,0.025705835
+2017-09-30,2026-05-31,0.025747498
+2017-09-30,2026-06-30,0.025790911
+2017-09-30,2026-07-31,0.025841779
+2017-09-30,2026-08-31,0.025884246
+2017-09-30,2026-09-30,0.025929167
+2017-09-30,2026-10-31,0.025985119
+2017-09-30,2026-11-30,0.026027917
+2017-09-30,2026-12-31,0.026072145
+2017-09-30,2027-01-31,0.026122032
+2017-09-30,2027-02-28,0.026157312
+2017-09-30,2027-03-31,0.02619192
+2017-09-30,2027-04-30,0.026229964
+2017-09-30,2027-05-31,0.02625433
+2017-09-30,2027-06-30,0.026275315
+2017-09-30,2027-07-31,0.026299231
+2017-12-31,2017-12-31,0.0156425
+2017-12-31,2018-01-31,0.015307487
+2017-12-31,2018-02-28,0.015379147
+2017-12-31,2018-03-31,0.016133244
+2017-12-31,2018-04-30,0.017053304
+2017-12-31,2018-05-31,0.017779365
+2017-12-31,2018-06-30,0.018285373
+2017-12-31,2018-07-31,0.018645513
+2017-12-31,2018-08-31,0.018948725
+2017-12-31,2018-09-30,0.019261196
+2017-12-31,2018-10-31,0.019569197
+2017-12-31,2018-11-30,0.019889499
+2017-12-31,2018-12-31,0.020192125
+2017-12-31,2019-01-31,0.020472002
+2017-12-31,2019-02-28,0.020712811
+2017-12-31,2019-03-31,0.020945213
+2017-12-31,2019-04-30,0.021151234
+2017-12-31,2019-05-31,0.021321581
+2017-12-31,2019-06-30,0.021474581
+2017-12-31,2019-07-31,0.021606331
+2017-12-31,2019-08-31,0.021717609
+2017-12-31,2019-09-30,0.021805443
+2017-12-31,2019-10-31,0.021878661
+2017-12-31,2019-11-30,0.021927858
+2017-12-31,2019-12-31,0.021968758
+2017-12-31,2020-01-31,0.022010012
+2017-12-31,2020-02-29,0.022035837
+2017-12-31,2020-03-31,0.022067189
+2017-12-31,2020-04-30,0.022104287
+2017-12-31,2020-05-31,0.022133026
+2017-12-31,2020-06-30,0.022165592
+2017-12-31,2020-07-31,0.022207045
+2017-12-31,2020-08-31,0.02223656
+2017-12-31,2020-09-30,0.022271023
+2017-12-31,2020-10-31,0.022318375
+2017-12-31,2020-11-30,0.022352091
+2017-12-31,2020-12-31,0.022389396
+2017-12-31,2021-01-31,0.022432518
+2017-12-31,2021-02-28,0.022458451
+2017-12-31,2021-03-31,0.022482807
+2017-12-31,2021-04-30,0.022511425
+2017-12-31,2021-05-31,0.022525969
+2017-12-31,2021-06-30,0.022539928
+2017-12-31,2021-07-31,0.022559004
+2017-12-31,2021-08-31,0.022564974
+2017-12-31,2021-09-30,0.022573539
+2017-12-31,2021-10-31,0.022587628
+2017-12-31,2021-11-30,0.022590149
+2017-12-31,2021-12-31,0.022598267
+2017-12-31,2022-01-31,0.022616231
+2017-12-31,2022-02-28,0.02262664
+2017-12-31,2022-03-31,0.02264724
+2017-12-31,2022-04-30,0.022681829
+2017-12-31,2022-05-31,0.022711971
+2017-12-31,2022-06-30,0.02275356
+2017-12-31,2022-07-31,0.02281343
+2017-12-31,2022-08-31,0.022867101
+2017-12-31,2022-09-30,0.022939107
+2017-12-31,2022-10-31,0.023024613
+2017-12-31,2022-11-30,0.023101187
+2017-12-31,2022-12-31,0.023194298
+2017-12-31,2023-01-31,0.023288129
+2017-12-31,2023-02-28,0.023365903
+2017-12-31,2023-03-31,0.02344283
+2017-12-31,2023-04-30,0.023518059
+2017-12-31,2023-05-31,0.0235767
+2017-12-31,2023-06-30,0.023639619
+2017-12-31,2023-07-31,0.023701732
+2017-12-31,2023-08-31,0.023750634
+2017-12-31,2023-09-30,0.023803105
+2017-12-31,2023-10-31,0.023858285
+2017-12-31,2023-11-30,0.023902255
+2017-12-31,2023-12-31,0.023951807
+2017-12-31,2024-01-31,0.024002082
+2017-12-31,2024-02-29,0.024046805
+2017-12-31,2024-03-31,0.024095061
+2017-12-31,2024-04-30,0.024145875
+2017-12-31,2024-05-31,0.024188422
+2017-12-31,2024-06-30,0.024234284
+2017-12-31,2024-07-31,0.024283001
+2017-12-31,2024-08-31,0.024328361
+2017-12-31,2024-09-30,0.024374462
+2017-12-31,2024-10-31,0.024423965
+2017-12-31,2024-11-30,0.024467163
+2017-12-31,2024-12-31,0.024513109
+2017-12-31,2025-01-31,0.024564372
+2017-12-31,2025-02-28,0.024607423
+2017-12-31,2025-03-31,0.024656429
+2017-12-31,2025-04-30,0.02470722
+2017-12-31,2025-05-31,0.02475987
+2017-12-31,2025-06-30,0.024813447
+2017-12-31,2025-07-31,0.024871828
+2017-12-31,2025-08-31,0.024926112
+2017-12-31,2025-09-30,0.02498323
+2017-12-31,2025-10-31,0.025046124
+2017-12-31,2025-11-30,0.025100339
+2017-12-31,2025-12-31,0.025154752
+2017-12-31,2026-01-31,0.025217616
+2017-12-31,2026-02-28,0.025265756
+2017-12-31,2026-03-31,0.025309772
+2017-12-31,2026-04-30,0.025359624
+2017-12-31,2026-05-31,0.025398551
+2017-12-31,2026-06-30,0.025432308
+2017-12-31,2026-07-31,0.025466556
+2017-12-31,2026-08-31,0.025488389
+2017-12-31,2026-09-30,0.025508933
+2017-12-31,2026-10-31,0.025533279
+2017-12-31,2026-11-30,0.025545288
+2017-12-31,2026-12-31,0.025558301
+2017-12-31,2027-01-31,0.025575351
+2017-12-31,2027-02-28,0.025582977
+2017-12-31,2027-03-31,0.025593493
+2017-12-31,2027-04-30,0.025609199
+2017-12-31,2027-05-31,0.025617609
+2017-12-31,2027-06-30,0.025628187
+2017-12-31,2027-07-31,0.025644092
+2017-12-31,2027-08-31,0.025650402
+2017-12-31,2027-09-30,0.025658397
+2017-12-31,2027-10-31,0.025669779
+2018-03-31,2018-03-31,0.0188313
+2018-03-31,2018-04-30,0.019149046
+2018-03-31,2018-05-31,0.019516447
+2018-03-31,2018-06-30,0.019997251
+2018-03-31,2018-07-31,0.020543804
+2018-03-31,2018-08-31,0.021132239
+2018-03-31,2018-09-30,0.021692798
+2018-03-31,2018-10-31,0.022209321
+2018-03-31,2018-11-30,0.022666228
+2018-03-31,2018-12-31,0.02307986
+2018-03-31,2019-01-31,0.02349396
+2018-03-31,2019-02-28,0.023884714
+2018-03-31,2019-03-31,0.024297427
+2018-03-31,2019-04-30,0.024660441
+2018-03-31,2019-05-31,0.025016561
+2018-03-31,2019-06-30,0.025292
+2018-03-31,2019-07-31,0.025504485
+2018-03-31,2019-08-31,0.02564486
+2018-03-31,2019-09-30,0.02573761
+2018-03-31,2019-10-31,0.02581514
+2018-03-31,2019-11-30,0.025867414
+2018-03-31,2019-12-31,0.025929193
+2018-03-31,2020-01-31,0.026019472
+2018-03-31,2020-02-29,0.026103227
+2018-03-31,2020-03-31,0.026198837
+2018-03-31,2020-04-30,0.02630945
+2018-03-31,2020-05-31,0.026400482
+2018-03-31,2020-06-30,0.026476479
+2018-03-31,2020-07-31,0.026556448
+2018-03-31,2020-08-31,0.02660634
+2018-03-31,2020-09-30,0.026647875
+2018-03-31,2020-10-31,0.026690589
+2018-03-31,2020-11-30,0.026710979
+2018-03-31,2020-12-31,0.026730631
+2018-03-31,2021-01-31,0.0267543
+2018-03-31,2021-02-28,0.026761469
+2018-03-31,2021-03-31,0.026770575
+2018-03-31,2021-04-30,0.026784494
+2018-03-31,2021-05-31,0.026783219
+2018-03-31,2021-06-30,0.02678413
+2018-03-31,2021-07-31,0.026791786
+2018-03-31,2021-08-31,0.02678948
+2018-03-31,2021-09-30,0.026792767
+2018-03-31,2021-10-31,0.026807132
+2018-03-31,2021-11-30,0.026814999
+2018-03-31,2021-12-31,0.026832707
+2018-03-31,2022-01-31,0.026862244
+2018-03-31,2022-02-28,0.026884685
+2018-03-31,2022-03-31,0.026912866
+2018-03-31,2022-04-30,0.02694376
+2018-03-31,2022-05-31,0.026959402
+2018-03-31,2022-06-30,0.026971877
+2018-03-31,2022-07-31,0.026982217
+2018-03-31,2022-08-31,0.026978158
+2018-03-31,2022-09-30,0.026971872
+2018-03-31,2022-10-31,0.026967568
+2018-03-31,2022-11-30,0.026954282
+2018-03-31,2022-12-31,0.026943074
+2018-03-31,2023-01-31,0.02693887
+2018-03-31,2023-02-28,0.026929018
+2018-03-31,2023-03-31,0.026920967
+2018-03-31,2023-04-30,0.026918429
+2018-03-31,2023-05-31,0.026910145
+2018-03-31,2023-06-30,0.026904455
+2018-03-31,2023-07-31,0.026904704
+2018-03-31,2023-08-31,0.026901924
+2018-03-31,2023-09-30,0.026905236
+2018-03-31,2023-10-31,0.026916289
+2018-03-31,2023-11-30,0.026927011
+2018-03-31,2023-12-31,0.026944254
+2018-03-31,2024-01-31,0.026968905
+2018-03-31,2024-02-29,0.026992452
+2018-03-31,2024-03-31,0.02702153
+2018-03-31,2024-04-30,0.027053712
+2018-03-31,2024-05-31,0.027086579
+2018-03-31,2024-06-30,0.02712008
+2018-03-31,2024-07-31,0.027156663
+2018-03-31,2024-08-31,0.027188909
+2018-03-31,2024-09-30,0.027222144
+2018-03-31,2024-10-31,0.027258856
+2018-03-31,2024-11-30,0.027288773
+2018-03-31,2024-12-31,0.027319132
+2018-03-31,2025-01-31,0.027355257
+2018-03-31,2025-02-28,0.027382899
+2018-03-31,2025-03-31,0.02741322
+2018-03-31,2025-04-30,0.027445903
+2018-03-31,2025-05-31,0.027477769
+2018-03-31,2025-06-30,0.027512154
+2018-03-31,2025-07-31,0.027552744
+2018-03-31,2025-08-31,0.027589627
+2018-03-31,2025-09-30,0.027628931
+2018-03-31,2025-10-31,0.027678569
+2018-03-31,2025-11-30,0.027722
+2018-03-31,2025-12-31,0.027767968
+2018-03-31,2026-01-31,0.027820812
+2018-03-31,2026-02-28,0.027866353
+2018-03-31,2026-03-31,0.027911587
+2018-03-31,2026-04-30,0.027963813
+2018-03-31,2026-05-31,0.028009374
+2018-03-31,2026-06-30,0.028050642
+2018-03-31,2026-07-31,0.028097831
+2018-03-31,2026-08-31,0.028134704
+2018-03-31,2026-09-30,0.028169731
+2018-03-31,2026-10-31,0.028207905
+2018-03-31,2026-11-30,0.028236265
+2018-03-31,2026-12-31,0.028264276
+2018-03-31,2027-01-31,0.028293202
+2018-03-31,2027-02-28,0.028313059
+2018-03-31,2027-03-31,0.028332916
+2018-03-31,2027-04-30,0.028355145
+2018-03-31,2027-05-31,0.028369981
+2018-03-31,2027-06-30,0.028385577
+2018-03-31,2027-07-31,0.028405416
+2018-03-31,2027-08-31,0.028418424
+2018-03-31,2027-09-30,0.028434688
+2018-03-31,2027-10-31,0.028454965
+2018-03-31,2027-11-30,0.028469453
+2018-03-31,2027-12-31,0.028488716
+2018-03-31,2028-01-31,0.028512359
+2018-06-30,2018-06-30,0.0209025
+2018-06-30,2018-07-31,0.021089995
+2018-06-30,2018-08-31,0.021514606
+2018-06-30,2018-09-30,0.022256474
+2018-06-30,2018-10-31,0.023067001
+2018-06-30,2018-11-30,0.023876002
+2018-06-30,2018-12-31,0.02453522
+2018-06-30,2019-01-31,0.025078639
+2018-06-30,2019-02-28,0.02552889
+2018-06-30,2019-03-31,0.025960573
+2018-06-30,2019-04-30,0.026360562
+2018-06-30,2019-05-31,0.026726797
+2018-06-30,2019-06-30,0.027083036
+2018-06-30,2019-07-31,0.027400698
+2018-06-30,2019-08-31,0.027681833
+2018-06-30,2019-09-30,0.027897703
+2018-06-30,2019-10-31,0.028061944
+2018-06-30,2019-11-30,0.028162017
+2018-06-30,2019-12-31,0.028226669
+2018-06-30,2020-01-31,0.028280998
+2018-06-30,2020-02-29,0.028310637
+2018-06-30,2020-03-31,0.02835339
+2018-06-30,2020-04-30,0.028413661
+2018-06-30,2020-05-31,0.028473129
+2018-06-30,2020-06-30,0.028541455
+2018-06-30,2020-07-31,0.028615614
+2018-06-30,2020-08-31,0.028662102
+2018-06-30,2020-09-30,0.028697997
+2018-06-30,2020-10-31,0.028730901
+2018-06-30,2020-11-30,0.028731795
+2018-06-30,2020-12-31,0.028725263
+2018-06-30,2021-01-31,0.028715184
+2018-06-30,2021-02-28,0.028682054
+2018-06-30,2021-03-31,0.028650794
+2018-06-30,2021-04-30,0.02861935
+2018-06-30,2021-05-31,0.028571639
+2018-06-30,2021-06-30,0.028531148
+2018-06-30,2021-07-31,0.028490756
+2018-06-30,2021-08-31,0.028438139
+2018-06-30,2021-09-30,0.028390984
+2018-06-30,2021-10-31,0.028347825
+2018-06-30,2021-11-30,0.028296386
+2018-06-30,2021-12-31,0.028254296
+2018-06-30,2022-01-31,0.028221303
+2018-06-30,2022-02-28,0.028183783
+2018-06-30,2022-03-31,0.028157849
+2018-06-30,2022-04-30,0.028144892
+2018-06-30,2022-05-31,0.028129496
+2018-06-30,2022-06-30,0.028124501
+2018-06-30,2022-07-31,0.028127685
+2018-06-30,2022-08-31,0.028122413
+2018-06-30,2022-09-30,0.028118914
+2018-06-30,2022-10-31,0.028120141
+2018-06-30,2022-11-30,0.028112829
+2018-06-30,2022-12-31,0.02810769
+2018-06-30,2023-01-31,0.028108273
+2018-06-30,2023-02-28,0.028100891
+2018-06-30,2023-03-31,0.028098239
+2018-06-30,2023-04-30,0.028102549
+2018-06-30,2023-05-31,0.028100964
+2018-06-30,2023-06-30,0.028104221
+2018-06-30,2023-07-31,0.028114291
+2018-06-30,2023-08-31,0.02811714
+2018-06-30,2023-09-30,0.028124403
+2018-06-30,2023-10-31,0.028137477
+2018-06-30,2023-11-30,0.028142454
+2018-06-30,2023-12-31,0.02815166
+2018-06-30,2024-01-31,0.028165478
+2018-06-30,2024-02-29,0.02817183
+2018-06-30,2024-03-31,0.028181005
+2018-06-30,2024-04-30,0.028195173
+2018-06-30,2024-05-31,0.02820204
+2018-06-30,2024-06-30,0.028214154
+2018-06-30,2024-07-31,0.028233009
+2018-06-30,2024-08-31,0.028248532
+2018-06-30,2024-09-30,0.028269608
+2018-06-30,2024-10-31,0.028298346
+2018-06-30,2024-11-30,0.028323746
+2018-06-30,2024-12-31,0.028355563
+2018-06-30,2025-01-31,0.028395423
+2018-06-30,2025-02-28,0.028429679
+2018-06-30,2025-03-31,0.028471221
+2018-06-30,2025-04-30,0.028516164
+2018-06-30,2025-05-31,0.028563121
+2018-06-30,2025-06-30,0.028611577
+2018-06-30,2025-07-31,0.028664534
+2018-06-30,2025-08-31,0.02871266
+2018-06-30,2025-09-30,0.028762918
+2018-06-30,2025-10-31,0.028818175
+2018-06-30,2025-11-30,0.028864766
+2018-06-30,2025-12-31,0.028912181
+2018-06-30,2026-01-31,0.02896844
+2018-06-30,2026-02-28,0.029012922
+2018-06-30,2026-03-31,0.029055792
+2018-06-30,2026-04-30,0.029106943
+2018-06-30,2026-05-31,0.029151207
+2018-06-30,2026-06-30,0.029193136
+2018-06-30,2026-07-31,0.029238147
+2018-06-30,2026-08-31,0.029273582
+2018-06-30,2026-09-30,0.029308564
+2018-06-30,2026-10-31,0.029350184
+2018-06-30,2026-11-30,0.029379778
+2018-06-30,2026-12-31,0.02940954
+2018-06-30,2027-01-31,0.02944288
+2018-06-30,2027-02-28,0.029464638
+2018-06-30,2027-03-31,0.029486547
+2018-06-30,2027-04-30,0.02951194
+2018-06-30,2027-05-31,0.029528199
+2018-06-30,2027-06-30,0.029544156
+2018-06-30,2027-07-31,0.029564931
+2018-06-30,2027-08-31,0.029576089
+2018-06-30,2027-09-30,0.029588997
+2018-06-30,2027-10-31,0.029606347
+2018-06-30,2027-11-30,0.029614892
+2018-06-30,2027-12-31,0.029625858
+2018-06-30,2028-01-31,0.02964119
+2018-06-30,2028-02-29,0.02964775
+2018-06-30,2028-03-31,0.029657029
+2018-06-30,2028-04-30,0.029670437
+2018-09-30,2018-09-30,0.0226056
+2018-09-30,2018-10-31,0.022995209
+2018-09-30,2018-11-30,0.023654234
+2018-09-30,2018-12-31,0.024641999
+2018-09-30,2019-01-31,0.025520262
+2018-09-30,2019-02-28,0.026209501
+2018-09-30,2019-03-31,0.026748088
+2018-09-30,2019-04-30,0.027217574
+2018-09-30,2019-05-31,0.027713651
+2018-09-30,2019-06-30,0.028298516
+2018-09-30,2019-07-31,0.028829021
+2018-09-30,2019-08-31,0.029219063
+2018-09-30,2019-09-30,0.02948932
+2018-09-30,2019-10-31,0.029678131
+2018-09-30,2019-11-30,0.029821514
+2018-09-30,2019-12-31,0.029940203
+2018-09-30,2020-01-31,0.03005211
+2018-09-30,2020-02-29,0.030135668
+2018-09-30,2020-03-31,0.030214356
+2018-09-30,2020-04-30,0.030279541
+2018-09-30,2020-05-31,0.03031234
+2018-09-30,2020-06-30,0.030322798
+2018-09-30,2020-07-31,0.030321522
+2018-09-30,2020-08-31,0.0302818
+2018-09-30,2020-09-30,0.030235051
+2018-09-30,2020-10-31,0.030188964
+2018-09-30,2020-11-30,0.030120834
+2018-09-30,2020-12-31,0.030063342
+2018-09-30,2021-01-31,0.030009747
+2018-09-30,2021-02-28,0.029943748
+2018-09-30,2021-03-31,0.029895712
+2018-09-30,2021-04-30,0.029853567
+2018-09-30,2021-05-31,0.029797168
+2018-09-30,2021-06-30,0.029756214
+2018-09-30,2021-07-31,0.029731236
+2018-09-30,2021-08-31,0.029695105
+2018-09-30,2021-09-30,0.029672767
+2018-09-30,2021-10-31,0.02965819
+2018-09-30,2021-11-30,0.029627817
+2018-09-30,2021-12-31,0.029605192
+2018-09-30,2022-01-31,0.02958697
+2018-09-30,2022-02-28,0.029552174
+2018-09-30,2022-03-31,0.029525661
+2018-09-30,2022-04-30,0.029506225
+2018-09-30,2022-05-31,0.029473118
+2018-09-30,2022-06-30,0.02945222
+2018-09-30,2022-07-31,0.029441133
+2018-09-30,2022-08-31,0.029420536
+2018-09-30,2022-09-30,0.029411467
+2018-09-30,2022-10-31,0.029413463
+2018-09-30,2022-11-30,0.029404293
+2018-09-30,2022-12-31,0.029404627
+2018-09-30,2023-01-31,0.029415572
+2018-09-30,2023-02-28,0.029414811
+2018-09-30,2023-03-31,0.029423244
+2018-09-30,2023-04-30,0.029442943
+2018-09-30,2023-05-31,0.029452234
+2018-09-30,2023-06-30,0.029470566
+2018-09-30,2023-07-31,0.029500668
+2018-09-30,2023-08-31,0.02951777
+2018-09-30,2023-09-30,0.029543864
+2018-09-30,2023-10-31,0.029578428
+2018-09-30,2023-11-30,0.029597513
+2018-09-30,2023-12-31,0.029624524
+2018-09-30,2024-01-31,0.029657137
+2018-09-30,2024-02-29,0.029671091
+2018-09-30,2024-03-31,0.029689434
+2018-09-30,2024-04-30,0.029711324
+2018-09-30,2024-05-31,0.029714981
+2018-09-30,2024-06-30,0.029721989
+2018-09-30,2024-07-31,0.029735066
+2018-09-30,2024-08-31,0.029732305
+2018-09-30,2024-09-30,0.029736363
+2018-09-30,2024-10-31,0.02974982
+2018-09-30,2024-11-30,0.02975256
+2018-09-30,2024-12-31,0.029763915
+2018-09-30,2025-01-31,0.029786053
+2018-09-30,2025-02-28,0.029797484
+2018-09-30,2025-03-31,0.029818153
+2018-09-30,2025-04-30,0.029849269
+2018-09-30,2025-05-31,0.029869642
+2018-09-30,2025-06-30,0.02989945
+2018-09-30,2025-07-31,0.029938064
+2018-09-30,2025-08-31,0.029968224
+2018-09-30,2025-09-30,0.030003775
+2018-09-30,2025-10-31,0.030047582
+2018-09-30,2025-11-30,0.030079012
+2018-09-30,2025-12-31,0.03011598
+2018-09-30,2026-01-31,0.030160081
+2018-09-30,2026-02-28,0.030186341
+2018-09-30,2026-03-31,0.030217715
+2018-09-30,2026-04-30,0.030252247
+2018-09-30,2026-05-31,0.030274947
+2018-09-30,2026-06-30,0.030298275
+2018-09-30,2026-07-31,0.030326973
+2018-09-30,2026-08-31,0.030340199
+2018-09-30,2026-09-30,0.030357383
+2018-09-30,2026-10-31,0.030381834
+2018-09-30,2026-11-30,0.030390841
+2018-09-30,2026-12-31,0.030405498
+2018-09-30,2027-01-31,0.030428559
+2018-09-30,2027-02-28,0.030434277
+2018-09-30,2027-03-31,0.030445599
+2018-09-30,2027-04-30,0.030463584
+2018-09-30,2027-05-31,0.030468626
+2018-09-30,2027-06-30,0.030478673
+2018-09-30,2027-07-31,0.0304973
+2018-09-30,2027-08-31,0.030502334
+2018-09-30,2027-09-30,0.030514291
+2018-09-30,2027-10-31,0.030536238
+2018-09-30,2027-11-30,0.030543834
+2018-09-30,2027-12-31,0.030558236
+2018-09-30,2028-01-31,0.030582484
+2018-09-30,2028-02-29,0.030591743
+2018-09-30,2028-03-31,0.030607687
+2018-09-30,2028-04-30,0.03063297
+2018-09-30,2028-05-31,0.030645157
+2018-09-30,2028-06-30,0.030664635
+2018-09-30,2028-07-31,0.030694933
+2018-09-30,2028-08-31,0.030711644
+2018-12-31,2018-12-31,0.0252238
+2018-12-31,2019-01-31,0.025195122
+2018-12-31,2019-02-28,0.025190748
+2018-12-31,2019-03-31,0.025321081
+2018-12-31,2019-04-30,0.025485749
+2018-12-31,2019-05-31,0.025627774
+2018-12-31,2019-06-30,0.025767302
+2018-12-31,2019-07-31,0.025885327
+2018-12-31,2019-08-31,0.025964389
+2018-12-31,2019-09-30,0.026013385
+2018-12-31,2019-10-31,0.026015619
+2018-12-31,2019-11-30,0.025927969
+2018-12-31,2019-12-31,0.025796107
+2018-12-31,2020-01-31,0.025624037
+2018-12-31,2020-02-29,0.025391048
+2018-12-31,2020-03-31,0.025171041
+2018-12-31,2020-04-30,0.024959581
+2018-12-31,2020-05-31,0.024736433
+2018-12-31,2020-06-30,0.024573418
+2018-12-31,2020-07-31,0.024441612
+2018-12-31,2020-08-31,0.024318275
+2018-12-31,2020-09-30,0.024254295
+2018-12-31,2020-10-31,0.02422896
+2018-12-31,2020-11-30,0.024218785
+2018-12-31,2020-12-31,0.024241373
+2018-12-31,2021-01-31,0.024287338
+2018-12-31,2021-02-28,0.024320657
+2018-12-31,2021-03-31,0.024361354
+2018-12-31,2021-04-30,0.024413599
+2018-12-31,2021-05-31,0.024457958
+2018-12-31,2021-06-30,0.024503638
+2018-12-31,2021-07-31,0.024566902
+2018-12-31,2021-08-31,0.024619087
+2018-12-31,2021-09-30,0.024684793
+2018-12-31,2021-10-31,0.024766284
+2018-12-31,2021-11-30,0.02483108
+2018-12-31,2021-12-31,0.024911428
+2018-12-31,2022-01-31,0.025001828
+2018-12-31,2022-02-28,0.025079338
+2018-12-31,2022-03-31,0.025164735
+2018-12-31,2022-04-30,0.025259473
+2018-12-31,2022-05-31,0.025335015
+2018-12-31,2022-06-30,0.025419286
+2018-12-31,2022-07-31,0.025514118
+2018-12-31,2022-08-31,0.02558529
+2018-12-31,2022-09-30,0.02566705
+2018-12-31,2022-10-31,0.025754467
+2018-12-31,2022-11-30,0.025825822
+2018-12-31,2022-12-31,0.025903881
+2018-12-31,2023-01-31,0.025980794
+2018-12-31,2023-02-28,0.026041862
+2018-12-31,2023-03-31,0.026105188
+2018-12-31,2023-04-30,0.026173178
+2018-12-31,2023-05-31,0.026217807
+2018-12-31,2023-06-30,0.026267554
+2018-12-31,2023-07-31,0.026319125
+2018-12-31,2023-08-31,0.026351298
+2018-12-31,2023-09-30,0.026385415
+2018-12-31,2023-10-31,0.026419019
+2018-12-31,2023-11-30,0.026434813
+2018-12-31,2023-12-31,0.026457843
+2018-12-31,2024-01-31,0.026487292
+2018-12-31,2024-02-29,0.026507917
+2018-12-31,2024-03-31,0.026546219
+2018-12-31,2024-04-30,0.02659083
+2018-12-31,2024-05-31,0.02663148
+2018-12-31,2024-06-30,0.026690465
+2018-12-31,2024-07-31,0.026755872
+2018-12-31,2024-08-31,0.026817945
+2018-12-31,2024-09-30,0.026888276
+2018-12-31,2024-10-31,0.026972778
+2018-12-31,2024-11-30,0.027046707
+2018-12-31,2024-12-31,0.027125177
+2018-12-31,2025-01-31,0.027213913
+2018-12-31,2025-02-28,0.027284858
+2018-12-31,2025-03-31,0.027360983
+2018-12-31,2025-04-30,0.027441606
+2018-12-31,2025-05-31,0.027505411
+2018-12-31,2025-06-30,0.027569084
+2018-12-31,2025-07-31,0.027638538
+2018-12-31,2025-08-31,0.027691146
+2018-12-31,2025-09-30,0.027740776
+2018-12-31,2025-10-31,0.027797039
+2018-12-31,2025-11-30,0.027835683
+2018-12-31,2025-12-31,0.02787565
+2018-12-31,2026-01-31,0.027927944
+2018-12-31,2026-02-28,0.027964332
+2018-12-31,2026-03-31,0.028010886
+2018-12-31,2026-04-30,0.028070579
+2018-12-31,2026-05-31,0.028120225
+2018-12-31,2026-06-30,0.028174917
+2018-12-31,2026-07-31,0.028244862
+2018-12-31,2026-08-31,0.028305968
+2018-12-31,2026-09-30,0.028366379
+2018-12-31,2026-10-31,0.028445041
+2018-12-31,2026-11-30,0.028504099
+2018-12-31,2026-12-31,0.028573274
+2018-12-31,2027-01-31,0.028652855
+2018-12-31,2027-02-28,0.028709066
+2018-12-31,2027-03-31,0.028768753
+2018-12-31,2027-04-30,0.028838716
+2018-12-31,2027-05-31,0.028895317
+2018-12-31,2027-06-30,0.028949013
+2018-12-31,2027-07-31,0.029017165
+2018-12-31,2027-08-31,0.029065193
+2018-12-31,2027-09-30,0.029121489
+2018-12-31,2027-10-31,0.02918679
+2018-12-31,2027-11-30,0.029228867
+2018-12-31,2027-12-31,0.029280033
+2018-12-31,2028-01-31,0.029336485
+2018-12-31,2028-02-29,0.029372499
+2018-12-31,2028-03-31,0.02941205
+2018-12-31,2028-04-30,0.029455733
+2018-12-31,2028-05-31,0.029476577
+2018-12-31,2028-06-30,0.029501901
+2018-12-31,2028-07-31,0.029529877
+2018-12-31,2028-08-31,0.029535637
+2018-12-31,2028-09-30,0.029542841
+2018-12-31,2028-10-31,0.029551249
+2019-03-31,2019-03-31,0.024945
+2019-03-31,2019-04-30,0.02489152
+2019-03-31,2019-05-31,0.024771733
+2019-03-31,2019-06-30,0.024582272
+2019-03-31,2019-07-31,0.024328008
+2019-03-31,2019-08-31,0.023998301
+2019-03-31,2019-09-30,0.023660731
+2019-03-31,2019-10-31,0.023396931
+2019-03-31,2019-11-30,0.023151814
+2019-03-31,2019-12-31,0.022971512
+2019-03-31,2020-01-31,0.022782155
+2019-03-31,2020-02-29,0.022494487
+2019-03-31,2020-03-31,0.022152655
+2019-03-31,2020-04-30,0.021829458
+2019-03-31,2020-05-31,0.021435254
+2019-03-31,2020-06-30,0.021104733
+2019-03-31,2020-07-31,0.020837082
+2019-03-31,2020-08-31,0.020584806
+2019-03-31,2020-09-30,0.020397133
+2019-03-31,2020-10-31,0.020261941
+2019-03-31,2020-11-30,0.020144435
+2019-03-31,2020-12-31,0.020070981
+2019-03-31,2021-01-31,0.020026739
+2019-03-31,2021-02-28,0.019992041
+2019-03-31,2021-03-31,0.019984558
+2019-03-31,2021-04-30,0.019994914
+2019-03-31,2021-05-31,0.019997522
+2019-03-31,2021-06-30,0.02001013
+2019-03-31,2021-07-31,0.02003632
+2019-03-31,2021-08-31,0.020053485
+2019-03-31,2021-09-30,0.020082594
+2019-03-31,2021-10-31,0.020131203
+2019-03-31,2021-11-30,0.020172533
+2019-03-31,2021-12-31,0.020226744
+2019-03-31,2022-01-31,0.020303639
+2019-03-31,2022-02-28,0.020370691
+2019-03-31,2022-03-31,0.020446077
+2019-03-31,2022-04-30,0.020536287
+2019-03-31,2022-05-31,0.020614892
+2019-03-31,2022-06-30,0.020689866
+2019-03-31,2022-07-31,0.020778418
+2019-03-31,2022-08-31,0.020846791
+2019-03-31,2022-09-30,0.020914914
+2019-03-31,2022-10-31,0.020990694
+2019-03-31,2022-11-30,0.021047416
+2019-03-31,2022-12-31,0.021104513
+2019-03-31,2023-01-31,0.02116763
+2019-03-31,2023-02-28,0.021211604
+2019-03-31,2023-03-31,0.021259455
+2019-03-31,2023-04-30,0.021318889
+2019-03-31,2023-05-31,0.021367892
+2019-03-31,2023-06-30,0.02142711
+2019-03-31,2023-07-31,0.021504351
+2019-03-31,2023-08-31,0.021568059
+2019-03-31,2023-09-30,0.021649927
+2019-03-31,2023-10-31,0.021741917
+2019-03-31,2023-11-30,0.021818374
+2019-03-31,2023-12-31,0.021913507
+2019-03-31,2024-01-31,0.022014898
+2019-03-31,2024-02-29,0.022097227
+2019-03-31,2024-03-31,0.022196033
+2019-03-31,2024-04-30,0.022295854
+2019-03-31,2024-05-31,0.022376695
+2019-03-31,2024-06-30,0.022464553
+2019-03-31,2024-07-31,0.022555293
+2019-03-31,2024-08-31,0.02262834
+2019-03-31,2024-09-30,0.022704261
+2019-03-31,2024-10-31,0.022780938
+2019-03-31,2024-11-30,0.022848477
+2019-03-31,2024-12-31,0.022915243
+2019-03-31,2025-01-31,0.02298441
+2019-03-31,2025-02-28,0.023038325
+2019-03-31,2025-03-31,0.023098255
+2019-03-31,2025-04-30,0.023162625
+2019-03-31,2025-05-31,0.023214117
+2019-03-31,2025-06-30,0.023272747
+2019-03-31,2025-07-31,0.023337405
+2019-03-31,2025-08-31,0.023397062
+2019-03-31,2025-09-30,0.023459822
+2019-03-31,2025-10-31,0.023528381
+2019-03-31,2025-11-30,0.023586133
+2019-03-31,2025-12-31,0.023646953
+2019-03-31,2026-01-31,0.023712921
+2019-03-31,2026-02-28,0.023761849
+2019-03-31,2026-03-31,0.023817087
+2019-03-31,2026-04-30,0.023876115
+2019-03-31,2026-05-31,0.023932725
+2019-03-31,2026-06-30,0.023993046
+2019-03-31,2026-07-31,0.024061966
+2019-03-31,2026-08-31,0.024120906
+2019-03-31,2026-09-30,0.024185464
+2019-03-31,2026-10-31,0.024259166
+2019-03-31,2026-11-30,0.024317253
+2019-03-31,2026-12-31,0.024378707
+2019-03-31,2027-01-31,0.024453865
+2019-03-31,2027-02-28,0.024507981
+2019-03-31,2027-03-31,0.024568087
+2019-03-31,2027-04-30,0.024631878
+2019-03-31,2027-05-31,0.024688285
+2019-03-31,2027-06-30,0.024747789
+2019-03-31,2027-07-31,0.024816816
+2019-03-31,2027-08-31,0.024872518
+2019-03-31,2027-09-30,0.024932923
+2019-03-31,2027-10-31,0.025010062
+2019-03-31,2027-11-30,0.025069867
+2019-03-31,2027-12-31,0.0251336
+2019-03-31,2028-01-31,0.025212413
+2019-03-31,2028-02-29,0.02527194
+2019-03-31,2028-03-31,0.025335348
+2019-03-31,2028-04-30,0.025408146
+2019-03-31,2028-05-31,0.025462895
+2019-03-31,2028-06-30,0.02551984
+2019-03-31,2028-07-31,0.025585973
+2019-03-31,2028-08-31,0.025630483
+2019-03-31,2028-09-30,0.02568168
+2019-03-31,2028-10-31,0.025734451
+2019-03-31,2028-11-30,0.02576554
+2019-03-31,2028-12-31,0.025800775
+2019-03-31,2029-01-31,0.025836318
+2019-06-30,2019-06-30,0.02398
+2019-06-30,2019-07-31,0.021777331
+2019-06-30,2019-08-31,0.020074689
+2019-06-30,2019-09-30,0.019217771
+2019-06-30,2019-10-31,0.018776288
+2019-06-30,2019-11-30,0.018341707
+2019-06-30,2019-12-31,0.017861514
+2019-06-30,2020-01-31,0.017372787
+2019-06-30,2020-02-29,0.016830037
+2019-06-30,2020-03-31,0.016338947
+2019-06-30,2020-04-30,0.015949368
+2019-06-30,2020-05-31,0.015567882
+2019-06-30,2020-06-30,0.015286884
+2019-06-30,2020-07-31,0.015076163
+2019-06-30,2020-08-31,0.014876784
+2019-06-30,2020-09-30,0.014722823
+2019-06-30,2020-10-31,0.014607306
+2019-06-30,2020-11-30,0.014505698
+2019-06-30,2020-12-31,0.014442792
+2019-06-30,2021-01-31,0.014409795
+2019-06-30,2021-02-28,0.014389545
+2019-06-30,2021-03-31,0.014402388
+2019-06-30,2021-04-30,0.014447137
+2019-06-30,2021-05-31,0.014497754
+2019-06-30,2021-06-30,0.014565397
+2019-06-30,2021-07-31,0.014649652
+2019-06-30,2021-08-31,0.014721036
+2019-06-30,2021-09-30,0.014795678
+2019-06-30,2021-10-31,0.014888104
+2019-06-30,2021-11-30,0.014961853
+2019-06-30,2021-12-31,0.015039089
+2019-06-30,2022-01-31,0.015134634
+2019-06-30,2022-02-28,0.015213303
+2019-06-30,2022-03-31,0.015297787
+2019-06-30,2022-04-30,0.015399544
+2019-06-30,2022-05-31,0.015493591
+2019-06-30,2022-06-30,0.015588224
+2019-06-30,2022-07-31,0.015704576
+2019-06-30,2022-08-31,0.015803367
+2019-06-30,2022-09-30,0.015905772
+2019-06-30,2022-10-31,0.016023094
+2019-06-30,2022-11-30,0.01612334
+2019-06-30,2022-12-31,0.016226948
+2019-06-30,2023-01-31,0.01634306
+2019-06-30,2023-02-28,0.016440022
+2019-06-30,2023-03-31,0.016540164
+2019-06-30,2023-04-30,0.016651539
+2019-06-30,2023-05-31,0.016746363
+2019-06-30,2023-06-30,0.016844401
+2019-06-30,2023-07-31,0.016958291
+2019-06-30,2023-08-31,0.017051976
+2019-06-30,2023-09-30,0.017163761
+2019-06-30,2023-10-31,0.017281271
+2019-06-30,2023-11-30,0.017379001
+2019-06-30,2023-12-31,0.017495629
+2019-06-30,2024-01-31,0.017615179
+2019-06-30,2024-02-29,0.017712568
+2019-06-30,2024-03-31,0.017827521
+2019-06-30,2024-04-30,0.017942726
+2019-06-30,2024-05-31,0.018039084
+2019-06-30,2024-06-30,0.018145168
+2019-06-30,2024-07-31,0.018256448
+2019-06-30,2024-08-31,0.01835153
+2019-06-30,2024-09-30,0.018452149
+2019-06-30,2024-10-31,0.01855442
+2019-06-30,2024-11-30,0.018650364
+2019-06-30,2024-12-31,0.018745258
+2019-06-30,2025-01-31,0.018841848
+2019-06-30,2025-02-28,0.018921504
+2019-06-30,2025-03-31,0.019007305
+2019-06-30,2025-04-30,0.019094883
+2019-06-30,2025-05-31,0.019165746
+2019-06-30,2025-06-30,0.01924195
+2019-06-30,2025-07-31,0.019322369
+2019-06-30,2025-08-31,0.019397353
+2019-06-30,2025-09-30,0.019474873
+2019-06-30,2025-10-31,0.019559027
+2019-06-30,2025-11-30,0.019633555
+2019-06-30,2025-12-31,0.019713283
+2019-06-30,2026-01-31,0.019801071
+2019-06-30,2026-02-28,0.019873221
+2019-06-30,2026-03-31,0.019953106
+2019-06-30,2026-04-30,0.020033486
+2019-06-30,2026-05-31,0.020113302
+2019-06-30,2026-06-30,0.020192277
+2019-06-30,2026-07-31,0.020277081
+2019-06-30,2026-08-31,0.020351787
+2019-06-30,2026-09-30,0.020430508
+2019-06-30,2026-10-31,0.020517531
+2019-06-30,2026-11-30,0.020588902
+2019-06-30,2026-12-31,0.020662454
+2019-06-30,2027-01-31,0.020750504
+2019-06-30,2027-02-28,0.020816739
+2019-06-30,2027-03-31,0.020888286
+2019-06-30,2027-04-30,0.020961749
+2019-06-30,2027-05-31,0.021028259
+2019-06-30,2027-06-30,0.021096222
+2019-06-30,2027-07-31,0.021172735
+2019-06-30,2027-08-31,0.021235594
+2019-06-30,2027-09-30,0.021302202
+2019-06-30,2027-10-31,0.021385954
+2019-06-30,2027-11-30,0.021452331
+2019-06-30,2027-12-31,0.021522434
+2019-06-30,2028-01-31,0.021608814
+2019-06-30,2028-02-29,0.021676789
+2019-06-30,2028-03-31,0.021749612
+2019-06-30,2028-04-30,0.021833891
+2019-06-30,2028-05-31,0.02190233
+2019-06-30,2028-06-30,0.021974191
+2019-06-30,2028-07-31,0.022057691
+2019-06-30,2028-08-31,0.022119705
+2019-06-30,2028-09-30,0.022191442
+2019-06-30,2028-10-31,0.022264865
+2019-06-30,2028-11-30,0.022316261
+2019-06-30,2028-12-31,0.022374486
+2019-06-30,2029-01-31,0.022431382
+2019-06-30,2029-02-28,0.022466052
+2019-06-30,2029-03-31,0.022499899
+2019-06-30,2029-04-30,0.02253658
+2019-09-30,2019-09-30,0.0201563
+2019-09-30,2019-10-31,0.01929705
+2019-09-30,2019-11-30,0.018345659
+2019-09-30,2019-12-31,0.017591841
+2019-09-30,2020-01-31,0.016950253
+2019-09-30,2020-02-29,0.01626537
+2019-09-30,2020-03-31,0.015647912
+2019-09-30,2020-04-30,0.0151825
+2019-09-30,2020-05-31,0.014766447
+2019-09-30,2020-06-30,0.014503776
+2019-09-30,2020-07-31,0.014330128
+2019-09-30,2020-08-31,0.014164645
+2019-09-30,2020-09-30,0.014021194
+2019-09-30,2020-10-31,0.013882565
+2019-09-30,2020-11-30,0.013715377
+2019-09-30,2020-12-31,0.013540299
+2019-09-30,2021-01-31,0.013320197
+2019-09-30,2021-02-28,0.013056935
+2019-09-30,2021-03-31,0.012818704
+2019-09-30,2021-04-30,0.012578531
+2019-09-30,2021-05-31,0.012360789
+2019-09-30,2021-06-30,0.012237066
+2019-09-30,2021-07-31,0.012201564
+2019-09-30,2021-08-31,0.012217323
+2019-09-30,2021-09-30,0.012292707
+2019-09-30,2021-10-31,0.012414584
+2019-09-30,2021-11-30,0.01251711
+2019-09-30,2021-12-31,0.012612367
+2019-09-30,2022-01-31,0.012711587
+2019-09-30,2022-02-28,0.012771044
+2019-09-30,2022-03-31,0.012816364
+2019-09-30,2022-04-30,0.012855978
+2019-09-30,2022-05-31,0.012867151
+2019-09-30,2022-06-30,0.012870966
+2019-09-30,2022-07-31,0.012872829
+2019-09-30,2022-08-31,0.012853276
+2019-09-30,2022-09-30,0.012838073
+2019-09-30,2022-10-31,0.012831967
+2019-09-30,2022-11-30,0.012815942
+2019-09-30,2022-12-31,0.012813767
+2019-09-30,2023-01-31,0.012826043
+2019-09-30,2023-02-28,0.012826577
+2019-09-30,2023-03-31,0.012838441
+2019-09-30,2023-04-30,0.012863053
+2019-09-30,2023-05-31,0.012873872
+2019-09-30,2023-06-30,0.012893827
+2019-09-30,2023-07-31,0.012926232
+2019-09-30,2023-08-31,0.012942732
+2019-09-30,2023-09-30,0.012969924
+2019-09-30,2023-10-31,0.01300938
+2019-09-30,2023-11-30,0.013034467
+2019-09-30,2023-12-31,0.013073964
+2019-09-30,2024-01-31,0.013125596
+2019-09-30,2024-02-29,0.013160682
+2019-09-30,2024-03-31,0.013209999
+2019-09-30,2024-04-30,0.013268747
+2019-09-30,2024-05-31,0.013311241
+2019-09-30,2024-06-30,0.013364843
+2019-09-30,2024-07-31,0.013428703
+2019-09-30,2024-08-31,0.013476331
+2019-09-30,2024-09-30,0.013532821
+2019-09-30,2024-10-31,0.013596932
+2019-09-30,2024-11-30,0.013650204
+2019-09-30,2024-12-31,0.013707623
+2019-09-30,2025-01-31,0.013771521
+2019-09-30,2025-02-28,0.013816757
+2019-09-30,2025-03-31,0.013868537
+2019-09-30,2025-04-30,0.013925814
+2019-09-30,2025-05-31,0.013964027
+2019-09-30,2025-06-30,0.014009057
+2019-09-30,2025-07-31,0.014061166
+2019-09-30,2025-08-31,0.014100944
+2019-09-30,2025-09-30,0.014145323
+2019-09-30,2025-10-31,0.014198598
+2019-09-30,2025-11-30,0.01423781
+2019-09-30,2025-12-31,0.014284591
+2019-09-30,2026-01-31,0.014342096
+2019-09-30,2026-02-28,0.014382698
+2019-09-30,2026-03-31,0.014433814
+2019-09-30,2026-04-30,0.014491845
+2019-09-30,2026-05-31,0.014545188
+2019-09-30,2026-06-30,0.014603295
+2019-09-30,2026-07-31,0.014671732
+2019-09-30,2026-08-31,0.01472905
+2019-09-30,2026-09-30,0.014793294
+2019-09-30,2026-10-31,0.014867699
+2019-09-30,2026-11-30,0.014924565
+2019-09-30,2026-12-31,0.014985063
+2019-09-30,2027-01-31,0.015059286
+2019-09-30,2027-02-28,0.015110074
+2019-09-30,2027-03-31,0.01516651
+2019-09-30,2027-04-30,0.015226618
+2019-09-30,2027-05-31,0.015275866
+2019-09-30,2027-06-30,0.01532774
+2019-09-30,2027-07-31,0.01538876
+2019-09-30,2027-08-31,0.015433647
+2019-09-30,2027-09-30,0.015483826
+2019-09-30,2027-10-31,0.015549878
+2019-09-30,2027-11-30,0.01559744
+2019-09-30,2027-12-31,0.015650767
+2019-09-30,2028-01-31,0.015719779
+2019-09-30,2028-02-29,0.015769736
+2019-09-30,2028-03-31,0.015826574
+2019-09-30,2028-04-30,0.015896171
+2019-09-30,2028-05-31,0.015949704
+2019-09-30,2028-06-30,0.016009794
+2019-09-30,2028-07-31,0.016084016
+2019-09-30,2028-08-31,0.016138114
+2019-09-30,2028-09-30,0.016203933
+2019-09-30,2028-10-31,0.016274593
+2019-09-30,2028-11-30,0.016322735
+2019-09-30,2028-12-31,0.016379253
+2019-09-30,2029-01-31,0.016436802
+2019-09-30,2029-02-28,0.016471086
+2019-09-30,2029-03-31,0.016506203
+2019-09-30,2029-04-30,0.016545813
+2019-09-30,2029-05-31,0.016562203
+2019-09-30,2029-06-30,0.016580988
+2019-09-30,2029-07-31,0.016602868
+2019-12-31,2019-12-31,0.017625
+2019-12-31,2020-01-31,0.017064
+2019-12-31,2020-02-29,0.016577
+2019-12-31,2020-03-31,0.016321
+2019-12-31,2020-04-30,0.016205
+2019-12-31,2020-05-31,0.016101
+2019-12-31,2020-06-30,0.015985
+2019-12-31,2020-07-31,0.015839
+2019-12-31,2020-08-31,0.015638
+2019-12-31,2020-09-30,0.015436
+2019-12-31,2020-10-31,0.015234
+2019-12-31,2020-11-30,0.01506
+2019-12-31,2020-12-31,0.01494
+2019-12-31,2021-01-31,0.014853
+2019-12-31,2021-02-28,0.014766
+2019-12-31,2021-03-31,0.014707
+2019-12-31,2021-04-30,0.014671
+2019-12-31,2021-05-31,0.014644
+2019-12-31,2021-06-30,0.014646
+2019-12-31,2021-07-31,0.014675
+2019-12-31,2021-08-31,0.014701
+2019-12-31,2021-09-30,0.014741
+2019-12-31,2021-10-31,0.0148
+2019-12-31,2021-11-30,0.014847
+2019-12-31,2021-12-31,0.014903
+2019-12-31,2022-01-31,0.014975
+2019-12-31,2022-02-28,0.015033
+2019-12-31,2022-03-31,0.0151
+2019-12-31,2022-04-30,0.015182
+2019-12-31,2022-05-31,0.015252
+2019-12-31,2022-06-30,0.01533
+2019-12-31,2022-07-31,0.015428
+2019-12-31,2022-08-31,0.01551
+2019-12-31,2022-09-30,0.015612
+2019-12-31,2022-10-31,0.015727
+2019-12-31,2022-11-30,0.015824
+2019-12-31,2022-12-31,0.015941
+2019-12-31,2023-01-31,0.016058
+2019-12-31,2023-02-28,0.016154
+2019-12-31,2023-03-31,0.016251
+2019-12-31,2023-04-30,0.016348
+2019-12-31,2023-05-31,0.016422
+2019-12-31,2023-06-30,0.016502
+2019-12-31,2023-07-31,0.016582
+2019-12-31,2023-08-31,0.01664
+2019-12-31,2023-09-30,0.0167
+2019-12-31,2023-10-31,0.016761
+2019-12-31,2023-11-30,0.016802
+2019-12-31,2023-12-31,0.01685
+2019-12-31,2024-01-31,0.016904
+2019-12-31,2024-02-29,0.016951
+2019-12-31,2024-03-31,0.01701
+2019-12-31,2024-04-30,0.017081
+2019-12-31,2024-05-31,0.017141
+2019-12-31,2024-06-30,0.017213
+2019-12-31,2024-07-31,0.017295
+2019-12-31,2024-08-31,0.017372
+2019-12-31,2024-09-30,0.017455
+2019-12-31,2024-10-31,0.017546
+2019-12-31,2024-11-30,0.017626
+2019-12-31,2024-12-31,0.017712
+2019-12-31,2025-01-31,0.017804
+2019-12-31,2025-02-28,0.017878
+2019-12-31,2025-03-31,0.017957
+2019-12-31,2025-04-30,0.018036
+2019-12-31,2025-05-31,0.018111
+2019-12-31,2025-06-30,0.018183
+2019-12-31,2025-07-31,0.018261
+2019-12-31,2025-08-31,0.018326
+2019-12-31,2025-09-30,0.018394
+2019-12-31,2025-10-31,0.01847
+2019-12-31,2025-11-30,0.018529
+2019-12-31,2025-12-31,0.018591
+2019-12-31,2026-01-31,0.018666
+2019-12-31,2026-02-28,0.018719
+2019-12-31,2026-03-31,0.018771
+2019-12-31,2026-04-30,0.018835
+2019-12-31,2026-05-31,0.018884
+2019-12-31,2026-06-30,0.01893
+2019-12-31,2026-07-31,0.018982
+2019-12-31,2026-08-31,0.019017
+2019-12-31,2026-09-30,0.019054
+2019-12-31,2026-10-31,0.019102
+2019-12-31,2026-11-30,0.019131
+2019-12-31,2026-12-31,0.019165
+2019-12-31,2027-01-31,0.019209
+2019-12-31,2027-02-28,0.019238
+2019-12-31,2027-03-31,0.019275
+2019-12-31,2027-04-30,0.019324
+2019-12-31,2027-05-31,0.019363
+2019-12-31,2027-06-30,0.019407
+2019-12-31,2027-07-31,0.019468
+2019-12-31,2027-08-31,0.019514
+2019-12-31,2027-09-30,0.019568
+2019-12-31,2027-10-31,0.019637
+2019-12-31,2027-11-30,0.019691
+2019-12-31,2027-12-31,0.019752
+2019-12-31,2028-01-31,0.019827
+2019-12-31,2028-02-29,0.019886
+2019-12-31,2028-03-31,0.019953
+2019-12-31,2028-04-30,0.020029
+2019-12-31,2028-05-31,0.02009
+2019-12-31,2028-06-30,0.020163
+2019-12-31,2028-07-31,0.020245
+2019-12-31,2028-08-31,0.020311
+2019-12-31,2028-09-30,0.020388
+2019-12-31,2028-10-31,0.020473
+2019-12-31,2028-11-30,0.020541
+2019-12-31,2028-12-31,0.020618
+2019-12-31,2029-01-31,0.020696
+2019-12-31,2029-02-28,0.020757
+2019-12-31,2029-03-31,0.020823
+2019-12-31,2029-04-30,0.020886
+2019-12-31,2029-05-31,0.020925
+2019-12-31,2029-06-30,0.020963
+2019-12-31,2029-07-31,0.020999
+2019-12-31,2029-08-31,0.021008
+2019-12-31,2029-09-30,0.021012
+2019-12-31,2029-10-31,0.021014
+2020-03-31,2020-03-31,0.0099288
+2020-03-31,2020-04-30,0.00721579
+2020-03-31,2020-05-31,0.004375785
+2020-03-31,2020-06-30,0.002657687
+2020-03-31,2020-07-31,0.001875583
+2020-03-31,2020-08-31,0.00171193
+2020-03-31,2020-09-30,0.002004181
+2020-03-31,2020-10-31,0.002355947
+2020-03-31,2020-11-30,0.00250964
+2020-03-31,2020-12-31,0.002449687
+2020-03-31,2021-01-31,0.002298127
+2020-03-31,2021-02-28,0.002142447
+2020-03-31,2021-03-31,0.002063692
+2020-03-31,2021-04-30,0.002032988
+2020-03-31,2021-05-31,0.002040198
+2020-03-31,2021-06-30,0.002091346
+2020-03-31,2021-07-31,0.002178959
+2020-03-31,2021-08-31,0.00227545
+2020-03-31,2021-09-30,0.002382444
+2020-03-31,2021-10-31,0.002510865
+2020-03-31,2021-11-30,0.002616493
+2020-03-31,2021-12-31,0.002712552
+2020-03-31,2022-01-31,0.002815544
+2020-03-31,2022-02-28,0.002894023
+2020-03-31,2022-03-31,0.00296657
+2020-03-31,2022-04-30,0.003045276
+2020-03-31,2022-05-31,0.00311595
+2020-03-31,2022-06-30,0.003185233
+2020-03-31,2022-07-31,0.003271851
+2020-03-31,2022-08-31,0.003352846
+2020-03-31,2022-09-30,0.003442563
+2020-03-31,2022-10-31,0.003552207
+2020-03-31,2022-11-30,0.003660943
+2020-03-31,2022-12-31,0.003780527
+2020-03-31,2023-01-31,0.003920985
+2020-03-31,2023-02-28,0.004057277
+2020-03-31,2023-03-31,0.00419913
+2020-03-31,2023-04-30,0.004351989
+2020-03-31,2023-05-31,0.004491638
+2020-03-31,2023-06-30,0.004624289
+2020-03-31,2023-07-31,0.004763642
+2020-03-31,2023-08-31,0.00488018
+2020-03-31,2023-09-30,0.005006363
+2020-03-31,2023-10-31,0.005125504
+2020-03-31,2023-11-30,0.005226444
+2020-03-31,2023-12-31,0.005338217
+2020-03-31,2024-01-31,0.005444276
+2020-03-31,2024-02-29,0.005534363
+2020-03-31,2024-03-31,0.005637195
+2020-03-31,2024-04-30,0.005737657
+2020-03-31,2024-05-31,0.005829825
+2020-03-31,2024-06-30,0.005931302
+2020-03-31,2024-07-31,0.006036675
+2020-03-31,2024-08-31,0.006137312
+2020-03-31,2024-09-30,0.006243167
+2020-03-31,2024-10-31,0.006349349
+2020-03-31,2024-11-30,0.006462349
+2020-03-31,2024-12-31,0.006574885
+2020-03-31,2025-01-31,0.006687974
+2020-03-31,2025-02-28,0.006796459
+2020-03-31,2025-03-31,0.006912425
+2020-03-31,2025-04-30,0.007025517
+2020-03-31,2025-05-31,0.007129617
+2020-03-31,2025-06-30,0.007233074
+2020-03-31,2025-07-31,0.007331572
+2020-03-31,2025-08-31,0.007431004
+2020-03-31,2025-09-30,0.007524174
+2020-03-31,2025-10-31,0.007614544
+2020-03-31,2025-11-30,0.007699532
+2020-03-31,2025-12-31,0.007781822
+2020-03-31,2026-01-31,0.007863886
+2020-03-31,2026-02-28,0.007935673
+2020-03-31,2026-03-31,0.008008662
+2020-03-31,2026-04-30,0.008076252
+2020-03-31,2026-05-31,0.008147773
+2020-03-31,2026-06-30,0.008214532
+2020-03-31,2026-07-31,0.008281169
+2020-03-31,2026-08-31,0.00834367
+2020-03-31,2026-09-30,0.008405472
+2020-03-31,2026-10-31,0.008469289
+2020-03-31,2026-11-30,0.008524731
+2020-03-31,2026-12-31,0.008578283
+2020-03-31,2027-01-31,0.008638903
+2020-03-31,2027-02-28,0.008687306
+2020-03-31,2027-03-31,0.008737124
+2020-03-31,2027-04-30,0.008786089
+2020-03-31,2027-05-31,0.00883361
+2020-03-31,2027-06-30,0.008880697
+2020-03-31,2027-07-31,0.008931231
+2020-03-31,2027-08-31,0.008974596
+2020-03-31,2027-09-30,0.009017884
+2020-03-31,2027-10-31,0.009069383
+2020-03-31,2027-11-30,0.009110524
+2020-03-31,2027-12-31,0.009151278
+2020-03-31,2028-01-31,0.009198802
+2020-03-31,2028-02-29,0.009235455
+2020-03-31,2028-03-31,0.009272575
+2020-03-31,2028-04-30,0.009313579
+2020-03-31,2028-05-31,0.009345534
+2020-03-31,2028-06-30,0.009377959
+2020-03-31,2028-07-31,0.00941496
+2020-03-31,2028-08-31,0.009441593
+2020-03-31,2028-09-30,0.009472408
+2020-03-31,2028-10-31,0.009504349
+2020-03-31,2028-11-30,0.009526558
+2020-03-31,2028-12-31,0.009552576
+2020-03-31,2029-01-31,0.009579233
+2020-03-31,2029-02-28,0.009596793
+2020-03-31,2029-03-31,0.009615322
+2020-03-31,2029-04-30,0.009636685
+2020-03-31,2029-05-31,0.009648834
+2020-03-31,2029-06-30,0.009663123
+2020-03-31,2029-07-31,0.009678714
+2020-03-31,2029-08-31,0.009685398
+2020-03-31,2029-09-30,0.009692891
+2020-03-31,2029-10-31,0.009701305
+2020-03-31,2029-11-30,0.009700065
+2020-03-31,2029-12-31,0.009698558
+2020-03-31,2030-01-31,0.009697742
+2020-06-30,2020-06-30,0.0016225
+2020-06-30,2020-07-31,0.001656274
+2020-06-30,2020-08-31,0.001652379
+2020-06-30,2020-09-30,0.001645998
+2020-06-30,2020-10-31,0.001665095
+2020-06-30,2020-11-30,0.001681495
+2020-06-30,2020-12-31,0.0016911
+2020-06-30,2021-01-31,0.001636917
+2020-06-30,2021-02-28,0.001470214
+2020-06-30,2021-03-31,0.001273592
+2020-06-30,2021-04-30,0.001080247
+2020-06-30,2021-05-31,0.000947968
+2020-06-30,2021-06-30,0.000922556
+2020-06-30,2021-07-31,0.000957331
+2020-06-30,2021-08-31,0.001000295
+2020-06-30,2021-09-30,0.00104759
+2020-06-30,2021-10-31,0.001097235
+2020-06-30,2021-11-30,0.001116091
+2020-06-30,2021-12-31,0.001123699
+2020-06-30,2022-01-31,0.001127481
+2020-06-30,2022-02-28,0.001112986
+2020-06-30,2022-03-31,0.001102015
+2020-06-30,2022-04-30,0.00109578
+2020-06-30,2022-05-31,0.001078115
+2020-06-30,2022-06-30,0.001073387
+2020-06-30,2022-07-31,0.001087516
+2020-06-30,2022-08-31,0.001101083
+2020-06-30,2022-09-30,0.001137067
+2020-06-30,2022-10-31,0.001199583
+2020-06-30,2022-11-30,0.001257058
+2020-06-30,2022-12-31,0.001332508
+2020-06-30,2023-01-31,0.001431872
+2020-06-30,2023-02-28,0.001519255
+2020-06-30,2023-03-31,0.001620612
+2020-06-30,2023-04-30,0.001744069
+2020-06-30,2023-05-31,0.001856024
+2020-06-30,2023-06-30,0.001977322
+2020-06-30,2023-07-31,0.002120002
+2020-06-30,2023-08-31,0.002239155
+2020-06-30,2023-09-30,0.002379663
+2020-06-30,2023-10-31,0.002525614
+2020-06-30,2023-11-30,0.002649134
+2020-06-30,2023-12-31,0.00279615
+2020-06-30,2024-01-31,0.002946777
+2020-06-30,2024-02-29,0.003073689
+2020-06-30,2024-03-31,0.003224791
+2020-06-30,2024-04-30,0.003377488
+2020-06-30,2024-05-31,0.003511641
+2020-06-30,2024-06-30,0.003661988
+2020-06-30,2024-07-31,0.003822645
+2020-06-30,2024-08-31,0.003970583
+2020-06-30,2024-09-30,0.004130801
+2020-06-30,2024-10-31,0.004296234
+2020-06-30,2024-11-30,0.004465725
+2020-06-30,2024-12-31,0.004637583
+2020-06-30,2025-01-31,0.004814313
+2020-06-30,2025-02-28,0.00497729
+2020-06-30,2025-03-31,0.005155268
+2020-06-30,2025-04-30,0.005335139
+2020-06-30,2025-05-31,0.005497508
+2020-06-30,2025-06-30,0.005665142
+2020-06-30,2025-07-31,0.005830764
+2020-06-30,2025-08-31,0.005993186
+2020-06-30,2025-09-30,0.006148503
+2020-06-30,2025-10-31,0.006302653
+2020-06-30,2025-11-30,0.006440682
+2020-06-30,2025-12-31,0.006575572
+2020-06-30,2026-01-31,0.006711834
+2020-06-30,2026-02-28,0.006822192
+2020-06-30,2026-03-31,0.0069351
+2020-06-30,2026-04-30,0.007041244
+2020-06-30,2026-05-31,0.007143822
+2020-06-30,2026-06-30,0.007239995
+2020-06-30,2026-07-31,0.00733934
+2020-06-30,2026-08-31,0.007424921
+2020-06-30,2026-09-30,0.007513267
+2020-06-30,2026-10-31,0.007610081
+2020-06-30,2026-11-30,0.007688892
+2020-06-30,2026-12-31,0.007770406
+2020-06-30,2027-01-31,0.007868546
+2020-06-30,2027-02-28,0.007942557
+2020-06-30,2027-03-31,0.008023195
+2020-06-30,2027-04-30,0.00810656
+2020-06-30,2027-05-31,0.008182253
+2020-06-30,2027-06-30,0.008259643
+2020-06-30,2027-07-31,0.008346392
+2020-06-30,2027-08-31,0.008416734
+2020-06-30,2027-09-30,0.008490546
+2020-06-30,2027-10-31,0.008582572
+2020-06-30,2027-11-30,0.008653608
+2020-06-30,2027-12-31,0.008728032
+2020-06-30,2028-01-31,0.008819203
+2020-06-30,2028-02-29,0.008888316
+2020-06-30,2028-03-31,0.008962062
+2020-06-30,2028-04-30,0.009047328
+2020-06-30,2028-05-31,0.009113438
+2020-06-30,2028-06-30,0.009183071
+2020-06-30,2028-07-31,0.009264545
+2020-06-30,2028-08-31,0.009321866
+2020-06-30,2028-09-30,0.009388665
+2020-06-30,2028-10-31,0.00945829
+2020-06-30,2028-11-30,0.009503968
+2020-06-30,2028-12-31,0.009557156
+2020-06-30,2029-01-31,0.009611636
+2020-06-30,2029-02-28,0.009643158
+2020-06-30,2029-03-31,0.009676941
+2020-06-30,2029-04-30,0.009717305
+2020-06-30,2029-05-31,0.00973663
+2020-06-30,2029-06-30,0.00976192
+2020-06-30,2029-07-31,0.009793959
+2020-06-30,2029-08-31,0.009808512
+2020-06-30,2029-09-30,0.009830338
+2020-06-30,2029-10-31,0.009861049
+2020-06-30,2029-11-30,0.009875161
+2020-06-30,2029-12-31,0.009897487
+2020-06-30,2030-01-31,0.009926855
+2020-06-30,2030-02-28,0.009940479
+2020-06-30,2030-03-31,0.009958726
+2020-06-30,2030-04-30,0.009983364
\ No newline at end of file
diff --git a/test/output/aspectRatioBand.svg b/test/output/aspectRatioBand.svg
new file mode 100644
index 0000000000..6604463720
--- /dev/null
+++ b/test/output/aspectRatioBand.svg
@@ -0,0 +1,65 @@
+
\ No newline at end of file
diff --git a/test/output/aspectRatioLinear.svg b/test/output/aspectRatioLinear.svg
new file mode 100644
index 0000000000..e7c11fc1e6
--- /dev/null
+++ b/test/output/aspectRatioLinear.svg
@@ -0,0 +1,125 @@
+
\ No newline at end of file
diff --git a/test/output/aspectRatioLog.svg b/test/output/aspectRatioLog.svg
new file mode 100644
index 0000000000..ea188c5b48
--- /dev/null
+++ b/test/output/aspectRatioLog.svg
@@ -0,0 +1,89 @@
+
\ No newline at end of file
diff --git a/test/output/aspectRatioPoint.svg b/test/output/aspectRatioPoint.svg
new file mode 100644
index 0000000000..8b599a6ad4
--- /dev/null
+++ b/test/output/aspectRatioPoint.svg
@@ -0,0 +1,65 @@
+
\ No newline at end of file
diff --git a/test/output/aspectRatioSqrt.svg b/test/output/aspectRatioSqrt.svg
new file mode 100644
index 0000000000..c8ebdfc79d
--- /dev/null
+++ b/test/output/aspectRatioSqrt.svg
@@ -0,0 +1,80 @@
+
\ No newline at end of file
diff --git a/test/output/liborProjections.svg b/test/output/liborProjections.svg
new file mode 100644
index 0000000000..07a355da5e
--- /dev/null
+++ b/test/output/liborProjections.svg
@@ -0,0 +1,3308 @@
+
\ No newline at end of file
diff --git a/test/output/markovChain.svg b/test/output/markovChain.svg
index 86abc10fb6..575735f9d9 100644
--- a/test/output/markovChain.svg
+++ b/test/output/markovChain.svg
@@ -1,4 +1,4 @@
-