OK, maybe someone can explain this to me because it’s bothering me too much. At this point there are enough polls that most people look at meta-analysis of polls. It used to be that was just the Princeton election consortium.. But now there are several different models: from the Upshot to fivethirtyeight.
Upshot and fivethirtyeight seem like the most elaborate models, but it’s driving me crazy that they are highly-autocorrelated. That is to say: if their predictions of the November outcome for Clinton decline today, it’s likely they’ll decline tomorrow, and vice versa.
I find that idea extremely confusing. Poll results can have momentum because they are supposed to represent a real thing that can change. But if you can predict where a prediction is going, the prediction should already be there. If it’s not, it’s clearly leaving information on the table unused. Put more crassly; if you used the fivethirtyeight or upshot model to make a bet about the election each day, I would be able to bet against you and make money consistently. This suggests that the loess curves fivethirtyeight (and Upshot?) are using are not a good job at being adequately responsive.
Ridiculously, this implies that there is a place in this election for meta-analysis of the meta-analysis; the meta-analyzers are leaving information on the table that could be corrected without even looking at the underlying polls, just like they can meta-analyze the polls without looking at data. Fivethirtyeight gives its predictions to a tenth of a percentage; but my first model suggests that their trend estimates are off by at least a half percent just assuming their model to be self-consistent. (That’s obviously not a lot. If you look at the red and blue lines, they’re still almost the same.)
But maybe I’m wrong here. If this were analysis of stock prices, for instance, I’d assume that I was simply not accounting for some tail probability where massive drops are possible but not present in the test data. Maybe being able to predict least-squares error isn’t the same as being able to make money on a bet. (I tried to simulate what I would bet: but I don’t actually know how betting works. I could beat an over-under probability 2/3 of the time.) I’ve done a little hold-one-out testing, but not enough to be sure. I certainly don’t know the right way to correct the problem, although I can make a stab at using linear regression (below). (This an adjustment but not a solution: linear regression on the predictions against 4 days earlier, also suffers the same flaw; another round of regression produces statistically significant corrections in the same direction.)
On the other hand; there are certain things about this kind of predicting that make me think meta-analysts might get have incentives to get it wrong. So much of the commercial point of these things is to be ‘soothing’; wild, random-walk adjustments would not look right. And there’s a heritage here where the prediction lines are expected to have the same gradual slopes and rises as do polling trend averages.
Anyhow, if anyone wants to create that meta-meta-analysis website, I for one promise to refresh it about 6 times a day for the next 4 months. As a first stab, here are some “adjusted” trendlines for the various models out there using the 2016 upshot and fivethirtyeight data; the 2012 fivethirtyeight data; and, as a control, the 2016 electionbettingodds data (which shows some autocorrelation, but no statistically significant trend; my ‘predicted’ line looks basically the same.) The method here is a linear model on logits trained against the current value and the change from 4 days ago.
First the function that creates the model. It’s pretty straightforward: a linear model trained on the change from four days ago. (Most numbers between 1 and 7 are statistically significant for most time series.)
library(jsonlite)
library(dplyr)
library(ggplot2)
library(lubridate)
replot = function(timeseries,normalization = function(d) {qlogis(d)}) {
# Function to normalize a timeseries by have it incorporate information about its own future direction.
# Input a df 'timeseries', which should have two columns: prob and date.
# Use logits for probabilities so random walk hypothesis is reasonable.
as_frame = timeseries %>% mutate(logit=normalization(prob))
# Add 'tomorrow' value to regress against.
ts = as_frame %>% arrange(date) %>% mutate(tomorrow = lead(logit,1))
# Add change in odds terms for each of the past 8 days.
for (i in 1:8) {
ts[[paste0("diff",i)]]=ts$logit-lag(ts$logit,i)
# If 8 days ago doesn't exist, use 7; if seven doesn't exist, use 6; etc.
if (i==1) {
ts[[paste0("diff",i)]][1:i] = 0
} else {
ts[[paste0("diff",i)]][1:i] = ts[[paste0("diff",i-1)]][1:i]
}
}
# I use just 4 days ago as the sole predictor. That seems to work the best on
# this year's upshot and 2012's fivethirtyeight. More terms leads to greater predictive power,
# but seems better to stick to just a single day for simplicity.
# For the same reason, I fix the intercept at zero and the weight
# of today's score at one rather than letting them vary.
odd_model = (lm(tomorrow~ offset(logit) + diff4 + 0,ts))
# Predict from the model, and undo the logit transform.
ts$improved = predict(odd_model,newdata=ts) %>% plogis
plot = ggplot(ts) + geom_line(aes(x=date,y=prob),color='red') + geom_line(aes(x=date,y=improved),color="blue") +
labs(title="old (red) and new (blue) trendlines")
list(plot=plot,ts=ts,model=odd_model)
}
Using this function on the upshot model, Hillary’s chances a couple days ago are about two points higher.
# Upshot: to get data, with d3 loaded on the page:
# JSON.stringify(d3.selectAll(".line--dem").data()[0].map(function(d) {return [d.date,d.dem]}))
upshot_ = fromJSON('[["2016-06-01",0.5835],["2016-06-02",0.5892],["2016-06-03",0.5975],["2016-06-04",0.5983],["2016-06-05",0.6079],["2016-06-06",0.6144],["2016-06-07",0.6198],["2016-06-08",0.6259],["2016-06-09",0.6332],["2016-06-10",0.6423],["2016-06-11",0.6505],["2016-06-12",0.6597],["2016-06-13",0.6714],["2016-06-14",0.6745],["2016-06-15",0.6827],["2016-06-16",0.704],["2016-06-17",0.7105],["2016-06-18",0.7164],["2016-06-19",0.7233],["2016-06-20",0.7363],["2016-06-21",0.7473],["2016-06-22",0.7584],["2016-06-23",0.7627],["2016-06-24",0.7638],["2016-06-25",0.7681],["2016-06-26",0.7782],["2016-06-27",0.782],["2016-06-28",0.7708],["2016-06-29",0.7711],["2016-06-30",0.7718],["2016-07-01",0.7693],["2016-07-02",0.7678],["2016-07-03",0.7724],["2016-07-04",0.7737],["2016-07-05",0.7691],["2016-07-06",0.7569],["2016-07-07",0.7525],["2016-07-08",0.7717],["2016-07-09",0.7706],["2016-07-10",0.7611],["2016-07-11",0.766],["2016-07-12",0.7649],["2016-07-13",0.7601],["2016-07-14",0.7513],["2016-07-15",0.7532],["2016-07-16",0.7537],["2016-07-17",0.754],["2016-07-18",0.7545],["2016-07-19",0.7521],["2016-07-20",0.751],["2016-07-21",0.7434],["2016-07-22",0.7436],["2016-07-23",0.7438],["2016-07-24",0.7417],["2016-07-25",0.6887],["2016-07-26",0.6861],["2016-07-27",0.6896],["2016-07-28",0.6862]]')
# I'm working with logits instead of raw percentages. Not much of a difference, but it lets the random walk assumption stand.
upshot = data.frame(date=date(upshot_[,1]),prob = as.numeric(upshot_[,2]))
upshot_improved = replot(upshot)
print(upshot_improved$plot + labs(title="Raw Upshot percents (red)\nand improved predictions (blue)"))
summary(upshot_improved$model)
##
## Call:
## lm(formula = tomorrow ~ offset(logit) + diff4 + 0, data = ts)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.252997 -0.008330 0.006242 0.023501 0.123345
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## diff4 0.15830 0.05139 3.081 0.0032 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.04688 on 56 degrees of freedom
## (1 observation deleted due to missingness)
## Multiple R-squared: 0.9979, Adjusted R-squared: 0.9978
## F-statistic: 2.602e+04 on 1 and 56 DF, p-value: < 2.2e-16
Next I load the fivethirtyeight data from 2012. That’s not shown in a block, because it’s huge. It’s easy enough to find in the old nytimes site.
old_38 = data.frame(date=date(five_thirty_eight_2012[,1]),prob = as.numeric(five_thirty_eight_2012[,4])/100)
better38 = old_38 %>% replot
better38$plot + labs(title="Old (red) and 'corrected' (blue) trendlines for 538's forecast from 2012.")
summary(better38$model)
##
## Call:
## lm(formula = tomorrow ~ offset(logit) + diff4 + 0, data = ts)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.31892 -0.03869 0.00480 0.05559 0.45021
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## diff4 0.14129 0.03205 4.409 1.91e-05 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.09026 on 158 degrees of freedom
## (1 observation deleted due to missingness)
## Multiple R-squared: 0.9918, Adjusted R-squared: 0.9918
## F-statistic: 1.92e+04 on 1 and 158 DF, p-value: < 2.2e-16
I couldn’t quickly find the fivethirty data in their javascript files, so instead I just pulled the svg locations from their plots and translated those back into percentages using the extreme values.
# This creates the JSON below from fivethirtyeight.com
# JSON.stringify(d3.selectAll("g.candidate.D").selectAll("path.line").attr("d").split(/(?=[LMC])/).slice(2).map(function(string) {return string.replace(/L|M/,"").split(",").map(function(d) {return +d})}))
fivethirty_eight_2016 = fromJSON("[[240.32157070841072,86.65400000000001],[235.29742637304327,85.32200000000002],[230.27328203767578,77.1635],[225.2491377023083,78.329],[220.22499336694082,76.44200000000001],[215.20084903157337,73.6115],[210.17670469620586,70.58675],[205.1525603608384,70.892],[200.12841602547095,66.267],[195.10427169010347,64.75925],[190.08012735473602,63.7695],[185.05598301936854,61.66975000000001],[180.03183868400106,62.52074999999999],[175.00769434863358,53.723999999999975],[169.9835500132661,41.75450000000002],[164.95940567789864,42.20774999999999],[159.93526134253116,40.82025],[154.9111170071637,40.82025],[149.88697267179623,40.76475000000003],[144.86282833642878,41.467749999999995],[139.8386840010613,41.56025],[134.81453966569381,41.56025],[129.79039533032633,41.47700000000001],[124.76625099495887,40.54274999999999],[119.7421066595914,40.76475000000003],[114.71796232422392,40.699999999999996],[109.69381798885647,38.4245],[104.66967365348899,36.46350000000001],[99.64552931812153,38.628],[94.62138498275404,38.184000000000005],[89.59724064738657,40.08025],[84.5730963120191,41.190250000000006],[79.54895197665164,41.71749999999999],[74.52480764128417,41.9025],[69.50066330591669,39.81199999999999],[64.47651897054922,40.85725],[59.45237463518174,43.01250000000001],[54.428230299814274,44.631249999999994],[49.4040859644468,47.508],[44.37994162907933,48.32200000000002],[39.35579729371186,49.93150000000003],[34.33165295834439,51.383750000000006],[29.30750862297692,53.99225000000001],[24.283364287609444,53.52050000000002],[19.259219952241974,52.780499999999996],[14.235075616874504,55.44449999999999],[9.210931281507031,57.68299999999999],[4.186786946139559,61.44774999999999],[-0.8373573892279118,62.20625000000001]]")
plottable = data.frame(x=fivethirty_eight_2016[,1],y=-fivethirty_eight_2016[,2])
maxx = max(plottable$y)
minx = min(plottable$y)
translate = function(x) {
# I'm getting SVG coordinates, but why not translate to probabilies
maxx = max(plottable$y)
minx = min(plottable$y)
slope = (80.3-53.2)/(maxx-minx)
#maxx * slope +80.3 = intercept
intercept = 80.3 - slope*maxx
minx * slope + intercept
x*slope+intercept
}
ts = plottable %>% arrange(x) %>% mutate(
prob=translate(y)/100)
ts$date = (today()-nrow(ts)+1):today()
fivethirtyeight_improved = ts %>% replot
fivethirtyeight_improved$plot + labs(title="Old (red) and improved (blue) trendlines for the fivethirtyeight forecast.")
summary(fivethirtyeight_improved$model)
##
## Call:
## lm(formula = tomorrow ~ offset(logit) + diff4 + 0, data = ts)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.33510 -0.03166 0.00724 0.03528 0.09652
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## diff4 0.12887 0.05307 2.428 0.019 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.07449 on 47 degrees of freedom
## (1 observation deleted due to missingness)
## Multiple R-squared: 0.9949, Adjusted R-squared: 0.9948
## F-statistic: 9232 on 1 and 47 DF, p-value: < 2.2e-16
#foo = replot(upshot)
#foo = replot(foo$ts %>% mutate(prob=improved))
#summary(foo$model)
#foo$plot
Finally, an online aggregation of election odds. This one I’m not hiding because there’s nothing at the
electionbettingodds.com = fromJSON('
[["2015-10-14T00:57:00.000Z",40],
["2015-10-14T01:10:00.000Z",39.8],
["2015-10-15T06:45:00.000Z",42.2],
["2015-10-15T10:47:00.000Z",42.2],
["2015-10-15T14:54:00.000Z",43.7],
["2015-10-15T19:02:00.000Z",43.9],
["2015-10-15T23:10:00.000Z",44.8],
["2015-10-16T03:16:00.000Z",44.3],
["2015-10-16T07:18:00.000Z",43.7],
["2015-10-16T11:25:00.000Z",42.6],
["2015-10-16T15:31:00.000Z",43.3],
["2015-10-16T19:38:00.000Z",43.9],
["2015-10-16T23:44:00.000Z",43.9],
["2015-10-17T03:47:00.000Z",43.7],
["2015-10-17T07:53:00.000Z",43.5],
["2015-10-17T11:59:00.000Z",43.5],
["2015-10-17T16:05:00.000Z",42.4],
["2015-10-17T20:11:00.000Z",42.9],
["2015-10-18T00:13:00.000Z",42.9],
["2015-10-18T04:20:00.000Z",42.9],
["2015-10-18T08:25:00.000Z",43.1],
["2015-10-18T12:31:00.000Z",43.1],
["2015-10-18T16:38:00.000Z",43.3],
["2015-10-18T20:45:00.000Z",43.3],
["2015-10-19T00:52:00.000Z",43.3],
["2015-10-19T04:35:00.000Z",43.3],
["2015-10-19T08:13:00.000Z",43.3],
["2015-10-19T12:16:00.000Z",43.5],
["2015-10-19T16:07:00.000Z",43.5],
["2015-10-19T20:10:00.000Z",42.4],
["2015-10-20T00:13:00.000Z",42.4],
["2015-10-20T04:17:00.000Z",42.4],
["2015-10-20T08:05:00.000Z",42.2],
["2015-10-20T12:17:00.000Z",42.2],
["2015-10-20T16:39:00.000Z",42.4],
["2015-10-20T20:43:00.000Z",42.9],
["2015-10-21T00:47:00.000Z",43.3],
["2015-10-21T13:39:00.000Z",42.7],
["2015-10-21T20:06:00.000Z",48.1],
["2015-10-21T23:53:00.000Z",48.8],
["2015-10-22T08:16:00.000Z",49.3],
["2015-10-22T12:07:00.000Z",49.5],
["2015-10-22T15:34:00.000Z",49],
["2015-10-22T19:26:00.000Z",49],
["2015-10-22T23:16:00.000Z",48.8],
["2015-10-23T04:08:00.000Z",49],
["2015-10-23T08:00:00.000Z",49],
["2015-10-23T11:48:00.000Z",49.3],
["2015-10-23T15:29:00.000Z",48.8],
["2015-10-24T07:52:00.000Z",49.3],
["2015-10-24T11:44:00.000Z",49.3],
["2015-10-24T17:11:00.000Z",49.5],
["2015-10-24T21:00:00.000Z",49.5],
["2015-10-25T00:46:00.000Z",49.5],
["2015-10-25T04:28:00.000Z",49.5],
["2015-10-25T08:26:00.000Z",49.5],
["2015-10-25T15:23:00.000Z",49.5],
["2015-10-25T19:02:00.000Z",49.8],
["2015-10-25T22:46:00.000Z",49.8],
["2015-10-26T02:31:00.000Z",49.8],
["2015-10-26T06:28:00.000Z",49.8],
["2015-10-26T10:15:00.000Z",49.8],
["2015-10-26T14:02:00.000Z",49.8],
["2015-10-26T17:38:00.000Z",49.8],
["2015-10-26T21:23:00.000Z",50.8],
["2015-10-27T01:14:00.000Z",50.6],
["2015-10-27T05:09:00.000Z",50.6],
["2015-10-27T09:14:00.000Z",50.9],
["2015-10-27T13:18:00.000Z",51],
["2015-10-27T17:24:00.000Z",52.2],
["2015-10-27T21:28:00.000Z",51.7],
["2015-10-28T01:33:00.000Z",51.8],
["2015-10-28T05:39:00.000Z",51.8],
["2015-10-28T09:44:00.000Z",51.9],
["2015-10-28T13:50:00.000Z",54.6],
["2015-10-28T17:55:00.000Z",52.2],
["2015-10-28T21:50:00.000Z",52.8],
["2015-10-29T01:31:00.000Z",52.4],
["2015-10-29T05:37:00.000Z",52.2],
["2015-10-29T09:45:00.000Z",52.1],
["2015-10-29T13:48:00.000Z",52.4],
["2015-10-29T17:53:00.000Z",52.8],
["2015-10-29T21:57:00.000Z",52.6],
["2015-10-30T01:57:00.000Z",52.8],
["2015-10-30T06:03:00.000Z",52.6],
["2015-10-30T10:08:00.000Z",52.6],
["2015-10-30T14:07:00.000Z",52.8],
["2015-10-30T18:08:00.000Z",52.8],
["2015-10-30T22:12:00.000Z",52.6],
["2015-10-31T02:17:00.000Z",52.6],
["2015-10-31T06:21:00.000Z",55],
["2015-10-31T10:20:00.000Z",54.8],
["2015-10-31T14:25:00.000Z",54.5],
["2015-10-31T18:24:00.000Z",53.9],
["2015-10-31T22:32:00.000Z",53.9],
["2015-11-01T02:38:00.000Z",53.8],
["2015-11-01T05:46:00.000Z",53.9],
["2015-11-01T10:55:00.000Z",53.3],
["2015-11-01T14:55:00.000Z",53.3],
["2015-11-01T18:42:00.000Z",52.9],
["2015-11-01T22:48:00.000Z",52.9],
["2015-11-02T02:55:00.000Z",52.9],
["2015-11-02T07:01:00.000Z",53.1],
["2015-11-02T11:05:00.000Z",53.1],
["2015-11-02T15:08:00.000Z",52.9],
["2015-11-02T19:12:00.000Z",52.5],
["2015-11-02T23:16:00.000Z",52.8],
["2015-11-03T03:21:00.000Z",52.9],
["2015-11-03T07:25:00.000Z",52.8],
["2015-11-03T11:29:00.000Z",52.9],
["2015-11-03T15:29:00.000Z",52.8],
["2015-11-03T19:33:00.000Z",52.8],
["2015-11-03T23:36:00.000Z",52.8],
["2015-11-04T02:52:00.000Z",52.8],
["2015-11-04T06:52:00.000Z",52.8],
["2015-11-04T10:56:00.000Z",53.1],
["2015-11-05T02:43:00.000Z",52.6],
["2015-11-05T06:46:00.000Z",52.5],
["2015-11-05T10:36:00.000Z",52.5],
["2015-11-05T14:39:00.000Z",52.5],
["2015-11-05T18:43:00.000Z",52.5],
["2015-11-05T22:46:00.000Z",52.5],
["2015-11-06T02:51:00.000Z",52.5],
["2015-11-06T06:55:00.000Z",52.5],
["2015-11-06T10:59:00.000Z",52.5],
["2015-11-06T15:04:00.000Z",52.5],
["2015-11-06T19:08:00.000Z",52.5],
["2015-11-06T23:13:00.000Z",52.9],
["2015-11-07T03:18:00.000Z",52.8],
["2015-11-07T07:22:00.000Z",52.8],
["2015-11-07T11:25:00.000Z",52.5],
["2015-11-07T14:39:00.000Z",52.5],
["2015-11-07T18:41:00.000Z",52.8],
["2015-11-07T22:46:00.000Z",52.8],
["2015-11-08T02:50:00.000Z",53.1],
["2015-11-08T06:54:00.000Z",53.1],
["2015-11-08T11:09:00.000Z",52.9],
["2015-11-08T16:26:00.000Z",52.9],
["2015-11-08T20:30:00.000Z",52.8],
["2015-11-09T00:33:00.000Z",52.8],
["2015-11-09T04:38:00.000Z",52.8],
["2015-11-09T08:42:00.000Z",53.3],
["2015-11-09T12:52:00.000Z",53.3],
["2015-11-09T16:55:00.000Z",53.5],
["2015-11-09T21:12:00.000Z",53.3],
["2015-11-10T01:16:00.000Z",53.3],
["2015-11-10T05:20:00.000Z",53.1],
["2015-11-10T09:26:00.000Z",53.1],
["2015-11-10T13:30:00.000Z",53.2],
["2015-11-10T17:35:00.000Z",53.3],
["2015-11-10T21:41:00.000Z",53.2],
["2015-11-11T01:43:00.000Z",53.3],
["2015-11-11T05:44:00.000Z",53.2],
["2015-11-11T13:49:00.000Z",53.9],
["2015-11-11T17:26:00.000Z",54.1],
["2015-11-11T21:28:00.000Z",56.2],
["2015-11-12T15:03:00.000Z",54.1],
["2015-11-12T18:31:00.000Z",54.1],
["2015-11-12T22:06:00.000Z",54.1],
["2015-11-13T00:41:00.000Z",54.1],
["2015-11-13T03:38:00.000Z",54.2],
["2015-11-13T14:07:00.000Z",54.3],
["2015-11-13T18:09:00.000Z",54.2],
["2015-11-13T22:11:00.000Z",54.3],
["2015-11-14T02:13:00.000Z",54.3],
["2015-11-14T06:14:00.000Z",54.3],
["2015-11-14T10:16:00.000Z",53.8],
["2015-11-14T15:42:00.000Z",53.5],
["2015-11-14T17:29:00.000Z",53.5],
["2015-11-14T21:31:00.000Z",53.6],
["2015-11-15T01:33:00.000Z",53.6],
["2015-11-15T05:14:00.000Z",53.6],
["2015-11-15T09:16:00.000Z",53.3],
["2015-11-15T13:18:00.000Z",53.3],
["2015-11-15T20:59:00.000Z",52.4],
["2015-11-15T21:49:00.000Z",52.4],
["2015-11-15T22:23:00.000Z",53.3],
["2015-11-15T22:49:00.000Z",53.3],
["2015-11-15T18:13:00.000Z",53.3],
["2015-11-15T23:35:00.000Z",53.5],
["2015-11-15T22:24:00.000Z",53.3],
["2015-11-16T02:25:00.000Z",53.5],
["2015-11-16T06:32:00.000Z",53.5],
["2015-11-16T10:33:00.000Z",53.5],
["2015-11-16T14:34:00.000Z",53.5],
["2015-11-16T18:38:00.000Z",53.3],
["2015-11-16T22:43:00.000Z",53.3],
["2015-11-17T02:43:00.000Z",53.3],
["2015-11-17T06:47:00.000Z",53.3],
["2015-11-17T10:51:00.000Z",53.2],
["2015-11-17T14:56:00.000Z",53.3],
["2015-11-17T19:01:00.000Z",53.3],
["2015-11-17T23:05:00.000Z",53.5],
["2015-11-18T03:05:00.000Z",53.5],
["2015-11-18T05:56:00.000Z",53.6],
["2015-11-18T06:05:00.000Z",53.6],
["2015-11-18T06:15:00.000Z",53.6],
["2015-11-18T06:25:00.000Z",53.6],
["2015-11-18T06:34:00.000Z",53.6],
["2015-11-18T06:46:00.000Z",53.6],
["2015-11-18T06:55:00.000Z",53.6],
["2015-11-18T07:04:00.000Z",53.6],
["2015-11-18T07:14:00.000Z",53.6],
["2015-11-18T07:23:00.000Z",53.6],
["2015-11-18T08:11:00.000Z",53.6],
["2015-11-18T12:18:00.000Z",53.5],
["2015-11-18T16:22:00.000Z",53.5],
["2015-11-18T20:26:00.000Z",53.5],
["2015-11-19T00:30:00.000Z",53.5],
["2015-11-19T04:35:00.000Z",53.5],
["2015-11-19T08:25:00.000Z",53.5],
["2015-11-19T12:29:00.000Z",53.5],
["2015-11-19T16:33:00.000Z",54.1],
["2015-11-19T20:39:00.000Z",53.9],
["2015-11-20T00:44:00.000Z",54.1],
["2015-11-20T04:47:00.000Z",54.1],
["2015-11-20T09:00:00.000Z",53.8],
["2015-11-20T13:05:00.000Z",53.8],
["2015-11-20T17:09:00.000Z",53.9],
["2015-11-20T21:14:00.000Z",53.9],
["2015-11-21T01:18:00.000Z",53.6],
["2015-11-21T05:25:00.000Z",53.6],
["2015-11-21T09:29:00.000Z",53.6],
["2015-11-21T13:33:00.000Z",53.6],
["2015-11-21T17:39:00.000Z",53.9],
["2015-11-21T21:45:00.000Z",53.5],
["2015-11-22T01:50:00.000Z",53.9],
["2015-11-22T05:55:00.000Z",53.8],
["2015-11-22T09:59:00.000Z",53.6],
["2015-11-22T14:04:00.000Z",53.6],
["2015-11-22T18:08:00.000Z",53.6],
["2015-11-22T22:13:00.000Z",53.6],
["2015-11-23T02:18:00.000Z",53.6],
["2015-11-23T06:23:00.000Z",53.6],
["2015-11-23T10:35:00.000Z",53.8],
["2015-11-23T14:39:00.000Z",53.6],
["2015-11-23T18:43:00.000Z",53.9],
["2015-11-23T22:48:00.000Z",54.1],
["2015-11-24T07:33:00.000Z",53.9],
["2015-11-24T11:37:00.000Z",53.3],
["2015-11-24T15:38:00.000Z",53.9],
["2015-11-24T19:42:00.000Z",54.3],
["2015-11-24T23:46:00.000Z",54.2],
["2015-11-25T03:51:00.000Z",54.2],
["2015-11-25T07:55:00.000Z",54.2],
["2015-11-25T12:01:00.000Z",54.3],
["2015-11-25T16:06:00.000Z",54.2],
["2015-11-25T20:10:00.000Z",54.2],
["2015-11-26T00:14:00.000Z",54.2],
["2015-11-26T04:20:00.000Z",54.2],
["2015-11-26T08:19:00.000Z",54.2],
["2015-11-26T12:24:00.000Z",54.2],
["2015-11-26T16:29:00.000Z",54.3],
["2015-11-26T20:34:00.000Z",54.3],
["2015-11-27T00:38:00.000Z",54.2],
["2015-11-27T04:43:00.000Z",54.2],
["2015-11-27T08:48:00.000Z",54.2],
["2015-11-27T12:53:00.000Z",54.2],
["2015-11-27T16:58:00.000Z",54.2],
["2015-11-27T20:57:00.000Z",53.9],
["2015-11-28T01:01:00.000Z",53.9],
["2015-11-28T05:06:00.000Z",53.9],
["2015-11-28T09:10:00.000Z",53.9],
["2015-11-28T13:14:00.000Z",53.9],
["2015-11-28T17:19:00.000Z",54.2],
["2015-11-28T21:23:00.000Z",54.1],
["2015-11-29T01:28:00.000Z",54.2],
["2015-11-29T05:32:00.000Z",54.2],
["2015-11-29T09:36:00.000Z",54.2],
["2015-11-29T13:41:00.000Z",53.5],
["2015-11-29T17:46:00.000Z",53.9],
["2015-11-29T21:51:00.000Z",53.9],
["2015-11-30T01:57:00.000Z",53.9],
["2015-11-30T06:03:00.000Z",53.9],
["2015-11-30T10:08:00.000Z",53.9],
["2015-11-30T14:12:00.000Z",53.9],
["2015-11-30T18:16:00.000Z",53.9],
["2015-11-30T22:15:00.000Z",54.2],
["2015-12-01T02:20:00.000Z",54.2],
["2015-12-01T06:27:00.000Z",54.2],
["2015-12-01T10:32:00.000Z",54.2],
["2015-12-01T14:37:00.000Z",54.2],
["2015-12-01T18:43:00.000Z",53.6],
["2015-12-01T22:47:00.000Z",53.9],
["2015-12-02T02:51:00.000Z",53.9],
["2015-12-02T06:56:00.000Z",53.8],
["2015-12-02T10:59:00.000Z",53.8],
["2015-12-02T14:59:00.000Z",53.9],
["2015-12-02T19:04:00.000Z",53.9],
["2015-12-02T23:09:00.000Z",53.9],
["2015-12-03T03:15:00.000Z",53.9],
["2015-12-03T07:20:00.000Z",53.9],
["2015-12-03T11:21:00.000Z",54.2],
["2015-12-03T15:26:00.000Z",53.9],
["2015-12-03T19:25:00.000Z",53.9],
["2015-12-03T23:30:00.000Z",53.9],
["2015-12-04T03:35:00.000Z",53.9],
["2015-12-04T07:46:00.000Z",53.9],
["2015-12-04T11:56:00.000Z",54.1],
["2015-12-04T16:02:00.000Z",54.1],
["2015-12-04T20:07:00.000Z",53.9],
["2015-12-05T00:12:00.000Z",54.2],
["2015-12-05T04:17:00.000Z",54.2],
["2015-12-05T08:24:00.000Z",53.6],
["2015-12-05T12:29:00.000Z",53.6],
["2015-12-05T16:34:00.000Z",54.1],
["2015-12-05T20:44:00.000Z",53.9],
["2015-12-06T00:51:00.000Z",53.9],
["2015-12-06T05:07:00.000Z",53.5],
["2015-12-06T08:58:00.000Z",54.1],
["2015-12-06T13:03:00.000Z",53.6],
["2015-12-06T17:07:00.000Z",54.1],
["2015-12-06T21:13:00.000Z",54.2],
["2015-12-07T01:20:00.000Z",53.9],
["2015-12-07T05:22:00.000Z",53.9],
["2015-12-07T09:21:00.000Z",54.1],
["2015-12-07T13:26:00.000Z",53.9],
["2015-12-07T17:03:00.000Z",53.9],
["2015-12-07T21:10:00.000Z",53.9],
["2015-12-08T01:14:00.000Z",54.1],
["2015-12-08T05:19:00.000Z",54.1],
["2015-12-08T09:24:00.000Z",54.5],
["2015-12-08T13:29:00.000Z",54.8],
["2015-12-08T17:33:00.000Z",54.5],
["2015-12-08T21:38:00.000Z",54.5],
["2015-12-09T01:43:00.000Z",54.5],
["2015-12-09T05:48:00.000Z",54.3],
["2015-12-09T09:52:00.000Z",54.9],
["2015-12-09T13:58:00.000Z",55.7],
["2015-12-09T18:04:00.000Z",55.7],
["2015-12-09T22:09:00.000Z",55.4],
["2015-12-10T02:14:00.000Z",55.4],
["2015-12-10T05:34:00.000Z",55.4],
["2015-12-10T09:39:00.000Z",54.6],
["2015-12-10T13:44:00.000Z",54.9],
["2015-12-10T17:50:00.000Z",54.9],
["2015-12-10T21:55:00.000Z",54.9],
["2015-12-11T01:59:00.000Z",54.1],
["2015-12-11T05:58:00.000Z",54.1],
["2015-12-11T10:03:00.000Z",55.3],
["2015-12-11T14:09:00.000Z",55.4],
["2015-12-11T18:14:00.000Z",55.4],
["2015-12-11T22:19:00.000Z",55.4],
["2015-12-12T02:24:00.000Z",55.7],
["2015-12-12T06:30:00.000Z",55.7],
["2015-12-12T10:37:00.000Z",55.7],
["2015-12-12T14:41:00.000Z",55.7],
["2015-12-12T18:42:00.000Z",55.7],
["2015-12-12T22:47:00.000Z",56],
["2015-12-13T02:52:00.000Z",56],
["2015-12-13T06:57:00.000Z",56.3],
["2015-12-13T11:02:00.000Z",56],
["2015-12-13T15:07:00.000Z",56],
["2015-12-13T19:09:00.000Z",55.7],
["2015-12-13T23:17:00.000Z",56],
["2015-12-14T03:30:00.000Z",56.3],
["2015-12-14T07:40:00.000Z",56.2],
["2015-12-14T11:48:00.000Z",56],
["2015-12-14T15:53:00.000Z",56],
["2015-12-14T19:58:00.000Z",56.3],
["2015-12-15T00:03:00.000Z",56.3],
["2015-12-15T04:10:00.000Z",56.3],
["2015-12-15T08:15:00.000Z",56.2],
["2015-12-15T12:19:00.000Z",56.3],
["2015-12-15T16:26:00.000Z",56.3],
["2015-12-15T20:31:00.000Z",56.3],
["2015-12-16T00:35:00.000Z",56],
["2015-12-16T04:30:00.000Z",56],
["2015-12-16T14:49:00.000Z",55.7],
["2015-12-16T18:55:00.000Z",55.7],
["2015-12-16T23:00:00.000Z",55.7],
["2015-12-17T03:06:00.000Z",55.7],
["2015-12-17T07:10:00.000Z",55.7],
["2015-12-17T11:14:00.000Z",55.7],
["2015-12-17T15:20:00.000Z",55.7],
["2015-12-17T19:26:00.000Z",55.7],
["2015-12-17T23:31:00.000Z",55.7],
["2015-12-18T03:48:00.000Z",55.7],
["2015-12-18T07:53:00.000Z",55.7],
["2015-12-18T11:58:00.000Z",55.6],
["2015-12-18T16:04:00.000Z",55.7],
["2015-12-18T20:10:00.000Z",55.9],
["2015-12-19T00:16:00.000Z",55.9],
["2015-12-19T04:21:00.000Z",55.7],
["2015-12-19T08:32:00.000Z",55.7],
["2015-12-19T12:38:00.000Z",55.7],
["2015-12-19T16:47:00.000Z",55.7],
["2015-12-19T20:53:00.000Z",55.7],
["2015-12-20T00:59:00.000Z",55.7],
["2015-12-20T05:05:00.000Z",55.7],
["2015-12-20T09:13:00.000Z",55.7],
["2015-12-20T13:19:00.000Z",55.7],
["2015-12-20T17:25:00.000Z",55.7],
["2015-12-20T21:32:00.000Z",55.4],
["2015-12-21T01:37:00.000Z",55.3],
["2015-12-21T05:43:00.000Z",55.4],
["2015-12-21T09:49:00.000Z",55.4],
["2015-12-21T13:54:00.000Z",55.6],
["2015-12-21T18:00:00.000Z",56],
["2015-12-21T22:23:00.000Z",55.7],
["2015-12-22T02:27:00.000Z",55.9],
["2015-12-22T06:31:00.000Z",55.9],
["2015-12-22T10:36:00.000Z",56],
["2015-12-22T14:40:00.000Z",56],
["2015-12-22T18:44:00.000Z",55.9],
["2015-12-22T22:48:00.000Z",56],
["2015-12-23T02:52:00.000Z",56],
["2015-12-23T06:57:00.000Z",55.9],
["2015-12-23T11:01:00.000Z",55.9],
["2015-12-23T15:06:00.000Z",55.9],
["2015-12-23T19:05:00.000Z",55.7],
["2015-12-23T23:10:00.000Z",56],
["2015-12-24T03:14:00.000Z",56],
["2015-12-24T07:18:00.000Z",55.9],
["2015-12-24T11:22:00.000Z",56],
["2015-12-24T15:26:00.000Z",55.9],
["2015-12-24T19:30:00.000Z",55.9],
["2015-12-24T23:35:00.000Z",55.7],
["2015-12-25T03:39:00.000Z",55.6],
["2015-12-25T07:43:00.000Z",55.6],
["2015-12-25T11:47:00.000Z",55.7],
["2015-12-25T15:51:00.000Z",55.7],
["2015-12-25T19:55:00.000Z",55.7],
["2015-12-25T23:59:00.000Z",55.1],
["2015-12-26T04:03:00.000Z",55.6],
["2015-12-26T08:08:00.000Z",55.4],
["2015-12-26T12:13:00.000Z",55.9],
["2015-12-26T16:17:00.000Z",56.3],
["2015-12-26T20:21:00.000Z",56.3],
["2015-12-27T00:26:00.000Z",56.3],
["2015-12-27T04:30:00.000Z",56.3],
["2015-12-27T08:34:00.000Z",56.3],
["2015-12-27T12:39:00.000Z",56.2],
["2015-12-27T16:44:00.000Z",56.3],
["2015-12-27T20:49:00.000Z",56],
["2015-12-28T00:54:00.000Z",56],
["2015-12-28T04:50:00.000Z",56],
["2015-12-28T08:55:00.000Z",55.9],
["2015-12-28T13:01:00.000Z",56.8],
["2015-12-28T17:06:00.000Z",56.5],
["2015-12-28T21:11:00.000Z",56.3],
["2015-12-29T01:16:00.000Z",56.3],
["2015-12-29T05:22:00.000Z",56.3],
["2015-12-29T09:28:00.000Z",56.5],
["2015-12-29T13:32:00.000Z",56.5],
["2015-12-29T17:36:00.000Z",56.7],
["2015-12-29T21:41:00.000Z",56.3],
["2015-12-30T01:45:00.000Z",56.5],
["2015-12-30T05:50:00.000Z",56.3],
["2015-12-30T09:54:00.000Z",56],
["2015-12-30T13:58:00.000Z",55.7],
["2015-12-30T18:03:00.000Z",56],
["2015-12-30T22:08:00.000Z",56.3],
["2015-12-31T02:11:00.000Z",56.3],
["2015-12-31T06:12:00.000Z",56.3],
["2015-12-31T10:14:00.000Z",56.7],
["2015-12-31T14:16:00.000Z",56.7],
["2015-12-31T18:17:00.000Z",56.3],
["2015-12-31T22:19:00.000Z",56.2],
["2016-01-01T02:21:00.000Z",56.2],
["2016-01-01T06:23:00.000Z",56.2],
["2016-01-01T10:24:00.000Z",56.3],
["2016-01-01T14:26:00.000Z",55.9],
["2016-01-01T18:28:00.000Z",55.6],
["2016-01-01T22:29:00.000Z",56.2],
["2016-01-02T02:31:00.000Z",56],
["2016-01-02T06:33:00.000Z",56.2],
["2016-01-02T10:34:00.000Z",55.9],
["2016-01-02T14:36:00.000Z",55.6],
["2016-01-02T18:38:00.000Z",55.6],
["2016-01-02T22:40:00.000Z",55.9],
["2016-01-03T02:41:00.000Z",55.9],
["2016-01-03T06:43:00.000Z",55.7],
["2016-01-03T10:45:00.000Z",55.6],
["2016-01-03T14:46:00.000Z",55.9],
["2016-01-03T18:48:00.000Z",55.9],
["2016-01-03T22:50:00.000Z",56],
["2016-01-04T02:52:00.000Z",56],
["2016-01-04T06:54:00.000Z",56],
["2016-01-04T10:56:00.000Z",55.4],
["2016-01-04T14:57:00.000Z",55.4],
["2016-01-04T18:59:00.000Z",55.4],
["2016-01-04T23:01:00.000Z",55.4],
["2016-01-05T03:03:00.000Z",55.6],
["2016-01-05T07:05:00.000Z",55.7],
["2016-01-05T11:04:00.000Z",55.6],
["2016-01-05T15:06:00.000Z",55.3],
["2016-01-05T19:09:00.000Z",55.1],
["2016-01-05T23:11:00.000Z",54.8],
["2016-01-06T03:13:00.000Z",54.8],
["2016-01-06T07:15:00.000Z",54.6],
["2016-01-06T19:24:00.000Z",55.3],
["2016-01-07T00:07:00.000Z",55.1],
["2016-01-07T04:08:00.000Z",54.9],
["2016-01-07T08:10:00.000Z",54.9],
["2016-01-07T12:41:00.000Z",55.1],
["2016-01-07T16:43:00.000Z",55.1],
["2016-01-07T20:45:00.000Z",54.9],
["2016-01-08T00:47:00.000Z",54.8],
["2016-01-08T03:04:00.000Z",54.6],
["2016-01-08T03:32:00.000Z",54.6],
["2016-01-08T05:40:00.000Z",54.6],
["2016-01-08T09:42:00.000Z",54.8],
["2016-01-08T13:05:00.000Z",54.9],
["2016-01-08T17:08:00.000Z",55.1],
["2016-01-08T21:10:00.000Z",55.6],
["2016-01-09T01:12:00.000Z",55.1],
["2016-01-09T05:14:00.000Z",54.8],
["2016-01-09T09:16:00.000Z",54.8],
["2016-01-09T13:18:00.000Z",54.2],
["2016-01-09T17:20:00.000Z",54.1],
["2016-01-09T21:23:00.000Z",54.1],
["2016-01-10T01:25:00.000Z",53.5],
["2016-01-10T05:26:00.000Z",53.8],
["2016-01-10T09:29:00.000Z",53.8],
["2016-01-10T13:31:00.000Z",54.1],
["2016-01-10T17:33:00.000Z",53.9],
["2016-01-10T21:35:00.000Z",54.2],
["2016-01-11T01:37:00.000Z",54.1],
["2016-01-11T05:39:00.000Z",53.9],
["2016-01-11T09:41:00.000Z",53.9],
["2016-01-11T13:44:00.000Z",53.6],
["2016-01-11T17:46:00.000Z",53.3],
["2016-01-11T21:48:00.000Z",53.2],
["2016-01-12T01:50:00.000Z",52.6],
["2016-01-12T05:53:00.000Z",52.8],
["2016-01-12T09:55:00.000Z",53.2],
["2016-01-12T13:47:00.000Z",53.3],
["2016-01-12T17:50:00.000Z",52.4],
["2016-01-12T21:53:00.000Z",51.7],
["2016-01-13T01:55:00.000Z",51.7],
["2016-01-13T05:58:00.000Z",51.7],
["2016-01-13T10:00:00.000Z",51.2],
["2016-01-13T14:02:00.000Z",50.3],
["2016-01-13T18:01:00.000Z",50.5],
["2016-01-13T22:03:00.000Z",50.9],
["2016-01-14T02:05:00.000Z",51.4],
["2016-01-14T06:07:00.000Z",51],
["2016-01-14T10:11:00.000Z",51],
["2016-01-14T14:13:00.000Z",50.8],
["2016-01-14T18:11:00.000Z",50.3],
["2016-01-14T22:13:00.000Z",50.8],
["2016-01-15T02:14:00.000Z",50.6],
["2016-01-15T06:35:00.000Z",50.6],
["2016-01-15T10:40:00.000Z",50.4],
["2016-01-15T14:40:00.000Z",49.5],
["2016-01-15T18:43:00.000Z",49.3],
["2016-01-15T22:45:00.000Z",50.3],
["2016-01-16T02:47:00.000Z",50.1],
["2016-01-16T06:49:00.000Z",50.3],
["2016-01-16T10:51:00.000Z",50.9],
["2016-01-16T14:54:00.000Z",50.5],
["2016-01-16T18:56:00.000Z",50.9],
["2016-01-16T23:08:00.000Z",51.2],
["2016-01-17T03:10:00.000Z",51.2],
["2016-01-17T07:12:00.000Z",51.2],
["2016-01-17T11:15:00.000Z",50.9],
["2016-01-17T15:17:00.000Z",50.8],
["2016-01-17T19:08:00.000Z",50.8],
["2016-01-17T23:10:00.000Z",50.6],
["2016-01-18T03:13:00.000Z",51],
["2016-01-18T07:16:00.000Z",50.9],
["2016-01-18T11:18:00.000Z",50.6],
["2016-01-18T15:20:00.000Z",51.3],
["2016-01-18T19:23:00.000Z",50.8],
["2016-01-18T23:25:00.000Z",50.6],
["2016-01-19T03:27:00.000Z",50.9],
["2016-01-19T07:29:00.000Z",51],
["2016-01-19T11:31:00.000Z",51.4],
["2016-01-19T15:34:00.000Z",52.1],
["2016-01-19T19:38:00.000Z",51.8],
["2016-01-19T23:42:00.000Z",48.9],
["2016-01-20T03:45:00.000Z",51],
["2016-01-20T08:05:00.000Z",51],
["2016-01-20T12:07:00.000Z",51.4],
["2016-01-20T16:09:00.000Z",50.4],
["2016-01-20T19:52:00.000Z",50.1],
["2016-01-20T23:54:00.000Z",50.5],
["2016-01-21T03:38:00.000Z",50.8],
["2016-01-21T07:40:00.000Z",50.4],
["2016-01-21T11:42:00.000Z",51.4],
["2016-01-21T15:45:00.000Z",51.7],
["2016-01-21T19:48:00.000Z",51.4],
["2016-01-21T23:50:00.000Z",51.2],
["2016-01-22T03:53:00.000Z",50.8],
["2016-01-22T07:55:00.000Z",50.9],
["2016-01-22T11:57:00.000Z",50.8],
["2016-01-22T16:00:00.000Z",50.4],
["2016-01-22T20:02:00.000Z",51],
["2016-01-23T00:05:00.000Z",51.2],
["2016-01-23T04:07:00.000Z",51.2],
["2016-01-23T08:09:00.000Z",51.2],
["2016-01-23T12:11:00.000Z",50.8],
["2016-01-23T16:16:00.000Z",51.2],
["2016-01-23T20:19:00.000Z",51.2],
["2016-01-24T00:21:00.000Z",50.9],
["2016-01-24T04:23:00.000Z",51.7],
["2016-01-24T08:25:00.000Z",51.2],
["2016-01-24T12:27:00.000Z",51.3],
["2016-01-24T16:29:00.000Z",51.4],
["2016-01-24T20:31:00.000Z",50.9],
["2016-01-25T00:33:00.000Z",50.9],
["2016-01-25T04:36:00.000Z",50.8],
["2016-01-25T08:38:00.000Z",50.9],
["2016-01-25T12:40:00.000Z",50.3],
["2016-01-25T16:43:00.000Z",49.8],
["2016-01-25T20:42:00.000Z",49.3],
["2016-01-26T00:42:00.000Z",49.8],
["2016-01-26T04:44:00.000Z",49.8],
["2016-01-26T08:45:00.000Z",49.8],
["2016-01-26T12:47:00.000Z",49.8],
["2016-01-26T16:50:00.000Z",49.9],
["2016-01-26T20:53:00.000Z",49.3],
["2016-01-27T00:55:00.000Z",48.8],
["2016-01-27T04:56:00.000Z",49.5],
["2016-01-27T08:58:00.000Z",51.2],
["2016-01-27T13:00:00.000Z",51.4],
["2016-01-27T16:44:00.000Z",51.4],
["2016-01-27T20:43:00.000Z",50.9],
["2016-01-28T03:04:00.000Z",50.9],
["2016-01-28T07:06:00.000Z",50.9],
["2016-01-28T11:08:00.000Z",52],
["2016-01-28T15:11:00.000Z",51.4],
["2016-01-28T19:14:00.000Z",51.7],
["2016-01-28T23:16:00.000Z",50.9],
["2016-01-29T02:52:00.000Z",50.9],
["2016-01-29T06:54:00.000Z",50.9],
["2016-01-29T10:55:00.000Z",51.3],
["2016-01-29T14:39:00.000Z",51.3],
["2016-01-29T20:37:00.000Z",50.6],
["2016-01-30T04:07:00.000Z",51],
["2016-01-30T12:13:00.000Z",51.2],
["2016-01-30T19:51:00.000Z",50.9],
["2016-01-31T03:40:00.000Z",50.5],
["2016-01-31T11:45:00.000Z",49.9],
["2016-01-31T19:40:00.000Z",50.5],
["2016-02-01T03:46:00.000Z",50.4],
["2016-02-01T11:51:00.000Z",50.3],
["2016-02-01T20:19:00.000Z",51.3],
["2016-02-01T23:37:00.000Z",51.9],
["2016-02-02T03:41:00.000Z",52.1],
["2016-02-02T07:48:00.000Z",51.7],
["2016-02-02T11:54:00.000Z",51.2],
["2016-02-02T15:57:00.000Z",50.4],
["2016-02-02T20:01:00.000Z",49.8],
["2016-02-03T00:06:00.000Z",49.5],
["2016-02-03T04:10:00.000Z",50.1],
["2016-02-03T08:14:00.000Z",49.4],
["2016-02-03T12:23:00.000Z",49.5],
["2016-02-03T16:29:00.000Z",49.5],
["2016-02-03T20:33:00.000Z",50.1],
["2016-02-04T00:34:00.000Z",50.5],
["2016-02-04T04:38:00.000Z",50.4],
["2016-02-04T08:43:00.000Z",50.3],
["2016-02-04T12:47:00.000Z",50.1],
["2016-02-04T16:52:00.000Z",50.3],
["2016-02-04T20:57:00.000Z",50.4],
["2016-02-05T01:01:00.000Z",50.5],
["2016-02-05T05:05:00.000Z",50.4],
["2016-02-05T09:10:00.000Z",50.4],
["2016-02-05T13:14:00.000Z",50.5],
["2016-02-05T17:19:00.000Z",49.9],
["2016-02-05T21:24:00.000Z",50.4],
["2016-02-06T01:28:00.000Z",51],
["2016-02-06T05:32:00.000Z",50.9],
["2016-02-06T09:36:00.000Z",50.9],
["2016-02-06T13:40:00.000Z",50.8],
["2016-02-06T17:46:00.000Z",50.5],
["2016-02-06T21:50:00.000Z",51.4],
["2016-02-07T01:54:00.000Z",50.8],
["2016-02-07T05:58:00.000Z",51],
["2016-02-07T10:03:00.000Z",51.2],
["2016-02-07T14:07:00.000Z",51.5],
["2016-02-07T18:11:00.000Z",50.8],
["2016-02-07T22:15:00.000Z",50.9],
["2016-02-08T02:19:00.000Z",50.8],
["2016-02-08T06:07:00.000Z",51],
["2016-02-08T10:11:00.000Z",50.9],
["2016-02-08T14:16:00.000Z",50.6],
["2016-02-08T18:21:00.000Z",50.6],
["2016-02-08T22:25:00.000Z",50.9],
["2016-02-09T10:46:00.000Z",50.5],
["2016-02-09T14:51:00.000Z",50.4],
["2016-02-09T18:56:00.000Z",50.5],
["2016-02-09T23:00:00.000Z",50.5],
["2016-02-10T02:50:00.000Z",49.5],
["2016-02-10T06:56:00.000Z",49.5],
["2016-02-10T11:02:00.000Z",50.1],
["2016-02-10T15:03:00.000Z",50.4],
["2016-02-10T19:08:00.000Z",50.5],
["2016-02-10T23:02:00.000Z",50.1],
["2016-02-11T03:06:00.000Z",50.4],
["2016-02-11T07:11:00.000Z",50.4],
["2016-02-11T11:23:00.000Z",49.8],
["2016-02-11T15:24:00.000Z",49.8],
["2016-02-11T19:30:00.000Z",49.8],
["2016-02-11T23:35:00.000Z",49.8],
["2016-02-12T03:40:00.000Z",50.3],
["2016-02-12T07:44:00.000Z",50.1],
["2016-02-12T11:49:00.000Z",50.4],
["2016-02-12T15:54:00.000Z",50.4],
["2016-02-12T20:01:00.000Z",49.8],
["2016-02-13T00:06:00.000Z",50.4],
["2016-02-13T04:11:00.000Z",50.6],
["2016-02-13T08:15:00.000Z",50.6],
["2016-02-13T12:20:00.000Z",49.8],
["2016-02-13T16:28:00.000Z",49.8],
["2016-02-13T20:33:00.000Z",49.8],
["2016-02-14T00:37:00.000Z",49.8],
["2016-02-14T04:42:00.000Z",49.8],
["2016-02-14T08:47:00.000Z",49.8],
["2016-02-14T12:51:00.000Z",48.8],
["2016-02-14T16:56:00.000Z",49.8],
["2016-02-14T20:53:00.000Z",49.5],
["2016-02-15T00:57:00.000Z",50.1],
["2016-02-15T05:02:00.000Z",50.3],
["2016-02-15T09:06:00.000Z",50.1],
["2016-02-15T13:11:00.000Z",50.3],
["2016-02-15T17:16:00.000Z",50.5],
["2016-02-15T21:21:00.000Z",51.2],
["2016-02-16T01:26:00.000Z",50.8],
["2016-02-16T05:30:00.000Z",50.9],
["2016-02-16T09:35:00.000Z",50.8],
["2016-02-16T13:39:00.000Z",50.9],
["2016-02-16T17:42:00.000Z",50.9],
["2016-02-16T21:47:00.000Z",51.2],
["2016-02-17T01:47:00.000Z",51.3],
["2016-02-17T15:07:00.000Z",51.4],
["2016-02-17T19:13:00.000Z",52],
["2016-02-17T23:16:00.000Z",51.2],
["2016-02-18T03:21:00.000Z",51.3],
["2016-02-18T07:25:00.000Z",50.9],
["2016-02-18T11:29:00.000Z",50.6],
["2016-02-18T15:34:00.000Z",50.6],
["2016-02-18T19:36:00.000Z",51.5],
["2016-02-18T23:41:00.000Z",51.2],
["2016-02-19T03:46:00.000Z",51.2],
["2016-02-19T07:51:00.000Z",51],
["2016-02-19T11:55:00.000Z",51],
["2016-02-19T16:00:00.000Z",50.6],
["2016-02-19T19:58:00.000Z",50.6],
["2016-02-20T00:02:00.000Z",50.6],
["2016-02-20T04:00:00.000Z",50.9],
["2016-02-20T08:06:00.000Z",50.9],
["2016-02-20T12:12:00.000Z",51.2],
["2016-02-20T16:19:00.000Z",50.9],
["2016-02-20T20:25:00.000Z",51.8],
["2016-02-21T00:31:00.000Z",52.2],
["2016-02-21T04:31:00.000Z",53.2],
["2016-02-21T08:36:00.000Z",53.3],
["2016-02-21T12:42:00.000Z",53.3],
["2016-02-21T16:48:00.000Z",53.5],
["2016-02-21T20:54:00.000Z",53.3],
["2016-02-22T01:00:00.000Z",53.2],
["2016-02-22T05:06:00.000Z",53.2],
["2016-02-22T09:11:00.000Z",54.1],
["2016-02-22T13:17:00.000Z",53.6],
["2016-02-22T17:24:00.000Z",53.6],
["2016-02-22T21:27:00.000Z",53.6],
["2016-02-23T01:33:00.000Z",54.2],
["2016-02-23T05:39:00.000Z",54.1],
["2016-02-23T09:45:00.000Z",53.8],
["2016-02-23T13:51:00.000Z",53.9],
["2016-02-23T17:55:00.000Z",52.8],
["2016-02-23T22:00:00.000Z",53.2],
["2016-02-24T02:06:00.000Z",53.3],
["2016-02-24T06:12:00.000Z",53.5],
["2016-02-24T10:31:00.000Z",54.3],
["2016-02-24T14:30:00.000Z",54.3],
["2016-02-24T18:32:00.000Z",54.5],
["2016-02-24T22:34:00.000Z",54.5],
["2016-02-25T02:41:00.000Z",54.6],
["2016-02-25T06:46:00.000Z",54.9],
["2016-02-25T10:51:00.000Z",54.8],
["2016-02-25T14:56:00.000Z",54.8],
["2016-02-25T18:58:00.000Z",54.2],
["2016-02-25T22:59:00.000Z",54.3],
["2016-02-26T03:03:00.000Z",54.2],
["2016-02-26T07:08:00.000Z",54.9],
["2016-02-26T11:12:00.000Z",55.4],
["2016-02-26T15:17:00.000Z",55.7],
["2016-02-26T19:23:00.000Z",54.8],
["2016-02-26T23:28:00.000Z",54.8],
["2016-02-27T03:33:00.000Z",55.4],
["2016-02-27T07:37:00.000Z",55.6],
["2016-02-27T11:41:00.000Z",55.9],
["2016-02-27T15:46:00.000Z",56.3],
["2016-02-27T19:51:00.000Z",55.7],
["2016-02-27T23:55:00.000Z",56],
["2016-02-28T03:59:00.000Z",58.1],
["2016-02-28T08:00:00.000Z",59],
["2016-02-28T12:03:00.000Z",59.9],
["2016-02-28T16:07:00.000Z",59.7],
["2016-02-28T20:03:00.000Z",59.2],
["2016-02-29T00:08:00.000Z",60.1],
["2016-02-29T04:13:00.000Z",60.8],
["2016-02-29T08:16:00.000Z",61.2],
["2016-02-29T12:30:00.000Z",60.4],
["2016-02-29T16:46:00.000Z",60.8],
["2016-02-29T20:58:00.000Z",61.5],
["2016-03-01T01:13:00.000Z",61.4],
["2016-03-01T05:30:00.000Z",61.9],
["2016-03-01T09:36:00.000Z",62.9],
["2016-03-01T13:52:00.000Z",62.5],
["2016-03-01T18:12:00.000Z",61.9],
["2016-03-01T21:27:00.000Z",63.9],
["2016-03-02T01:50:00.000Z",63.9],
["2016-03-02T06:05:00.000Z",63.9],
["2016-03-02T10:07:00.000Z",63.5],
["2016-03-02T14:11:00.000Z",63.5],
["2016-03-02T18:18:00.000Z",62.7],
["2016-03-02T22:23:00.000Z",63.1],
["2016-03-03T02:25:00.000Z",63.1],
["2016-03-03T06:28:00.000Z",63.1],
["2016-03-03T10:31:00.000Z",62.3],
["2016-03-03T14:34:00.000Z",62.3],
["2016-03-03T18:30:00.000Z",62.7],
["2016-03-03T22:25:00.000Z",62.7],
["2016-03-04T02:53:00.000Z",62.3],
["2016-03-04T06:56:00.000Z",62.7],
["2016-03-04T10:59:00.000Z",62.7],
["2016-03-04T15:03:00.000Z",63.9],
["2016-03-04T18:56:00.000Z",63.5],
["2016-03-04T23:00:00.000Z",63.9],
["2016-03-05T03:07:00.000Z",63.9],
["2016-03-05T07:18:00.000Z",63.5],
["2016-03-05T11:30:00.000Z",63.9],
["2016-03-05T15:42:00.000Z",63.5],
["2016-03-05T19:54:00.000Z",63.5],
["2016-03-06T00:07:00.000Z",63.3],
["2016-03-06T04:19:00.000Z",63.5],
["2016-03-06T08:28:00.000Z",63.5],
["2016-03-06T12:35:00.000Z",63.5],
["2016-03-06T16:42:00.000Z",63.1],
["2016-03-06T20:44:00.000Z",62.7],
["2016-03-07T00:56:00.000Z",64.3],
["2016-03-07T05:07:00.000Z",64.3],
["2016-03-07T09:16:00.000Z",64.3],
["2016-03-07T13:25:00.000Z",65.1],
["2016-03-07T17:28:00.000Z",65.1],
["2016-03-07T21:31:00.000Z",64.3],
["2016-03-08T01:41:00.000Z",64.7],
["2016-03-08T05:51:00.000Z",65.1],
["2016-03-08T10:05:00.000Z",65.1],
["2016-03-08T14:19:00.000Z",64.9],
["2016-03-08T18:26:00.000Z",65.1],
["2016-03-08T22:40:00.000Z",65.6],
["2016-03-09T02:57:00.000Z",65.1],
["2016-03-09T06:49:00.000Z",64.1],
["2016-03-09T11:02:00.000Z",63.1],
["2016-03-09T15:10:00.000Z",63.7],
["2016-03-09T19:31:00.000Z",62.9],
["2016-03-09T23:55:00.000Z",63.9],
["2016-03-10T04:08:00.000Z",63.5],
["2016-03-10T08:08:00.000Z",63.9],
["2016-03-10T12:19:00.000Z",63.9],
["2016-03-10T16:24:00.000Z",63.5],
["2016-03-10T20:38:00.000Z",63.5],
["2016-03-11T00:50:00.000Z",63.7],
["2016-03-11T05:00:00.000Z",63.7],
["2016-03-11T07:50:00.000Z",63.7],
["2016-03-11T11:59:00.000Z",63.5],
["2016-03-11T16:06:00.000Z",62.7],
["2016-03-11T20:14:00.000Z",63.5],
["2016-03-12T00:27:00.000Z",63.1],
["2016-03-12T04:02:00.000Z",63.5],
["2016-03-12T08:15:00.000Z",63.5],
["2016-03-12T12:26:00.000Z",63.5],
["2016-03-12T16:23:00.000Z",62.3],
["2016-03-12T20:32:00.000Z",63.5],
["2016-03-13T00:42:00.000Z",63.9],
["2016-03-13T04:34:00.000Z",63.7],
["2016-03-13T07:01:00.000Z",63.1],
["2016-03-13T08:37:00.000Z",63.3],
["2016-03-13T11:43:00.000Z",63.1],
["2016-03-13T12:40:00.000Z",62.9],
["2016-03-13T13:22:00.000Z",63.1],
["2016-03-13T13:40:00.000Z",63.1],
["2016-03-13T14:39:00.000Z",63.5],
["2016-03-13T18:30:00.000Z",64.5],
["2016-03-13T22:38:00.000Z",63.1],
["2016-03-14T02:46:00.000Z",63.5],
["2016-03-14T04:45:00.000Z",63.5],
["2016-03-14T05:16:00.000Z",63.5],
["2016-03-14T06:30:00.000Z",63.5],
["2016-03-14T07:58:00.000Z",63.5],
["2016-03-14T12:06:00.000Z",63.5],
["2016-03-14T14:59:00.000Z",63.3],
["2016-03-14T18:51:00.000Z",63.5],
["2016-03-14T22:15:00.000Z",63.1],
["2016-03-15T02:08:00.000Z",63.9],
["2016-03-15T06:17:00.000Z",63.5],
["2016-03-15T10:25:00.000Z",63.5],
["2016-03-15T14:34:00.000Z",63.5],
["2016-03-15T18:44:00.000Z",64.5],
["2016-03-15T22:32:00.000Z",63.7],
["2016-03-16T02:47:00.000Z",64.9],
["2016-03-16T06:57:00.000Z",65.8],
["2016-03-16T11:06:00.000Z",68.5],
["2016-03-16T15:01:00.000Z",67.8],
["2016-03-16T19:05:00.000Z",67.1],
["2016-03-16T23:09:00.000Z",68.7],
["2016-03-17T03:13:00.000Z",68.3],
["2016-03-17T05:57:00.000Z",68.5],
["2016-03-17T10:01:00.000Z",68.7],
["2016-03-17T14:05:00.000Z",68.7],
["2016-03-17T15:58:00.000Z",69],
["2016-03-17T19:54:00.000Z",69.2],
["2016-03-17T23:58:00.000Z",69.2],
["2016-03-18T04:06:00.000Z",69.2],
["2016-03-18T08:14:00.000Z",69.2],
["2016-03-18T12:22:00.000Z",69.2],
["2016-03-18T16:30:00.000Z",69.2],
["2016-03-18T20:39:00.000Z",69.2],
["2016-03-19T00:47:00.000Z",69.2],
["2016-03-19T04:55:00.000Z",69.2],
["2016-03-19T09:02:00.000Z",69.2],
["2016-03-19T13:11:00.000Z",69.2],
["2016-03-19T17:19:00.000Z",69.4],
["2016-03-19T21:27:00.000Z",69.2],
["2016-03-20T01:34:00.000Z",69.2],
["2016-03-20T05:42:00.000Z",69.2],
["2016-03-20T09:49:00.000Z",69.2],
["2016-03-20T13:57:00.000Z",69.7],
["2016-03-20T18:06:00.000Z",69.7],
["2016-03-20T22:15:00.000Z",69.7],
["2016-03-21T02:21:00.000Z",69.9],
["2016-03-21T06:28:00.000Z",69.4],
["2016-03-21T10:36:00.000Z",69.7],
["2016-03-21T14:44:00.000Z",69.2],
["2016-03-21T18:45:00.000Z",69],
["2016-03-21T22:42:00.000Z",68.7],
["2016-03-22T02:49:00.000Z",69],
["2016-03-22T06:57:00.000Z",68.7],
["2016-03-22T11:05:00.000Z",67.8],
["2016-03-22T15:13:00.000Z",67.8],
["2016-03-22T19:21:00.000Z",68.3],
["2016-03-22T23:26:00.000Z",68.3],
["2016-03-23T03:34:00.000Z",68],
["2016-03-23T07:42:00.000Z",68.7],
["2016-03-23T11:49:00.000Z",68.7],
["2016-03-23T15:27:00.000Z",69],
["2016-03-23T19:30:00.000Z",69],
["2016-03-23T23:33:00.000Z",69.2],
["2016-03-24T03:36:00.000Z",69.2],
["2016-03-24T07:40:00.000Z",69.2],
["2016-03-24T11:47:00.000Z",68.5],
["2016-03-24T15:54:00.000Z",69.2],
["2016-03-24T20:02:00.000Z",69],
["2016-03-25T00:09:00.000Z",69],
["2016-03-25T04:16:00.000Z",69],
["2016-03-25T08:23:00.000Z",68.7],
["2016-03-25T12:32:00.000Z",67.8],
["2016-03-25T16:39:00.000Z",68.3],
["2016-03-25T20:47:00.000Z",68.3],
["2016-03-26T00:54:00.000Z",68.3],
["2016-03-26T05:01:00.000Z",68],
["2016-03-26T08:54:00.000Z",67.3],
["2016-03-26T13:01:00.000Z",67.8],
["2016-03-26T17:08:00.000Z",67.8],
["2016-03-26T21:15:00.000Z",67.6],
["2016-03-27T01:22:00.000Z",67.3],
["2016-03-27T05:29:00.000Z",67.8],
["2016-03-27T09:32:00.000Z",67.3],
["2016-03-27T13:39:00.000Z",67.1],
["2016-03-27T17:47:00.000Z",66.9],
["2016-03-27T21:54:00.000Z",67.3],
["2016-03-28T02:01:00.000Z",67.6],
["2016-03-28T06:08:00.000Z",67.3],
["2016-03-28T10:15:00.000Z",67.1],
["2016-03-28T14:22:00.000Z",67.1],
["2016-03-28T18:30:00.000Z",66.9],
["2016-03-28T22:37:00.000Z",66.9],
["2016-03-29T02:44:00.000Z",66.4],
["2016-03-29T06:51:00.000Z",66.4],
["2016-03-29T10:58:00.000Z",66.7],
["2016-03-29T15:05:00.000Z",66.9],
["2016-03-29T19:13:00.000Z",67.1],
["2016-03-29T23:20:00.000Z",67.3],
["2016-03-30T03:28:00.000Z",67.1],
["2016-03-30T07:35:00.000Z",67.6],
["2016-03-30T11:42:00.000Z",67.6],
["2016-03-30T15:49:00.000Z",67.8],
["2016-03-30T19:46:00.000Z",67.3],
["2016-03-30T23:53:00.000Z",67.3],
["2016-03-31T03:54:00.000Z",67.3],
["2016-03-31T08:11:00.000Z",67.3],
["2016-03-31T12:28:00.000Z",66.9],
["2016-03-31T16:41:00.000Z",66.9],
["2016-03-31T20:58:00.000Z",66.4],
["2016-04-01T01:14:00.000Z",67.3],
["2016-04-01T05:31:00.000Z",66.9],
["2016-04-01T09:47:00.000Z",66.9],
["2016-04-01T14:11:00.000Z",66.4],
["2016-04-01T18:29:00.000Z",66.4],
["2016-04-01T22:45:00.000Z",66.4],
["2016-04-02T02:58:00.000Z",66.7],
["2016-04-02T07:15:00.000Z",66.9],
["2016-04-02T11:31:00.000Z",66.4],
["2016-04-02T15:48:00.000Z",66],
["2016-04-02T20:06:00.000Z",65.6],
["2016-04-03T00:24:00.000Z",66],
["2016-04-03T04:41:00.000Z",66],
["2016-04-03T08:58:00.000Z",65.2],
["2016-04-03T13:15:00.000Z",65.6],
["2016-04-03T17:32:00.000Z",65.6],
["2016-04-03T21:49:00.000Z",65.6],
["2016-04-04T02:02:00.000Z",65.6],
["2016-04-04T06:21:00.000Z",65.4],
["2016-04-04T10:40:00.000Z",64.3],
["2016-04-04T14:59:00.000Z",65.1],
["2016-04-04T19:18:00.000Z",64.9],
["2016-04-04T23:33:00.000Z",64.3],
["2016-04-05T03:51:00.000Z",64.1],
["2016-04-05T08:09:00.000Z",64.7],
["2016-04-05T12:33:00.000Z",63.3],
["2016-04-05T16:54:00.000Z",62.5],
["2016-04-05T21:14:00.000Z",62.9],
["2016-04-06T01:35:00.000Z",63.1],
["2016-04-06T05:55:00.000Z",62.1],
["2016-04-06T10:16:00.000Z",63.9],
["2016-04-06T14:37:00.000Z",63.9],
["2016-04-06T18:49:00.000Z",63.9],
["2016-04-06T23:08:00.000Z",63.7],
["2016-04-07T03:25:00.000Z",63.9],
["2016-04-07T07:41:00.000Z",63.9],
["2016-04-07T11:57:00.000Z",64.3],
["2016-04-07T16:09:00.000Z",64.7],
["2016-04-07T20:11:00.000Z",65.6],
["2016-04-08T00:27:00.000Z",64.9],
["2016-04-08T04:43:00.000Z",64.9],
["2016-04-08T08:59:00.000Z",65.1],
["2016-04-08T13:18:00.000Z",65.1],
["2016-04-08T17:40:00.000Z",65.1],
["2016-04-08T22:01:00.000Z",65.1],
["2016-04-09T02:18:00.000Z",65.1],
["2016-04-09T06:34:00.000Z",65.1],
["2016-04-09T10:51:00.000Z",65.6],
["2016-04-09T15:08:00.000Z",65.6],
["2016-04-09T19:26:00.000Z",65.6],
["2016-04-09T23:43:00.000Z",65.6],
["2016-04-10T04:01:00.000Z",65.6],
["2016-04-10T08:17:00.000Z",65.6],
["2016-04-10T12:34:00.000Z",65.6],
["2016-04-10T16:52:00.000Z",65.6],
["2016-04-10T21:11:00.000Z",65.6],
["2016-04-11T01:27:00.000Z",65.4],
["2016-04-11T06:45:00.000Z",65.1],
["2016-04-11T11:25:00.000Z",65.6],
["2016-04-11T15:43:00.000Z",65.6],
["2016-04-11T20:01:00.000Z",65.6],
["2016-04-12T00:19:00.000Z",66],
["2016-04-12T04:35:00.000Z",66],
["2016-04-12T08:59:00.000Z",66.4],
["2016-04-12T13:30:00.000Z",66.9],
["2016-04-12T17:47:00.000Z",66.9],
["2016-04-12T22:03:00.000Z",67.3],
["2016-04-13T02:20:00.000Z",66.7],
["2016-04-13T06:36:00.000Z",66.7],
["2016-04-13T10:52:00.000Z",66.9],
["2016-04-13T15:08:00.000Z",66.7],
["2016-04-13T19:24:00.000Z",67.3],
["2016-04-13T23:41:00.000Z",67.8],
["2016-04-14T04:00:00.000Z",67.3],
["2016-04-14T08:16:00.000Z",67.3],
["2016-04-14T12:32:00.000Z",67.3],
["2016-04-14T16:49:00.000Z",67.3],
["2016-04-14T21:05:00.000Z",67.1],
["2016-04-15T01:21:00.000Z",67.3],
["2016-04-15T05:37:00.000Z",67.6],
["2016-04-15T09:52:00.000Z",67.8],
["2016-04-15T14:09:00.000Z",67.6],
["2016-04-15T18:25:00.000Z",68],
["2016-04-15T22:41:00.000Z",68],
["2016-04-16T02:57:00.000Z",67.8],
["2016-04-16T07:14:00.000Z",67.8],
["2016-04-16T11:29:00.000Z",68.7],
["2016-04-16T15:45:00.000Z",67.6],
["2016-04-16T20:01:00.000Z",67.8],
["2016-04-17T00:17:00.000Z",68],
["2016-04-17T04:33:00.000Z",68.7],
["2016-04-17T08:50:00.000Z",68.5],
["2016-04-17T13:06:00.000Z",68.7],
["2016-04-17T17:23:00.000Z",68.5],
["2016-04-17T21:39:00.000Z",68.3],
["2016-04-18T01:55:00.000Z",68.3],
["2016-04-18T06:10:00.000Z",68.3],
["2016-04-18T10:30:00.000Z",68.5],
["2016-04-18T14:46:00.000Z",69.2],
["2016-04-18T19:03:00.000Z",69.2],
["2016-04-18T23:19:00.000Z",69.2],
["2016-04-19T03:35:00.000Z",69.2],
["2016-04-19T07:51:00.000Z",69.2],
["2016-04-19T12:08:00.000Z",69.2],
["2016-04-19T16:24:00.000Z",69.2],
["2016-04-19T20:42:00.000Z",69.2],
["2016-04-20T00:59:00.000Z",69.2],
["2016-04-20T05:15:00.000Z",71.7],
["2016-04-20T09:28:00.000Z",71.7],
["2016-04-20T13:42:00.000Z",71.2],
["2016-04-20T17:57:00.000Z",71.2],
["2016-04-20T22:12:00.000Z",71.7],
["2016-04-21T02:25:00.000Z",72.2],
["2016-04-21T06:39:00.000Z",72.2],
["2016-04-21T10:54:00.000Z",72.2],
["2016-04-21T15:08:00.000Z",72.2],
["2016-04-21T19:22:00.000Z",72.2],
["2016-04-21T23:32:00.000Z",72.2],
["2016-04-22T03:46:00.000Z",72.5],
["2016-04-22T08:00:00.000Z",72.5],
["2016-04-22T12:14:00.000Z",72.7],
["2016-04-22T16:28:00.000Z",72.7],
["2016-04-22T20:43:00.000Z",72.2],
["2016-04-23T00:57:00.000Z",72.2],
["2016-04-23T05:16:00.000Z",72.2],
["2016-04-23T09:29:00.000Z",72.7],
["2016-04-23T13:44:00.000Z",72.5],
["2016-04-23T17:58:00.000Z",72.2],
["2016-04-23T22:12:00.000Z",72.2],
["2016-04-24T02:26:00.000Z",72.2],
["2016-04-24T06:15:14.000Z",72.5],
["2016-04-24T10:29:05.000Z",72.7],
["2016-04-24T14:43:27.000Z",72.7],
["2016-04-24T18:57:38.000Z",73.3],
["2016-04-24T23:12:22.000Z",72.7],
["2016-04-25T03:26:27.000Z",73],
["2016-04-25T07:40:15.000Z",73],
["2016-04-25T11:57:45.000Z",72.7],
["2016-04-25T16:03:14.000Z",73],
["2016-04-25T22:15:03.000Z",73.3],
["2016-04-26T02:37:47.000Z",73.3],
["2016-04-26T07:00:17.000Z",73.3],
["2016-04-26T11:22:54.000Z",72.7],
["2016-04-26T15:46:33.000Z",72.7],
["2016-04-26T20:06:40.000Z",73.3],
["2016-04-27T00:29:39.000Z",73.3],
["2016-04-27T08:18:25.000Z",74.4],
["2016-04-27T12:31:06.000Z",74.4],
["2016-04-27T16:44:35.000Z",74.4],
["2016-04-27T20:58:21.000Z",74.4],
["2016-04-28T01:17:22.000Z",74.4],
["2016-04-28T05:35:53.000Z",74.4],
["2016-04-28T09:50:42.000Z",74.4],
["2016-04-28T14:08:11.000Z",73.8],
["2016-04-28T21:09:18.000Z",73.8],
["2016-04-29T01:24:35.000Z",73.3],
["2016-04-29T05:37:34.000Z",72.7],
["2016-04-29T09:50:56.000Z",72.7],
["2016-04-29T14:07:01.000Z",72.5],
["2016-04-29T20:30:55.000Z",72.7],
["2016-04-30T00:47:59.000Z",72.2],
["2016-04-30T05:02:26.000Z",72.7],
["2016-04-30T09:15:46.000Z",72.7],
["2016-04-30T13:25:32.000Z",72.7],
["2016-04-30T17:45:05.000Z",72.7],
["2016-04-30T22:03:45.000Z",72.7],
["2016-05-01T02:18:41.000Z",72.7],
["2016-05-01T06:32:07.000Z",72.7],
["2016-05-01T10:45:06.000Z",72.7],
["2016-05-01T14:58:15.000Z",72.7],
["2016-05-01T22:45:17.000Z",72.7],
["2016-05-02T03:00:36.000Z",72.2],
["2016-05-02T07:16:51.000Z",72.7],
["2016-05-02T11:31:53.000Z",72.5],
["2016-05-02T15:50:54.000Z",72.7],
["2016-05-02T20:09:28.000Z",72.2],
["2016-05-03T00:27:15.000Z",72.2],
["2016-05-03T04:42:13.000Z",72.2],
["2016-05-03T08:57:01.000Z",72.7],
["2016-05-03T13:12:26.000Z",71.7],
["2016-05-03T17:32:48.000Z",72.2],
["2016-05-03T21:47:35.000Z",71.7],
["2016-05-04T02:02:42.000Z",71.7],
["2016-05-04T06:17:36.000Z",71.4],
["2016-05-04T10:32:48.000Z",71.2],
["2016-05-04T18:06:58.000Z",70.2],
["2016-05-04T22:24:59.000Z",70.2],
["2016-05-05T02:38:31.000Z",70.2],
["2016-05-05T06:51:30.000Z",70.2],
["2016-05-05T11:04:53.000Z",70.2],
["2016-05-05T15:19:59.000Z",70.2],
["2016-05-05T19:40:04.000Z",70.2],
["2016-05-05T23:54:52.000Z",70.2],
["2016-05-06T04:08:28.000Z",70.2],
["2016-05-06T08:21:23.000Z",70.2],
["2016-05-06T12:34:22.000Z",70.2],
["2016-05-06T16:51:52.000Z",69.9],
["2016-05-06T21:09:11.000Z",70.2],
["2016-05-07T01:19:21.000Z",70.4],
["2016-05-07T05:32:27.000Z",70.2],
["2016-05-07T09:45:20.000Z",71.9],
["2016-05-07T13:54:34.000Z",72.2],
["2016-05-07T18:08:06.000Z",72.2],
["2016-05-07T22:21:45.000Z",72.2],
["2016-05-08T02:34:40.000Z",72.2],
["2016-05-08T06:48:10.000Z",72.2],
["2016-05-08T11:01:02.000Z",72.7],
["2016-05-08T15:14:33.000Z",72.2],
["2016-05-08T19:27:49.000Z",72.7],
["2016-05-08T23:41:00.000Z",72.7],
["2016-05-09T03:54:06.000Z",72.7],
["2016-05-09T07:32:24.000Z",72.7],
["2016-05-09T11:47:12.000Z",72.2],
["2016-05-09T16:04:57.000Z",72.2],
["2016-05-09T20:26:44.000Z",72.2],
["2016-05-10T00:44:37.000Z",71.7],
["2016-05-10T05:00:17.000Z",71.7],
["2016-05-10T09:15:43.000Z",71.7],
["2016-05-10T13:31:25.000Z",71.9],
["2016-05-10T17:52:50.000Z",71.2],
["2016-05-10T22:12:21.000Z",71.7],
["2016-05-11T02:28:43.000Z",71.2],
["2016-05-11T06:45:06.000Z",71.2],
["2016-05-11T11:02:00.000Z",70.7],
["2016-05-11T15:58:25.000Z",69.9],
["2016-05-11T20:13:12.000Z",70.2],
["2016-05-12T00:26:43.000Z",70.2],
["2016-05-12T04:39:54.000Z",70.2],
["2016-05-12T20:34:45.000Z",69.4],
["2016-05-13T00:49:19.000Z",69.7],
["2016-05-13T05:03:46.000Z",69.7],
["2016-05-13T09:18:46.000Z",69.7],
["2016-05-13T13:33:35.000Z",69],
["2016-05-13T17:48:41.000Z",68.7],
["2016-05-13T22:03:30.000Z",69],
["2016-05-14T02:18:09.000Z",68.5],
["2016-05-14T06:32:54.000Z",69.4],
["2016-05-14T10:47:49.000Z",69.7],
["2016-05-14T15:02:36.000Z",69.7],
["2016-05-14T19:17:22.000Z",69.2],
["2016-05-14T23:32:03.000Z",69.7],
["2016-05-15T03:46:29.000Z",69.7],
["2016-05-15T08:01:25.000Z",69.7],
["2016-05-15T12:16:12.000Z",68.7],
["2016-05-15T16:31:09.000Z",69],
["2016-05-15T20:45:55.000Z",69.4],
["2016-05-16T01:00:38.000Z",69.7],
["2016-05-16T05:15:34.000Z",69.4],
["2016-05-16T09:30:17.000Z",69.7],
["2016-05-16T13:45:15.000Z",69.7],
["2016-05-16T18:00:08.000Z",69.7],
["2016-05-16T22:14:54.000Z",69.7],
["2016-05-17T02:29:29.000Z",69.7],
["2016-05-17T06:44:08.000Z",69.7],
["2016-05-17T10:59:28.000Z",69.7],
["2016-05-17T15:14:06.000Z",69.7],
["2016-05-17T19:04:41.000Z",69.4],
["2016-05-17T23:19:25.000Z",69.4],
["2016-05-18T03:34:04.000Z",69.4],
["2016-05-18T07:48:18.000Z",69.7],
["2016-05-18T12:03:44.000Z",69.7],
["2016-05-18T16:20:57.000Z",69.7],
["2016-05-18T20:43:12.000Z",69.7],
["2016-05-19T00:55:21.000Z",69.2],
["2016-05-19T05:08:32.000Z",69.2],
["2016-05-19T09:21:24.000Z",69.2],
["2016-05-19T13:34:18.000Z",69.2],
["2016-05-19T17:50:20.000Z",68.3],
["2016-05-19T22:09:46.000Z",68.5],
["2016-05-20T02:24:29.000Z",68.7],
["2016-05-20T06:38:13.000Z",69.2],
["2016-05-20T10:47:40.000Z",68.7],
["2016-05-20T15:05:40.000Z",68.7],
["2016-05-20T19:52:52.000Z",68.5],
["2016-05-21T00:06:37.000Z",68.5],
["2016-05-21T04:09:08.000Z",68.7],
["2016-05-21T08:21:48.000Z",68.7],
["2016-05-21T12:34:39.000Z",67.8],
["2016-05-21T16:48:11.000Z",67.1],
["2016-05-21T21:01:55.000Z",67.8],
["2016-05-22T01:15:46.000Z",67.8],
["2016-05-22T05:28:31.000Z",67.8],
["2016-05-22T09:41:16.000Z",68],
["2016-05-22T13:54:23.000Z",67.8],
["2016-05-22T18:07:58.000Z",67.8],
["2016-05-22T22:21:10.000Z",67.3],
["2016-05-23T05:29:00.000Z",67.3],
["2016-05-23T09:43:48.000Z",66.7],
["2016-05-23T14:00:59.000Z",66.4],
["2016-05-23T18:23:34.000Z",66],
["2016-05-23T22:42:34.000Z",66],
["2016-05-24T02:57:48.000Z",66],
["2016-05-24T07:12:45.000Z",66],
["2016-05-24T11:27:48.000Z",64.3],
["2016-05-24T15:46:34.000Z",63.7],
["2016-05-24T20:04:37.000Z",63.7],
["2016-05-25T00:20:59.000Z",63.9],
["2016-05-25T04:35:38.000Z",65.4],
["2016-05-25T08:50:21.000Z",66.4],
["2016-05-25T15:52:58.000Z",63.3],
["2016-05-25T20:10:24.000Z",63.1],
["2016-05-26T00:23:52.000Z",63.9],
["2016-05-26T07:14:25.000Z",64.5],
["2016-05-26T11:27:05.000Z",64.3],
["2016-05-26T15:42:54.000Z",63.9],
["2016-05-26T19:57:58.000Z",63.5],
["2016-05-27T00:11:10.000Z",63.5],
["2016-05-27T04:23:56.000Z",63.3],
["2016-05-27T08:36:34.000Z",63.5],
["2016-05-27T12:49:25.000Z",63.5],
["2016-05-27T17:02:47.000Z",63.1],
["2016-05-27T21:16:26.000Z",63.1],
["2016-05-28T01:29:03.000Z",63.1],
["2016-05-28T05:41:28.000Z",63.5],
["2016-05-28T09:54:03.000Z",63.5],
["2016-05-28T14:06:45.000Z",63.9],
["2016-05-28T17:55:47.000Z",63.9],
["2016-05-28T23:06:08.000Z",64.1],
["2016-05-29T02:24:10.000Z",64.7],
["2016-05-29T06:01:46.000Z",65.1],
["2016-05-29T10:14:42.000Z",64.7],
["2016-05-29T14:27:50.000Z",64.7],
["2016-05-29T18:40:59.000Z",65.4],
["2016-05-29T22:54:18.000Z",64.7],
["2016-05-30T03:07:28.000Z",64.7],
["2016-05-30T07:20:40.000Z",65.1],
["2016-05-30T11:29:23.000Z",65.1],
["2016-05-30T20:02:21.000Z",64.7],
["2016-05-31T00:15:55.000Z",64.3],
["2016-05-31T04:29:07.000Z",64.7],
["2016-05-31T08:42:52.000Z",64.7],
["2016-05-31T12:56:18.000Z",64.7],
["2016-05-31T17:10:18.000Z",64.7],
["2016-05-31T21:24:58.000Z",65.6],
["2016-06-01T01:38:09.000Z",66],
["2016-06-01T05:51:12.000Z",66.4],
["2016-06-01T10:04:42.000Z",66.4],
["2016-06-01T14:18:17.000Z",66.9],
["2016-06-01T18:31:58.000Z",66.4],
["2016-06-01T22:45:18.000Z",66],
["2016-06-02T02:55:09.000Z",66],
["2016-06-02T07:08:24.000Z",66],
["2016-06-02T11:22:10.000Z",66.4],
["2016-06-02T15:35:46.000Z",66.7],
["2016-06-02T19:49:24.000Z",65.4],
["2016-06-03T00:03:58.000Z",66.9],
["2016-06-03T04:17:12.000Z",67.1],
["2016-06-03T08:30:28.000Z",67.1],
["2016-06-03T12:43:40.000Z",66.9],
["2016-06-03T16:57:10.000Z",66.9],
["2016-06-03T21:10:34.000Z",67.3],
["2016-06-04T01:23:55.000Z",69],
["2016-06-04T05:37:16.000Z",69.7],
["2016-06-04T09:26:03.000Z",70.2],
["2016-06-04T13:39:18.000Z",70.2],
["2016-06-04T17:52:27.000Z",70.2],
["2016-06-04T22:05:46.000Z",70.2],
["2016-06-05T02:18:41.000Z",70.7],
["2016-06-05T06:31:26.000Z",70.7],
["2016-06-05T10:44:20.000Z",70.2],
["2016-06-05T14:57:47.000Z",69.4],
["2016-06-05T19:10:50.000Z",69.7],
["2016-06-05T23:23:55.000Z",70.2],
["2016-06-06T03:36:51.000Z",70.2],
["2016-06-06T07:49:47.000Z",70.2],
["2016-06-06T12:03:11.000Z",70.2],
["2016-06-06T16:12:40.000Z",69.9],
["2016-06-06T19:31:19.000Z",70.2],
["2016-06-06T23:44:18.000Z",70.7],
["2016-06-07T03:57:13.000Z",70.2],
["2016-06-07T08:10:02.000Z",70.7],
["2016-06-07T12:23:02.000Z",70.7],
["2016-06-07T16:35:45.000Z",71.2],
["2016-06-07T20:48:30.000Z",71.7],
["2016-06-08T01:01:48.000Z",72.2],
["2016-06-08T05:14:12.000Z",73.3],
["2016-06-08T09:26:50.000Z",73],
["2016-06-08T13:39:46.000Z",72.7],
["2016-06-08T18:02:58.000Z",71.4],
["2016-06-08T22:12:59.000Z",72.2],
["2016-06-09T02:22:57.000Z",72.7],
["2016-06-09T06:32:49.000Z",72.7],
["2016-06-09T10:42:55.000Z",72.7],
["2016-06-09T14:52:58.000Z",72.7],
["2016-06-09T18:58:28.000Z",72.7],
["2016-06-09T23:08:25.000Z",73.3],
["2016-06-10T03:18:06.000Z",73.8],
["2016-06-10T07:28:09.000Z",73.3],
["2016-06-10T11:38:00.000Z",73.3],
["2016-06-10T15:43:56.000Z",73.3],
["2016-06-10T19:45:03.000Z",74.4],
["2016-06-10T20:08:51.000Z",74.4],
["2016-06-10T20:39:06.000Z",74.1],
["2016-06-10T20:47:54.000Z",74.1],
["2016-06-10T23:43:54.000Z",73.8],
["2016-06-11T03:53:58.000Z",73.8],
["2016-06-11T08:04:07.000Z",73.5],
["2016-06-11T12:14:24.000Z",73.3],
["2016-06-11T16:24:44.000Z",73],
["2016-06-11T20:34:54.000Z",73.3],
["2016-06-12T00:44:58.000Z",73.3],
["2016-06-12T04:55:04.000Z",73.3],
["2016-06-12T08:55:06.000Z",73.3],
["2016-06-12T13:00:21.000Z",73.3],
["2016-06-12T17:00:35.000Z",70.7],
["2016-06-12T21:10:45.000Z",70.2],
["2016-06-13T01:20:51.000Z",72.2],
["2016-06-13T05:30:53.000Z",72.7],
["2016-06-13T09:41:07.000Z",73.3],
["2016-06-13T13:51:33.000Z",72.7],
["2016-06-13T18:01:53.000Z",72.7],
["2016-06-13T22:11:52.000Z",72.7],
["2016-06-14T02:21:36.000Z",72.7],
["2016-06-14T06:27:14.000Z",72.7],
["2016-06-14T10:37:06.000Z",72.5],
["2016-06-14T17:33:52.000Z",72.7],
["2016-06-15T01:44:20.000Z",72.7],
["2016-06-15T05:55:51.000Z",73.3],
["2016-06-15T10:07:46.000Z",73.3],
["2016-06-15T14:19:30.000Z",73.3],
["2016-06-15T18:31:47.000Z",73.8],
["2016-06-15T22:43:47.000Z",73.8],
["2016-06-16T02:56:59.000Z",73.8],
["2016-06-16T07:08:46.000Z",73.8],
["2016-06-16T11:20:38.000Z",73.8],
["2016-06-16T15:32:28.000Z",73.8],
["2016-06-16T19:44:23.000Z",73.8],
["2016-06-16T23:56:12.000Z",73.8],
["2016-06-17T04:07:46.000Z",74.4],
["2016-06-17T08:20:51.000Z",74.4],
["2016-06-17T12:32:34.000Z",74.4],
["2016-06-17T16:44:30.000Z",74.4],
["2016-06-17T20:57:57.000Z",74.4],
["2016-06-18T01:09:54.000Z",74.4],
["2016-06-18T05:21:27.000Z",74.6],
["2016-06-18T09:33:08.000Z",74.9],
["2016-06-18T13:44:46.000Z",74.9],
["2016-06-18T17:56:28.000Z",74.9],
["2016-06-18T22:08:16.000Z",75.5],
["2016-06-19T02:20:25.000Z",75.5],
["2016-06-19T06:32:02.000Z",74.9],
["2016-06-19T10:43:43.000Z",74.9],
["2016-06-19T14:55:21.000Z",74.4],
["2016-06-19T19:07:29.000Z",74.4],
["2016-06-19T23:19:11.000Z",74.4],
["2016-06-20T03:30:43.000Z",74.4],
["2016-06-20T07:42:34.000Z",73.8],
["2016-06-20T11:54:31.000Z",74.4],
["2016-06-20T15:51:35.000Z",73.8],
["2016-06-20T20:03:47.000Z",74.4],
["2016-06-21T00:11:07.000Z",74.4],
["2016-06-21T04:22:46.000Z",74.9],
["2016-06-21T08:34:30.000Z",75.5],
["2016-06-21T12:46:21.000Z",75.5],
["2016-06-21T16:53:43.000Z",75.5],
["2016-06-21T21:05:48.000Z",75.5],
["2016-06-22T01:17:36.000Z",75.5],
["2016-06-22T07:20:03.000Z",75.5],
["2016-06-22T11:31:59.000Z",74.9],
["2016-06-22T15:44:00.000Z",74.4],
["2016-06-22T19:51:44.000Z",74.4],
["2016-06-23T00:03:50.000Z",75.5],
["2016-06-23T04:15:29.000Z",75.5],
["2016-06-23T08:27:06.000Z",75.5],
["2016-06-23T12:33:59.000Z",75.5],
["2016-06-23T16:46:06.000Z",75.5],
["2016-06-23T20:58:23.000Z",76],
["2016-06-24T01:10:13.000Z",75.8],
["2016-06-24T07:32:04.000Z",73.8],
["2016-06-24T11:44:08.000Z",72.2],
["2016-06-24T15:56:04.000Z",72.2],
["2016-06-25T05:39:31.000Z",73.8],
["2016-06-25T09:40:18.000Z",73.8],
["2016-06-25T13:36:59.000Z",73.3],
["2016-06-25T17:47:15.000Z",73.3],
["2016-06-25T21:57:15.000Z",73.3],
["2016-06-26T02:07:12.000Z",73.3],
["2016-06-26T06:16:51.000Z",73.3],
["2016-06-26T10:26:36.000Z",72.7],
["2016-06-26T14:31:33.000Z",72.7],
["2016-06-26T18:41:34.000Z",73],
["2016-06-26T22:46:27.000Z",73.8],
["2016-06-27T02:37:08.000Z",73.8],
["2016-06-27T06:47:34.000Z",73.5],
["2016-06-27T10:57:35.000Z",73.3],
["2016-06-27T15:08:29.000Z",73.3],
["2016-06-27T19:19:01.000Z",73.3],
["2016-06-27T23:29:15.000Z",73.3],
["2016-06-28T03:39:45.000Z",74.4],
["2016-06-28T07:49:42.000Z",74.4],
["2016-06-28T12:00:17.000Z",74.9],
["2016-06-28T16:11:29.000Z",74.4],
["2016-06-28T20:24:01.000Z",74.4],
["2016-06-29T00:29:30.000Z",74.4],
["2016-06-29T04:24:34.000Z",73.8],
["2016-06-29T08:34:36.000Z",74.1],
["2016-06-29T12:45:13.000Z",73.8],
["2016-06-29T16:56:04.000Z",73.8],
["2016-06-29T21:07:05.000Z",73.8],
["2016-06-30T01:17:13.000Z",73.8],
["2016-06-30T05:22:14.000Z",73.8],
["2016-06-30T09:27:16.000Z",73.8],
["2016-06-30T13:27:33.000Z",73.8],
["2016-06-30T17:37:58.000Z",73.8],
["2016-06-30T21:48:25.000Z",73.3],
["2016-07-01T01:50:03.000Z",73.3],
["2016-07-01T05:59:57.000Z",73.3],
["2016-07-01T10:10:03.000Z",72.7],
["2016-07-01T14:15:16.000Z",73],
["2016-07-01T18:21:11.000Z",72.7],
["2016-07-01T22:31:12.000Z",72.7],
["2016-07-02T02:41:07.000Z",72.7],
["2016-07-02T06:51:01.000Z",72.7],
["2016-07-02T11:00:55.000Z",72.2],
["2016-07-02T15:10:55.000Z",72.2],
["2016-07-02T19:20:58.000Z",71.7],
["2016-07-02T23:30:54.000Z",72.2],
["2016-07-03T03:40:56.000Z",72.2],
["2016-07-03T07:50:56.000Z",72.2],
["2016-07-03T12:00:48.000Z",71.7],
["2016-07-03T16:10:45.000Z",71.7],
["2016-07-03T20:10:59.000Z",71.2],
["2016-07-04T00:20:59.000Z",71.7],
["2016-07-04T04:31:03.000Z",71.7],
["2016-07-04T08:41:01.000Z",71.7],
["2016-07-04T12:51:08.000Z",72.2],
["2016-07-04T17:01:12.000Z",71.7],
["2016-07-04T20:52:24.000Z",71.2],
["2016-07-05T01:02:54.000Z",71.7],
["2016-07-05T05:12:46.000Z",71.9],
["2016-07-05T09:22:54.000Z",72.2],
["2016-07-05T13:28:01.000Z",71.4],
["2016-07-05T17:38:30.000Z",73.8],
["2016-07-05T21:49:11.000Z",73.8],
["2016-07-06T01:59:36.000Z",73.8],
["2016-07-06T06:09:57.000Z",74.4],
["2016-07-06T10:20:00.000Z",73.3],
["2016-07-06T14:26:15.000Z",73.3],
["2016-07-06T18:36:41.000Z",72.7],
["2016-07-06T22:42:09.000Z",72.7],
["2016-07-07T02:52:09.000Z",73.3],
["2016-07-07T07:02:02.000Z",73.3],
["2016-07-07T11:07:14.000Z",73.3],
["2016-07-07T15:17:34.000Z",73.3],
["2016-07-07T19:28:08.000Z",72.7],
["2016-07-07T23:33:26.000Z",72.2],
["2016-07-08T03:43:33.000Z",72.7],
["2016-07-08T07:53:35.000Z",72.7],
["2016-07-08T12:03:57.000Z",72.7],
["2016-07-08T16:14:19.000Z",73],
["2016-07-08T20:24:47.000Z",73.3],
["2016-07-09T00:34:49.000Z",73.3],
["2016-07-09T04:39:40.000Z",73.3],
["2016-07-09T08:49:47.000Z",73],
["2016-07-09T12:59:50.000Z",73.3],
["2016-07-09T17:09:51.000Z",73.3],
["2016-07-09T21:14:49.000Z",73.3],
["2016-07-10T01:24:55.000Z",73.3],
["2016-07-10T05:34:47.000Z",73.3],
["2016-07-10T09:44:43.000Z",73.3],
["2016-07-10T13:54:50.000Z",73.3],
["2016-07-10T18:04:55.000Z",73.3],
["2016-07-10T22:14:51.000Z",73.5],
["2016-07-11T02:24:46.000Z",74.1],
["2016-07-11T06:34:45.000Z",74.4],
["2016-07-11T10:45:23.000Z",74.4],
["2016-07-11T14:51:24.000Z",74.4],
["2016-07-11T19:02:15.000Z",74.4],
["2016-07-11T23:12:37.000Z",74.4],
["2016-07-12T03:17:40.000Z",74.4],
["2016-07-12T07:27:47.000Z",74.4],
["2016-07-12T11:38:29.000Z",74.4],
["2016-07-12T15:50:03.000Z",74.4],
["2016-07-12T20:00:54.000Z",74.4],
["2016-07-13T00:11:13.000Z",74.4],
["2016-07-13T04:21:26.000Z",74.6],
["2016-07-13T08:31:44.000Z",74.4],
["2016-07-13T12:42:07.000Z",73.5],
["2016-07-13T16:52:54.000Z",72.7],
["2016-07-13T20:34:51.000Z",72.7],
["2016-07-14T00:45:11.000Z",72.7],
["2016-07-14T04:55:10.000Z",72.2],
["2016-07-14T09:05:06.000Z",72.7],
["2016-07-14T13:16:33.000Z",72.2],
["2016-07-14T17:25:51.000Z",69.7],
["2016-07-14T21:38:20.000Z",69.7],
["2016-07-15T01:48:27.000Z",68.5],
["2016-07-15T05:53:37.000Z",68.3],
["2016-07-15T10:04:09.000Z",68.7],
["2016-07-15T14:14:47.000Z",69.7],
["2016-07-15T18:25:40.000Z",70.2],
["2016-07-15T22:35:52.000Z",70.2],
["2016-07-16T02:45:59.000Z",70.2],
["2016-07-16T06:56:19.000Z",69.7],
["2016-07-16T11:06:23.000Z",69.9],
["2016-07-16T18:32:03.000Z",69.7],
["2016-07-16T22:42:04.000Z",69.2],
["2016-07-17T02:51:50.000Z",69.4],
["2016-07-17T07:01:31.000Z",69.2],
["2016-07-17T11:11:22.000Z",69.2],
["2016-07-17T15:21:23.000Z",68.7],
["2016-07-17T19:31:21.000Z",68.7],
["2016-07-17T23:41:14.000Z",68.7],
["2016-07-18T03:50:55.000Z",68.7],
["2016-07-18T08:29:31.000Z",68.7],
["2016-07-18T12:39:36.000Z",68.7],
["2016-07-18T16:46:15.000Z",68.7],
["2016-07-19T21:27:09.000Z",69.7],
["2016-07-20T04:03:56.000Z",68.7],
["2016-07-20T08:15:42.000Z",68.3],
["2016-07-20T12:26:12.000Z",68.7],
["2016-07-20T19:07:29.000Z",68.7],
["2016-07-20T23:18:06.000Z",69.2],
["2016-07-21T03:27:35.000Z",70.2],
["2016-07-21T07:37:13.000Z",71.2],
["2016-07-21T11:48:37.000Z",71.2],
["2016-07-21T16:00:12.000Z",71.2],
["2016-07-21T20:11:10.000Z",70.7],
["2016-07-22T00:15:56.000Z",70.4],
["2016-07-22T04:25:21.000Z",71.4],
["2016-07-22T08:34:57.000Z",70.7],
["2016-07-22T12:20:57.000Z",69.9],
["2016-07-22T17:18:45.000Z",69.2],
["2016-07-22T21:23:57.000Z",69.2],
["2016-07-23T01:18:44.000Z",69.4],
["2016-07-23T07:41:47.000Z",69.7],
["2016-07-23T11:44:45.000Z",69.7],
["2016-07-23T15:41:59.000Z",69.7],
["2016-07-23T19:40:07.000Z",69.7],
["2016-07-23T23:47:03.000Z",69.4],
["2016-07-24T03:54:02.000Z",69.7],
["2016-07-24T08:00:57.000Z",69.4],
["2016-07-24T12:07:56.000Z",68.7],
["2016-07-24T16:10:01.000Z",69.2],
["2016-07-24T20:17:14.000Z",69.2],
["2016-07-25T00:24:31.000Z",68.7],
["2016-07-25T04:31:24.000Z",68.7],
["2016-07-25T08:38:28.000Z",69.2],
["2016-07-25T12:45:40.000Z",67.3],
["2016-07-25T16:53:56.000Z",66.9],
["2016-07-25T21:02:03.000Z",66],
["2016-07-26T01:09:16.000Z",66.7],
["2016-07-26T05:06:34.000Z",67.3],
["2016-07-26T08:59:41.000Z",67.3],
["2016-07-26T13:06:47.000Z",66.4],
["2016-07-26T17:15:57.000Z",66.4],
["2016-07-26T17:59:43.000Z",65.6],
["2016-07-26T20:19:36.000Z",66.4],
["2016-07-27T02:55:45.000Z",67.8],
["2016-07-27T07:02:34.000Z",66.4],
["2016-07-27T11:12:45.000Z",65.8]]
')
as_frame = data.frame(date=date(electionbettingodds.com[,1]),prob = as.numeric(electionbettingodds.com[,2])/100) %>% distinct(date,.keep_all=TRUE)
internet_odds = replot(as_frame)
internet_odds$plot + labs(title="This model isn't able to do anything statistically significant with election betting odds.\n(If it could, I probably should go make some money.")
summary(internet_odds$model)
##
## Call:
## lm(formula = tomorrow ~ offset(logit) + diff4 + 0, data = ts)
##
## Residuals:
## Min 1Q Median 3Q Max
## -0.201621 -0.019811 -0.000132 0.022523 0.242148
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## diff4 0.03243 0.02715 1.195 0.233
##
## Residual standard error: 0.04299 on 286 degrees of freedom
## (1 observation deleted due to missingness)
## Multiple R-squared: 0.9951, Adjusted R-squared: 0.9951
## F-statistic: 5.862e+04 on 1 and 286 DF, p-value: < 2.2e-16