This visualization highlights the impact. All bins are the same height, regardless of their value (e.g. the bin for values between 0.1-0.2
is the same height as the one for values from 9000-10000
). We’re interested in the amount of entries in a bin (shown by the color), not the value of the bin.
You can change the filename
value to any of the .csv
files in the gist (blocked.csv
, connected.csv
, duration.csv
, etc)
Each column is an hour on May 1st, 2016. Each row is a bin (e.g. 1-2ms, 300-400ms). The color in each cell is scaled based on the number of entries in that bin.
Forked from mbostock‘s block: Heatmap (2D Histogram, CSV)
forked from jfsiii‘s block: Heatmap - weighted by counts
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="barchart.css" />
</head>
<body>
<div class="heatmap-container"></div>
<div class="histogram-container"></div>
<script src="//d3js.org/d3.v4.0.0-alpha.41.js"></script>
<script src="barchart.js"></script>
<script src="heatmap.js"></script>
</body>
</html>
.bar rect {
fill: steelblue;
shape-rendering: crispEdges;
}
.bar text {
fill: #fff;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
function BarChart() {
var margin = {top: 25, right: 25, bottom: 25, left: 25},
el = d3.select(this).node(),
width = el.clientWidth - margin.left - margin.right,
height = el.clientHeight - margin.top - margin.bottom,
xValue = function(d) { return d.x; },
yValue = function(d) { return d.y; },
tickFormat = function(d, i) { return d3.format(".1s")(d) },
xScale = d3.scaleLinear(),
yScale = d3.scaleLinear(),
xAxis = d3.axisBottom().scale(xScale).tickSize(6, 0),
yAxis = d3.axisLeft().scale(yScale);
function chart(selection) {
selection.each(function(data) {
var dx = (data[0].dx === undefined)
? function() { return width/data.length - 1 }
: function(d){ return xValue(d.dx) - 1 };
// Update the x-scale.
var xDomain = d3.extent(data, xValue);
console.log(xDomain)
xScale
.domain(xDomain)
.range([0, width]);
// Update the y-scale.
var yDomain = [0, d3.max(data, yValue)];
console.log('yDomain', yDomain)
yScale
.domain(yDomain)
.range([height, 0]);
// Enter svg
var svg = d3.select(this).selectAll("svg").data([data]),
gEnter = svg.enter().append("svg")
.append("g")
.classed("plot",true);
// Enter Axes
gEnter.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
gEnter.append("g")
.attr("class", "y axis")
.call(yAxis)
//Enter Bars
var bar = gEnter.selectAll(".bar").data(data),
barEnter = bar.enter().append("g")
.attr("class", "bar");
barEnter.append("rect");
barEnter.append("text");
// Update the outer dimensions.
svg
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom);
// Update the inner dimensions.
var g = svg.select("g.plot")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// Update the x-axis.
g.select(".x.axis")
.attr("transform", "translate(0," + yScale.range()[0] + ")")
.call(xAxis);
// Update the bars
g.selectAll("g.bar")
.attr("transform", function(d){
return "translate(" + xScale(xValue(d)) + ","
+ yScale(yValue(d)) + ")"
});
g.selectAll(".bar rect")
.attr("width", dx)
.attr("height", function(d) { return height - yScale(yValue(d)); })
g.selectAll(".bar text")
.attr("dy", ".75em")
.attr("x", function(d) { return .5*dx(d); })
.attr("y", 6) //stand off from top of bar
.attr("text-anchor", "middle")
.text(d => tickFormat(yValue(d)));
});
}
chart.margin = function(_) {
if (!arguments.length) return margin;
margin = _;
return chart;
};
chart.width = function(_) {
if (!arguments.length) return width;
width = _;
return chart;
};
chart.height = function(_) {
if (!arguments.length) return height;
height = _;
return chart;
};
chart.x = function(_) {
if (!arguments.length) return xValue;
xValue = _;
return chart;
};
chart.y = function(_) {
if (!arguments.length) return yValue;
yValue = _;
return chart;
};
chart.xScale = function (_) {
if (!arguments.length) return xScale;
xScale = _;
return chart;
};
chart.yScale = function (_) {
if (!arguments.length) return yScale;
yScale = _;
return chart;
};
chart.xAxis = function (_) {
if (!arguments.length) return xAxis;
xAxis = _;
return chart;
};
chart.yAxis = function (_) {
if (!arguments.length) return yAxis;
yAxis = _;
return chart;
};
return chart;
}
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,0,2016-05-01-00
30,0,2016-05-01-00
40,0,2016-05-01-00
50,0,2016-05-01-00
60,0,2016-05-01-00
70,0,2016-05-01-00
80,0,2016-05-01-00
90,0,2016-05-01-00
100,0,2016-05-01-00
200,0,2016-05-01-00
300,0,2016-05-01-00
400,0,2016-05-01-00
500,0,2016-05-01-00
600,0,2016-05-01-00
700,0,2016-05-01-00
800,0,2016-05-01-00
900,0,2016-05-01-00
1000,0,2016-05-01-00
2000,0,2016-05-01-00
3000,0,2016-05-01-00
4000,0,2016-05-01-00
5000,0,2016-05-01-00
6000,0,2016-05-01-00
7000,0,2016-05-01-00
8000,0,2016-05-01-00
9000,0,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,0,2016-05-01-01
30,0,2016-05-01-01
40,0,2016-05-01-01
50,0,2016-05-01-01
60,0,2016-05-01-01
70,0,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,0,2016-05-01-01
200,0,2016-05-01-01
300,0,2016-05-01-01
400,0,2016-05-01-01
500,0,2016-05-01-01
600,0,2016-05-01-01
700,0,2016-05-01-01
800,0,2016-05-01-01
900,0,2016-05-01-01
1000,0,2016-05-01-01
2000,0,2016-05-01-01
3000,0,2016-05-01-01
4000,0,2016-05-01-01
5000,0,2016-05-01-01
6000,0,2016-05-01-01
7000,0,2016-05-01-01
8000,0,2016-05-01-01
9000,0,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,0,2016-05-01-06
30,0,2016-05-01-06
40,0,2016-05-01-06
50,0,2016-05-01-06
60,0,2016-05-01-06
70,0,2016-05-01-06
80,0,2016-05-01-06
90,0,2016-05-01-06
100,0,2016-05-01-06
200,0,2016-05-01-06
300,0,2016-05-01-06
400,0,2016-05-01-06
500,0,2016-05-01-06
600,0,2016-05-01-06
700,0,2016-05-01-06
800,0,2016-05-01-06
900,0,2016-05-01-06
1000,0,2016-05-01-06
2000,0,2016-05-01-06
3000,0,2016-05-01-06
4000,0,2016-05-01-06
5000,0,2016-05-01-06
6000,0,2016-05-01-06
7000,0,2016-05-01-06
8000,0,2016-05-01-06
9000,0,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,0,2016-05-01-10
30,0,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,0,2016-05-01-10
70,0,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,0,2016-05-01-10
200,0,2016-05-01-10
300,0,2016-05-01-10
400,0,2016-05-01-10
500,0,2016-05-01-10
600,0,2016-05-01-10
700,0,2016-05-01-10
800,0,2016-05-01-10
900,0,2016-05-01-10
1000,0,2016-05-01-10
2000,0,2016-05-01-10
3000,0,2016-05-01-10
4000,0,2016-05-01-10
5000,0,2016-05-01-10
6000,0,2016-05-01-10
7000,0,2016-05-01-10
8000,0,2016-05-01-10
9000,0,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,0,2016-05-01-02
30,0,2016-05-01-02
40,0,2016-05-01-02
50,0,2016-05-01-02
60,0,2016-05-01-02
70,0,2016-05-01-02
80,0,2016-05-01-02
90,0,2016-05-01-02
100,0,2016-05-01-02
200,0,2016-05-01-02
300,0,2016-05-01-02
400,0,2016-05-01-02
500,0,2016-05-01-02
600,0,2016-05-01-02
700,0,2016-05-01-02
800,0,2016-05-01-02
900,0,2016-05-01-02
1000,0,2016-05-01-02
2000,0,2016-05-01-02
3000,0,2016-05-01-02
4000,0,2016-05-01-02
5000,0,2016-05-01-02
6000,0,2016-05-01-02
7000,0,2016-05-01-02
8000,0,2016-05-01-02
9000,0,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,0,2016-05-01-04
40,0,2016-05-01-04
50,0,2016-05-01-04
60,0,2016-05-01-04
70,0,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,0,2016-05-01-04
200,0,2016-05-01-04
300,0,2016-05-01-04
400,0,2016-05-01-04
500,0,2016-05-01-04
600,0,2016-05-01-04
700,0,2016-05-01-04
800,0,2016-05-01-04
900,0,2016-05-01-04
1000,0,2016-05-01-04
2000,0,2016-05-01-04
3000,0,2016-05-01-04
4000,0,2016-05-01-04
5000,0,2016-05-01-04
6000,0,2016-05-01-04
7000,0,2016-05-01-04
8000,0,2016-05-01-04
9000,0,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,0,2016-05-01-03
30,0,2016-05-01-03
40,0,2016-05-01-03
50,0,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,0,2016-05-01-03
90,0,2016-05-01-03
100,0,2016-05-01-03
200,0,2016-05-01-03
300,0,2016-05-01-03
400,0,2016-05-01-03
500,0,2016-05-01-03
600,0,2016-05-01-03
700,0,2016-05-01-03
800,0,2016-05-01-03
900,0,2016-05-01-03
1000,0,2016-05-01-03
2000,0,2016-05-01-03
3000,0,2016-05-01-03
4000,0,2016-05-01-03
5000,0,2016-05-01-03
6000,0,2016-05-01-03
7000,0,2016-05-01-03
8000,0,2016-05-01-03
9000,0,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,0,2016-05-01-05
30,0,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,0,2016-05-01-05
70,0,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,0,2016-05-01-05
200,0,2016-05-01-05
300,0,2016-05-01-05
400,0,2016-05-01-05
500,0,2016-05-01-05
600,0,2016-05-01-05
700,0,2016-05-01-05
800,0,2016-05-01-05
900,0,2016-05-01-05
1000,0,2016-05-01-05
2000,0,2016-05-01-05
3000,0,2016-05-01-05
4000,0,2016-05-01-05
5000,0,2016-05-01-05
6000,0,2016-05-01-05
7000,0,2016-05-01-05
8000,0,2016-05-01-05
9000,0,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,0,2016-05-01-07
30,0,2016-05-01-07
40,0,2016-05-01-07
50,0,2016-05-01-07
60,0,2016-05-01-07
70,0,2016-05-01-07
80,0,2016-05-01-07
90,0,2016-05-01-07
100,0,2016-05-01-07
200,0,2016-05-01-07
300,0,2016-05-01-07
400,0,2016-05-01-07
500,0,2016-05-01-07
600,0,2016-05-01-07
700,0,2016-05-01-07
800,0,2016-05-01-07
900,0,2016-05-01-07
1000,0,2016-05-01-07
2000,0,2016-05-01-07
3000,0,2016-05-01-07
4000,0,2016-05-01-07
5000,0,2016-05-01-07
6000,0,2016-05-01-07
7000,0,2016-05-01-07
8000,0,2016-05-01-07
9000,0,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,0,2016-05-01-11
30,0,2016-05-01-11
40,0,2016-05-01-11
50,0,2016-05-01-11
60,0,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,0,2016-05-01-11
100,0,2016-05-01-11
200,0,2016-05-01-11
300,0,2016-05-01-11
400,0,2016-05-01-11
500,0,2016-05-01-11
600,0,2016-05-01-11
700,0,2016-05-01-11
800,0,2016-05-01-11
900,0,2016-05-01-11
1000,0,2016-05-01-11
2000,0,2016-05-01-11
3000,0,2016-05-01-11
4000,0,2016-05-01-11
5000,0,2016-05-01-11
6000,0,2016-05-01-11
7000,0,2016-05-01-11
8000,0,2016-05-01-11
9000,0,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,0,2016-05-01-09
30,0,2016-05-01-09
40,0,2016-05-01-09
50,0,2016-05-01-09
60,0,2016-05-01-09
70,0,2016-05-01-09
80,0,2016-05-01-09
90,0,2016-05-01-09
100,0,2016-05-01-09
200,0,2016-05-01-09
300,0,2016-05-01-09
400,0,2016-05-01-09
500,0,2016-05-01-09
600,0,2016-05-01-09
700,0,2016-05-01-09
800,0,2016-05-01-09
900,0,2016-05-01-09
1000,0,2016-05-01-09
2000,0,2016-05-01-09
3000,0,2016-05-01-09
4000,0,2016-05-01-09
5000,0,2016-05-01-09
6000,0,2016-05-01-09
7000,0,2016-05-01-09
8000,0,2016-05-01-09
9000,0,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,0,2016-05-01-08
30,0,2016-05-01-08
40,0,2016-05-01-08
50,0,2016-05-01-08
60,0,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,0,2016-05-01-08
200,0,2016-05-01-08
300,0,2016-05-01-08
400,0,2016-05-01-08
500,0,2016-05-01-08
600,0,2016-05-01-08
700,0,2016-05-01-08
800,0,2016-05-01-08
900,0,2016-05-01-08
1000,0,2016-05-01-08
2000,0,2016-05-01-08
3000,0,2016-05-01-08
4000,0,2016-05-01-08
5000,0,2016-05-01-08
6000,0,2016-05-01-08
7000,0,2016-05-01-08
8000,0,2016-05-01-08
9000,0,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,0,2016-05-01-18
30,0,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,0,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,0,2016-05-01-18
100,0,2016-05-01-18
200,0,2016-05-01-18
300,0,2016-05-01-18
400,0,2016-05-01-18
500,0,2016-05-01-18
600,0,2016-05-01-18
700,0,2016-05-01-18
800,0,2016-05-01-18
900,0,2016-05-01-18
1000,0,2016-05-01-18
2000,0,2016-05-01-18
3000,0,2016-05-01-18
4000,0,2016-05-01-18
5000,0,2016-05-01-18
6000,0,2016-05-01-18
7000,0,2016-05-01-18
8000,0,2016-05-01-18
9000,0,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,0,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,0,2016-05-01-15
60,0,2016-05-01-15
70,0,2016-05-01-15
80,0,2016-05-01-15
90,0,2016-05-01-15
100,0,2016-05-01-15
200,0,2016-05-01-15
300,0,2016-05-01-15
400,0,2016-05-01-15
500,0,2016-05-01-15
600,0,2016-05-01-15
700,0,2016-05-01-15
800,0,2016-05-01-15
900,0,2016-05-01-15
1000,0,2016-05-01-15
2000,0,2016-05-01-15
3000,0,2016-05-01-15
4000,0,2016-05-01-15
5000,0,2016-05-01-15
6000,0,2016-05-01-15
7000,0,2016-05-01-15
8000,0,2016-05-01-15
9000,0,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,0,2016-05-01-16
30,0,2016-05-01-16
40,0,2016-05-01-16
50,0,2016-05-01-16
60,0,2016-05-01-16
70,0,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,0,2016-05-01-16
200,0,2016-05-01-16
300,0,2016-05-01-16
400,0,2016-05-01-16
500,0,2016-05-01-16
600,0,2016-05-01-16
700,0,2016-05-01-16
800,0,2016-05-01-16
900,0,2016-05-01-16
1000,0,2016-05-01-16
2000,0,2016-05-01-16
3000,0,2016-05-01-16
4000,0,2016-05-01-16
5000,0,2016-05-01-16
6000,0,2016-05-01-16
7000,0,2016-05-01-16
8000,0,2016-05-01-16
9000,0,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,0,2016-05-01-13
30,0,2016-05-01-13
40,0,2016-05-01-13
50,0,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,0,2016-05-01-13
200,0,2016-05-01-13
300,0,2016-05-01-13
400,0,2016-05-01-13
500,0,2016-05-01-13
600,0,2016-05-01-13
700,0,2016-05-01-13
800,0,2016-05-01-13
900,0,2016-05-01-13
1000,0,2016-05-01-13
2000,0,2016-05-01-13
3000,0,2016-05-01-13
4000,0,2016-05-01-13
5000,0,2016-05-01-13
6000,0,2016-05-01-13
7000,0,2016-05-01-13
8000,0,2016-05-01-13
9000,0,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,0,2016-05-01-12
30,0,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,0,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,0,2016-05-01-12
100,0,2016-05-01-12
200,0,2016-05-01-12
300,0,2016-05-01-12
400,0,2016-05-01-12
500,0,2016-05-01-12
600,0,2016-05-01-12
700,0,2016-05-01-12
800,0,2016-05-01-12
900,0,2016-05-01-12
1000,0,2016-05-01-12
2000,0,2016-05-01-12
3000,0,2016-05-01-12
4000,0,2016-05-01-12
5000,0,2016-05-01-12
6000,0,2016-05-01-12
7000,0,2016-05-01-12
8000,0,2016-05-01-12
9000,0,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,0,2016-05-01-23
70,0,2016-05-01-23
80,0,2016-05-01-23
90,0,2016-05-01-23
100,0,2016-05-01-23
200,0,2016-05-01-23
300,0,2016-05-01-23
400,0,2016-05-01-23
500,0,2016-05-01-23
600,0,2016-05-01-23
700,0,2016-05-01-23
800,0,2016-05-01-23
900,0,2016-05-01-23
1000,0,2016-05-01-23
2000,0,2016-05-01-23
3000,0,2016-05-01-23
4000,0,2016-05-01-23
5000,0,2016-05-01-23
6000,0,2016-05-01-23
7000,0,2016-05-01-23
8000,0,2016-05-01-23
9000,0,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,0,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,0,2016-05-01-14
90,0,2016-05-01-14
100,0,2016-05-01-14
200,0,2016-05-01-14
300,0,2016-05-01-14
400,0,2016-05-01-14
500,0,2016-05-01-14
600,0,2016-05-01-14
700,0,2016-05-01-14
800,0,2016-05-01-14
900,0,2016-05-01-14
1000,0,2016-05-01-14
2000,0,2016-05-01-14
3000,0,2016-05-01-14
4000,0,2016-05-01-14
5000,0,2016-05-01-14
6000,0,2016-05-01-14
7000,0,2016-05-01-14
8000,0,2016-05-01-14
9000,0,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,0,2016-05-01-17
30,0,2016-05-01-17
40,0,2016-05-01-17
50,0,2016-05-01-17
60,0,2016-05-01-17
70,0,2016-05-01-17
80,0,2016-05-01-17
90,0,2016-05-01-17
100,0,2016-05-01-17
200,0,2016-05-01-17
300,0,2016-05-01-17
400,0,2016-05-01-17
500,0,2016-05-01-17
600,0,2016-05-01-17
700,0,2016-05-01-17
800,0,2016-05-01-17
900,0,2016-05-01-17
1000,0,2016-05-01-17
2000,0,2016-05-01-17
3000,0,2016-05-01-17
4000,0,2016-05-01-17
5000,0,2016-05-01-17
6000,0,2016-05-01-17
7000,0,2016-05-01-17
8000,0,2016-05-01-17
9000,0,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,0,2016-05-01-19
30,0,2016-05-01-19
40,0,2016-05-01-19
50,0,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,0,2016-05-01-19
100,0,2016-05-01-19
200,0,2016-05-01-19
300,0,2016-05-01-19
400,0,2016-05-01-19
500,0,2016-05-01-19
600,0,2016-05-01-19
700,0,2016-05-01-19
800,0,2016-05-01-19
900,0,2016-05-01-19
1000,0,2016-05-01-19
2000,0,2016-05-01-19
3000,0,2016-05-01-19
4000,0,2016-05-01-19
5000,0,2016-05-01-19
6000,0,2016-05-01-19
7000,0,2016-05-01-19
8000,0,2016-05-01-19
9000,0,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,0,2016-05-01-20
30,0,2016-05-01-20
40,0,2016-05-01-20
50,0,2016-05-01-20
60,0,2016-05-01-20
70,0,2016-05-01-20
80,0,2016-05-01-20
90,0,2016-05-01-20
100,0,2016-05-01-20
200,0,2016-05-01-20
300,0,2016-05-01-20
400,0,2016-05-01-20
500,0,2016-05-01-20
600,0,2016-05-01-20
700,0,2016-05-01-20
800,0,2016-05-01-20
900,0,2016-05-01-20
1000,0,2016-05-01-20
2000,0,2016-05-01-20
3000,0,2016-05-01-20
4000,0,2016-05-01-20
5000,0,2016-05-01-20
6000,0,2016-05-01-20
7000,0,2016-05-01-20
8000,0,2016-05-01-20
9000,0,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,0,2016-05-01-21
30,0,2016-05-01-21
40,0,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,0,2016-05-01-21
90,0,2016-05-01-21
100,0,2016-05-01-21
200,0,2016-05-01-21
300,0,2016-05-01-21
400,0,2016-05-01-21
500,0,2016-05-01-21
600,0,2016-05-01-21
700,0,2016-05-01-21
800,0,2016-05-01-21
900,0,2016-05-01-21
1000,0,2016-05-01-21
2000,0,2016-05-01-21
3000,0,2016-05-01-21
4000,0,2016-05-01-21
5000,0,2016-05-01-21
6000,0,2016-05-01-21
7000,0,2016-05-01-21
8000,0,2016-05-01-21
9000,0,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,0,2016-05-01-22
30,0,2016-05-01-22
40,0,2016-05-01-22
50,0,2016-05-01-22
60,0,2016-05-01-22
70,0,2016-05-01-22
80,0,2016-05-01-22
90,0,2016-05-01-22
100,0,2016-05-01-22
200,0,2016-05-01-22
300,0,2016-05-01-22
400,0,2016-05-01-22
500,0,2016-05-01-22
600,0,2016-05-01-22
700,0,2016-05-01-22
800,0,2016-05-01-22
900,0,2016-05-01-22
1000,0,2016-05-01-22
2000,0,2016-05-01-22
3000,0,2016-05-01-22
4000,0,2016-05-01-22
5000,0,2016-05-01-22
6000,0,2016-05-01-22
7000,0,2016-05-01-22
8000,0,2016-05-01-22
9000,0,2016-05-01-22
bucket,count,date
1,7,2016-05-01-00
2,3,2016-05-01-00
3,0,2016-05-01-00
4,1,2016-05-01-00
5,1,2016-05-01-00
6,2,2016-05-01-00
7,1,2016-05-01-00
8,2,2016-05-01-00
9,1,2016-05-01-00
10,2,2016-05-01-00
20,6,2016-05-01-00
30,0,2016-05-01-00
40,1,2016-05-01-00
50,0,2016-05-01-00
60,1,2016-05-01-00
70,1,2016-05-01-00
80,1,2016-05-01-00
90,1,2016-05-01-00
100,12,2016-05-01-00
200,11,2016-05-01-00
300,9,2016-05-01-00
400,16,2016-05-01-00
500,10,2016-05-01-00
600,6,2016-05-01-00
700,5,2016-05-01-00
800,3,2016-05-01-00
900,7,2016-05-01-00
1000,10,2016-05-01-00
2000,4,2016-05-01-00
3000,6,2016-05-01-00
4000,8,2016-05-01-00
5000,3,2016-05-01-00
6000,6,2016-05-01-00
7000,2,2016-05-01-00
8000,2,2016-05-01-00
9000,0,2016-05-01-00
1,11,2016-05-01-01
2,1,2016-05-01-01
3,0,2016-05-01-01
4,2,2016-05-01-01
5,0,2016-05-01-01
6,4,2016-05-01-01
7,3,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,2,2016-05-01-01
20,0,2016-05-01-01
30,2,2016-05-01-01
40,1,2016-05-01-01
50,1,2016-05-01-01
60,0,2016-05-01-01
70,1,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,6,2016-05-01-01
200,18,2016-05-01-01
300,26,2016-05-01-01
400,15,2016-05-01-01
500,14,2016-05-01-01
600,5,2016-05-01-01
700,3,2016-05-01-01
800,4,2016-05-01-01
900,6,2016-05-01-01
1000,13,2016-05-01-01
2000,8,2016-05-01-01
3000,6,2016-05-01-01
4000,11,2016-05-01-01
5000,9,2016-05-01-01
6000,3,2016-05-01-01
7000,1,2016-05-01-01
8000,5,2016-05-01-01
9000,1,2016-05-01-01
1,10,2016-05-01-06
2,4,2016-05-01-06
3,6,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,2,2016-05-01-06
20,2,2016-05-01-06
30,2,2016-05-01-06
40,0,2016-05-01-06
50,1,2016-05-01-06
60,1,2016-05-01-06
70,3,2016-05-01-06
80,1,2016-05-01-06
90,1,2016-05-01-06
100,6,2016-05-01-06
200,13,2016-05-01-06
300,10,2016-05-01-06
400,14,2016-05-01-06
500,11,2016-05-01-06
600,4,2016-05-01-06
700,2,2016-05-01-06
800,3,2016-05-01-06
900,1,2016-05-01-06
1000,17,2016-05-01-06
2000,7,2016-05-01-06
3000,3,2016-05-01-06
4000,8,2016-05-01-06
5000,4,2016-05-01-06
6000,2,2016-05-01-06
7000,4,2016-05-01-06
8000,3,2016-05-01-06
9000,3,2016-05-01-06
1,7,2016-05-01-10
2,5,2016-05-01-10
3,3,2016-05-01-10
4,1,2016-05-01-10
5,1,2016-05-01-10
6,2,2016-05-01-10
7,0,2016-05-01-10
8,1,2016-05-01-10
9,0,2016-05-01-10
10,2,2016-05-01-10
20,0,2016-05-01-10
30,1,2016-05-01-10
40,0,2016-05-01-10
50,1,2016-05-01-10
60,1,2016-05-01-10
70,1,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,7,2016-05-01-10
200,9,2016-05-01-10
300,12,2016-05-01-10
400,9,2016-05-01-10
500,9,2016-05-01-10
600,2,2016-05-01-10
700,2,2016-05-01-10
800,6,2016-05-01-10
900,3,2016-05-01-10
1000,8,2016-05-01-10
2000,6,2016-05-01-10
3000,7,2016-05-01-10
4000,2,2016-05-01-10
5000,6,2016-05-01-10
6000,4,2016-05-01-10
7000,0,2016-05-01-10
8000,1,2016-05-01-10
9000,1,2016-05-01-10
1,11,2016-05-01-02
2,6,2016-05-01-02
3,1,2016-05-01-02
4,2,2016-05-01-02
5,1,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,1,2016-05-01-02
9,3,2016-05-01-02
10,2,2016-05-01-02
20,2,2016-05-01-02
30,3,2016-05-01-02
40,1,2016-05-01-02
50,2,2016-05-01-02
60,0,2016-05-01-02
70,1,2016-05-01-02
80,1,2016-05-01-02
90,3,2016-05-01-02
100,7,2016-05-01-02
200,13,2016-05-01-02
300,11,2016-05-01-02
400,18,2016-05-01-02
500,7,2016-05-01-02
600,6,2016-05-01-02
700,4,2016-05-01-02
800,3,2016-05-01-02
900,1,2016-05-01-02
1000,7,2016-05-01-02
2000,9,2016-05-01-02
3000,4,2016-05-01-02
4000,8,2016-05-01-02
5000,3,2016-05-01-02
6000,5,2016-05-01-02
7000,2,2016-05-01-02
8000,3,2016-05-01-02
9000,2,2016-05-01-02
1,15,2016-05-01-04
2,7,2016-05-01-04
3,1,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,1,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,2,2016-05-01-04
40,0,2016-05-01-04
50,1,2016-05-01-04
60,1,2016-05-01-04
70,1,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,6,2016-05-01-04
200,9,2016-05-01-04
300,15,2016-05-01-04
400,14,2016-05-01-04
500,7,2016-05-01-04
600,9,2016-05-01-04
700,7,2016-05-01-04
800,5,2016-05-01-04
900,3,2016-05-01-04
1000,8,2016-05-01-04
2000,8,2016-05-01-04
3000,6,2016-05-01-04
4000,0,2016-05-01-04
5000,3,2016-05-01-04
6000,3,2016-05-01-04
7000,1,2016-05-01-04
8000,4,2016-05-01-04
9000,5,2016-05-01-04
1,7,2016-05-01-03
2,5,2016-05-01-03
3,1,2016-05-01-03
4,2,2016-05-01-03
5,2,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,1,2016-05-01-03
10,6,2016-05-01-03
20,2,2016-05-01-03
30,0,2016-05-01-03
40,1,2016-05-01-03
50,2,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,1,2016-05-01-03
90,0,2016-05-01-03
100,7,2016-05-01-03
200,12,2016-05-01-03
300,15,2016-05-01-03
400,9,2016-05-01-03
500,9,2016-05-01-03
600,6,2016-05-01-03
700,11,2016-05-01-03
800,2,2016-05-01-03
900,2,2016-05-01-03
1000,18,2016-05-01-03
2000,11,2016-05-01-03
3000,7,2016-05-01-03
4000,4,2016-05-01-03
5000,1,2016-05-01-03
6000,1,2016-05-01-03
7000,3,2016-05-01-03
8000,0,2016-05-01-03
9000,4,2016-05-01-03
1,5,2016-05-01-05
2,2,2016-05-01-05
3,3,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,2,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,2,2016-05-01-05
10,5,2016-05-01-05
20,1,2016-05-01-05
30,1,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,3,2016-05-01-05
70,2,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,9,2016-05-01-05
200,8,2016-05-01-05
300,11,2016-05-01-05
400,15,2016-05-01-05
500,10,2016-05-01-05
600,7,2016-05-01-05
700,2,2016-05-01-05
800,2,2016-05-01-05
900,2,2016-05-01-05
1000,14,2016-05-01-05
2000,8,2016-05-01-05
3000,2,2016-05-01-05
4000,4,2016-05-01-05
5000,1,2016-05-01-05
6000,3,2016-05-01-05
7000,3,2016-05-01-05
8000,1,2016-05-01-05
9000,2,2016-05-01-05
1,8,2016-05-01-07
2,2,2016-05-01-07
3,1,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,1,2016-05-01-07
7,2,2016-05-01-07
8,0,2016-05-01-07
9,1,2016-05-01-07
10,2,2016-05-01-07
20,2,2016-05-01-07
30,1,2016-05-01-07
40,1,2016-05-01-07
50,2,2016-05-01-07
60,1,2016-05-01-07
70,2,2016-05-01-07
80,1,2016-05-01-07
90,0,2016-05-01-07
100,13,2016-05-01-07
200,13,2016-05-01-07
300,9,2016-05-01-07
400,12,2016-05-01-07
500,17,2016-05-01-07
600,7,2016-05-01-07
700,3,2016-05-01-07
800,1,2016-05-01-07
900,1,2016-05-01-07
1000,10,2016-05-01-07
2000,5,2016-05-01-07
3000,2,2016-05-01-07
4000,2,2016-05-01-07
5000,3,2016-05-01-07
6000,6,2016-05-01-07
7000,3,2016-05-01-07
8000,1,2016-05-01-07
9000,2,2016-05-01-07
1,7,2016-05-01-11
2,4,2016-05-01-11
3,0,2016-05-01-11
4,2,2016-05-01-11
5,1,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,2,2016-05-01-11
9,0,2016-05-01-11
10,2,2016-05-01-11
20,1,2016-05-01-11
30,0,2016-05-01-11
40,2,2016-05-01-11
50,2,2016-05-01-11
60,1,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,3,2016-05-01-11
100,8,2016-05-01-11
200,12,2016-05-01-11
300,14,2016-05-01-11
400,7,2016-05-01-11
500,5,2016-05-01-11
600,5,2016-05-01-11
700,5,2016-05-01-11
800,4,2016-05-01-11
900,4,2016-05-01-11
1000,9,2016-05-01-11
2000,4,2016-05-01-11
3000,8,2016-05-01-11
4000,5,2016-05-01-11
5000,3,2016-05-01-11
6000,7,2016-05-01-11
7000,2,2016-05-01-11
8000,5,2016-05-01-11
9000,1,2016-05-01-11
1,8,2016-05-01-09
2,4,2016-05-01-09
3,0,2016-05-01-09
4,2,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,1,2016-05-01-09
10,1,2016-05-01-09
20,1,2016-05-01-09
30,0,2016-05-01-09
40,2,2016-05-01-09
50,2,2016-05-01-09
60,2,2016-05-01-09
70,0,2016-05-01-09
80,1,2016-05-01-09
90,0,2016-05-01-09
100,14,2016-05-01-09
200,15,2016-05-01-09
300,13,2016-05-01-09
400,13,2016-05-01-09
500,7,2016-05-01-09
600,6,2016-05-01-09
700,2,2016-05-01-09
800,5,2016-05-01-09
900,6,2016-05-01-09
1000,13,2016-05-01-09
2000,10,2016-05-01-09
3000,2,2016-05-01-09
4000,3,2016-05-01-09
5000,6,2016-05-01-09
6000,4,2016-05-01-09
7000,3,2016-05-01-09
8000,2,2016-05-01-09
9000,1,2016-05-01-09
1,7,2016-05-01-08
2,2,2016-05-01-08
3,1,2016-05-01-08
4,0,2016-05-01-08
5,1,2016-05-01-08
6,0,2016-05-01-08
7,1,2016-05-01-08
8,0,2016-05-01-08
9,3,2016-05-01-08
10,1,2016-05-01-08
20,2,2016-05-01-08
30,2,2016-05-01-08
40,0,2016-05-01-08
50,2,2016-05-01-08
60,1,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,14,2016-05-01-08
200,12,2016-05-01-08
300,12,2016-05-01-08
400,2,2016-05-01-08
500,3,2016-05-01-08
600,7,2016-05-01-08
700,5,2016-05-01-08
800,5,2016-05-01-08
900,2,2016-05-01-08
1000,15,2016-05-01-08
2000,9,2016-05-01-08
3000,8,2016-05-01-08
4000,5,2016-05-01-08
5000,4,2016-05-01-08
6000,2,2016-05-01-08
7000,4,2016-05-01-08
8000,2,2016-05-01-08
9000,2,2016-05-01-08
1,10,2016-05-01-18
2,7,2016-05-01-18
3,3,2016-05-01-18
4,2,2016-05-01-18
5,1,2016-05-01-18
6,0,2016-05-01-18
7,1,2016-05-01-18
8,1,2016-05-01-18
9,0,2016-05-01-18
10,1,2016-05-01-18
20,2,2016-05-01-18
30,2,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,1,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,3,2016-05-01-18
100,10,2016-05-01-18
200,15,2016-05-01-18
300,12,2016-05-01-18
400,15,2016-05-01-18
500,15,2016-05-01-18
600,9,2016-05-01-18
700,4,2016-05-01-18
800,3,2016-05-01-18
900,2,2016-05-01-18
1000,9,2016-05-01-18
2000,1,2016-05-01-18
3000,6,2016-05-01-18
4000,4,2016-05-01-18
5000,6,2016-05-01-18
6000,4,2016-05-01-18
7000,1,2016-05-01-18
8000,3,2016-05-01-18
9000,3,2016-05-01-18
1,6,2016-05-01-15
2,7,2016-05-01-15
3,1,2016-05-01-15
4,1,2016-05-01-15
5,1,2016-05-01-15
6,0,2016-05-01-15
7,2,2016-05-01-15
8,1,2016-05-01-15
9,1,2016-05-01-15
10,4,2016-05-01-15
20,1,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,1,2016-05-01-15
60,3,2016-05-01-15
70,0,2016-05-01-15
80,2,2016-05-01-15
90,2,2016-05-01-15
100,21,2016-05-01-15
200,13,2016-05-01-15
300,21,2016-05-01-15
400,13,2016-05-01-15
500,9,2016-05-01-15
600,5,2016-05-01-15
700,5,2016-05-01-15
800,2,2016-05-01-15
900,5,2016-05-01-15
1000,17,2016-05-01-15
2000,2,2016-05-01-15
3000,7,2016-05-01-15
4000,5,2016-05-01-15
5000,8,2016-05-01-15
6000,1,2016-05-01-15
7000,4,2016-05-01-15
8000,1,2016-05-01-15
9000,0,2016-05-01-15
1,7,2016-05-01-16
2,8,2016-05-01-16
3,2,2016-05-01-16
4,2,2016-05-01-16
5,0,2016-05-01-16
6,1,2016-05-01-16
7,1,2016-05-01-16
8,3,2016-05-01-16
9,0,2016-05-01-16
10,2,2016-05-01-16
20,1,2016-05-01-16
30,0,2016-05-01-16
40,1,2016-05-01-16
50,0,2016-05-01-16
60,2,2016-05-01-16
70,1,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,8,2016-05-01-16
200,14,2016-05-01-16
300,13,2016-05-01-16
400,8,2016-05-01-16
500,12,2016-05-01-16
600,5,2016-05-01-16
700,4,2016-05-01-16
800,2,2016-05-01-16
900,1,2016-05-01-16
1000,20,2016-05-01-16
2000,6,2016-05-01-16
3000,3,2016-05-01-16
4000,8,2016-05-01-16
5000,4,2016-05-01-16
6000,6,2016-05-01-16
7000,1,2016-05-01-16
8000,7,2016-05-01-16
9000,4,2016-05-01-16
1,9,2016-05-01-13
2,3,2016-05-01-13
3,5,2016-05-01-13
4,2,2016-05-01-13
5,1,2016-05-01-13
6,2,2016-05-01-13
7,1,2016-05-01-13
8,1,2016-05-01-13
9,0,2016-05-01-13
10,1,2016-05-01-13
20,2,2016-05-01-13
30,0,2016-05-01-13
40,2,2016-05-01-13
50,1,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,14,2016-05-01-13
200,10,2016-05-01-13
300,9,2016-05-01-13
400,11,2016-05-01-13
500,11,2016-05-01-13
600,7,2016-05-01-13
700,6,2016-05-01-13
800,4,2016-05-01-13
900,1,2016-05-01-13
1000,14,2016-05-01-13
2000,3,2016-05-01-13
3000,6,2016-05-01-13
4000,9,2016-05-01-13
5000,2,2016-05-01-13
6000,5,2016-05-01-13
7000,4,2016-05-01-13
8000,1,2016-05-01-13
9000,5,2016-05-01-13
1,13,2016-05-01-12
2,2,2016-05-01-12
3,5,2016-05-01-12
4,4,2016-05-01-12
5,1,2016-05-01-12
6,1,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,2,2016-05-01-12
20,1,2016-05-01-12
30,1,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,2,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,1,2016-05-01-12
100,13,2016-05-01-12
200,13,2016-05-01-12
300,14,2016-05-01-12
400,11,2016-05-01-12
500,12,2016-05-01-12
600,7,2016-05-01-12
700,3,2016-05-01-12
800,3,2016-05-01-12
900,2,2016-05-01-12
1000,5,2016-05-01-12
2000,10,2016-05-01-12
3000,5,2016-05-01-12
4000,2,2016-05-01-12
5000,1,2016-05-01-12
6000,9,2016-05-01-12
7000,3,2016-05-01-12
8000,1,2016-05-01-12
9000,1,2016-05-01-12
1,10,2016-05-01-23
2,3,2016-05-01-23
3,2,2016-05-01-23
4,0,2016-05-01-23
5,1,2016-05-01-23
6,0,2016-05-01-23
7,1,2016-05-01-23
8,2,2016-05-01-23
9,0,2016-05-01-23
10,2,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,1,2016-05-01-23
50,1,2016-05-01-23
60,1,2016-05-01-23
70,1,2016-05-01-23
80,0,2016-05-01-23
90,1,2016-05-01-23
100,13,2016-05-01-23
200,15,2016-05-01-23
300,18,2016-05-01-23
400,12,2016-05-01-23
500,6,2016-05-01-23
600,8,2016-05-01-23
700,2,2016-05-01-23
800,7,2016-05-01-23
900,5,2016-05-01-23
1000,9,2016-05-01-23
2000,9,2016-05-01-23
3000,5,2016-05-01-23
4000,4,2016-05-01-23
5000,1,2016-05-01-23
6000,5,2016-05-01-23
7000,3,2016-05-01-23
8000,0,2016-05-01-23
9000,6,2016-05-01-23
1,10,2016-05-01-14
2,7,2016-05-01-14
3,2,2016-05-01-14
4,2,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,2,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,1,2016-05-01-14
80,2,2016-05-01-14
90,1,2016-05-01-14
100,16,2016-05-01-14
200,16,2016-05-01-14
300,16,2016-05-01-14
400,18,2016-05-01-14
500,5,2016-05-01-14
600,4,2016-05-01-14
700,4,2016-05-01-14
800,2,2016-05-01-14
900,4,2016-05-01-14
1000,11,2016-05-01-14
2000,3,2016-05-01-14
3000,6,2016-05-01-14
4000,5,2016-05-01-14
5000,2,2016-05-01-14
6000,5,2016-05-01-14
7000,4,2016-05-01-14
8000,0,2016-05-01-14
9000,5,2016-05-01-14
1,8,2016-05-01-17
2,5,2016-05-01-17
3,2,2016-05-01-17
4,1,2016-05-01-17
5,3,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,4,2016-05-01-17
20,0,2016-05-01-17
30,2,2016-05-01-17
40,1,2016-05-01-17
50,1,2016-05-01-17
60,1,2016-05-01-17
70,1,2016-05-01-17
80,1,2016-05-01-17
90,2,2016-05-01-17
100,11,2016-05-01-17
200,17,2016-05-01-17
300,13,2016-05-01-17
400,15,2016-05-01-17
500,9,2016-05-01-17
600,8,2016-05-01-17
700,2,2016-05-01-17
800,1,2016-05-01-17
900,2,2016-05-01-17
1000,14,2016-05-01-17
2000,9,2016-05-01-17
3000,3,2016-05-01-17
4000,6,2016-05-01-17
5000,7,2016-05-01-17
6000,5,2016-05-01-17
7000,4,2016-05-01-17
8000,3,2016-05-01-17
9000,3,2016-05-01-17
1,8,2016-05-01-19
2,0,2016-05-01-19
3,1,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,3,2016-05-01-19
20,3,2016-05-01-19
30,0,2016-05-01-19
40,1,2016-05-01-19
50,1,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,1,2016-05-01-19
100,11,2016-05-01-19
200,10,2016-05-01-19
300,12,2016-05-01-19
400,14,2016-05-01-19
500,9,2016-05-01-19
600,4,2016-05-01-19
700,3,2016-05-01-19
800,6,2016-05-01-19
900,2,2016-05-01-19
1000,13,2016-05-01-19
2000,10,2016-05-01-19
3000,2,2016-05-01-19
4000,2,2016-05-01-19
5000,2,2016-05-01-19
6000,5,2016-05-01-19
7000,2,2016-05-01-19
8000,2,2016-05-01-19
9000,2,2016-05-01-19
1,9,2016-05-01-20
2,5,2016-05-01-20
3,1,2016-05-01-20
4,3,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,4,2016-05-01-20
20,1,2016-05-01-20
30,0,2016-05-01-20
40,1,2016-05-01-20
50,0,2016-05-01-20
60,1,2016-05-01-20
70,1,2016-05-01-20
80,1,2016-05-01-20
90,0,2016-05-01-20
100,11,2016-05-01-20
200,17,2016-05-01-20
300,14,2016-05-01-20
400,14,2016-05-01-20
500,15,2016-05-01-20
600,5,2016-05-01-20
700,1,2016-05-01-20
800,6,2016-05-01-20
900,4,2016-05-01-20
1000,11,2016-05-01-20
2000,5,2016-05-01-20
3000,2,2016-05-01-20
4000,5,2016-05-01-20
5000,5,2016-05-01-20
6000,4,2016-05-01-20
7000,1,2016-05-01-20
8000,5,2016-05-01-20
9000,2,2016-05-01-20
1,8,2016-05-01-21
2,4,2016-05-01-21
3,1,2016-05-01-21
4,1,2016-05-01-21
5,0,2016-05-01-21
6,1,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,5,2016-05-01-21
20,4,2016-05-01-21
30,1,2016-05-01-21
40,1,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,2,2016-05-01-21
90,1,2016-05-01-21
100,13,2016-05-01-21
200,11,2016-05-01-21
300,11,2016-05-01-21
400,12,2016-05-01-21
500,6,2016-05-01-21
600,6,2016-05-01-21
700,6,2016-05-01-21
800,3,2016-05-01-21
900,2,2016-05-01-21
1000,17,2016-05-01-21
2000,7,2016-05-01-21
3000,5,2016-05-01-21
4000,0,2016-05-01-21
5000,5,2016-05-01-21
6000,5,2016-05-01-21
7000,1,2016-05-01-21
8000,6,2016-05-01-21
9000,2,2016-05-01-21
1,15,2016-05-01-22
2,7,2016-05-01-22
3,2,2016-05-01-22
4,0,2016-05-01-22
5,1,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,3,2016-05-01-22
20,1,2016-05-01-22
30,1,2016-05-01-22
40,0,2016-05-01-22
50,1,2016-05-01-22
60,1,2016-05-01-22
70,0,2016-05-01-22
80,2,2016-05-01-22
90,0,2016-05-01-22
100,7,2016-05-01-22
200,13,2016-05-01-22
300,26,2016-05-01-22
400,14,2016-05-01-22
500,12,2016-05-01-22
600,5,2016-05-01-22
700,6,2016-05-01-22
800,1,2016-05-01-22
900,6,2016-05-01-22
1000,14,2016-05-01-22
2000,3,2016-05-01-22
3000,4,2016-05-01-22
4000,5,2016-05-01-22
5000,3,2016-05-01-22
6000,2,2016-05-01-22
7000,3,2016-05-01-22
8000,4,2016-05-01-22
9000,3,2016-05-01-22
bucket,count,date
1,1,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,1,2016-05-01-00
9,1,2016-05-01-00
10,4,2016-05-01-00
20,9,2016-05-01-00
30,2,2016-05-01-00
40,1,2016-05-01-00
50,3,2016-05-01-00
60,1,2016-05-01-00
70,6,2016-05-01-00
80,12,2016-05-01-00
90,8,2016-05-01-00
100,113,2016-05-01-00
200,131,2016-05-01-00
300,82,2016-05-01-00
400,56,2016-05-01-00
500,58,2016-05-01-00
600,63,2016-05-01-00
700,69,2016-05-01-00
800,62,2016-05-01-00
900,40,2016-05-01-00
1000,172,2016-05-01-00
2000,35,2016-05-01-00
3000,23,2016-05-01-00
4000,10,2016-05-01-00
5000,6,2016-05-01-00
6000,7,2016-05-01-00
7000,6,2016-05-01-00
8000,5,2016-05-01-00
9000,3,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,2,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,1,2016-05-01-01
10,2,2016-05-01-01
20,8,2016-05-01-01
30,7,2016-05-01-01
40,1,2016-05-01-01
50,1,2016-05-01-01
60,0,2016-05-01-01
70,6,2016-05-01-01
80,5,2016-05-01-01
90,7,2016-05-01-01
100,122,2016-05-01-01
200,114,2016-05-01-01
300,82,2016-05-01-01
400,62,2016-05-01-01
500,62,2016-05-01-01
600,59,2016-05-01-01
700,49,2016-05-01-01
800,54,2016-05-01-01
900,40,2016-05-01-01
1000,175,2016-05-01-01
2000,51,2016-05-01-01
3000,7,2016-05-01-01
4000,13,2016-05-01-01
5000,6,2016-05-01-01
6000,10,2016-05-01-01
7000,3,2016-05-01-01
8000,2,2016-05-01-01
9000,5,2016-05-01-01
1,1,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,1,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,5,2016-05-01-06
20,8,2016-05-01-06
30,5,2016-05-01-06
40,0,2016-05-01-06
50,2,2016-05-01-06
60,2,2016-05-01-06
70,9,2016-05-01-06
80,7,2016-05-01-06
90,9,2016-05-01-06
100,82,2016-05-01-06
200,125,2016-05-01-06
300,104,2016-05-01-06
400,64,2016-05-01-06
500,56,2016-05-01-06
600,63,2016-05-01-06
700,52,2016-05-01-06
800,54,2016-05-01-06
900,42,2016-05-01-06
1000,163,2016-05-01-06
2000,40,2016-05-01-06
3000,20,2016-05-01-06
4000,11,2016-05-01-06
5000,9,2016-05-01-06
6000,4,2016-05-01-06
7000,2,2016-05-01-06
8000,1,2016-05-01-06
9000,0,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,1,2016-05-01-10
10,3,2016-05-01-10
20,5,2016-05-01-10
30,3,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,2,2016-05-01-10
70,2,2016-05-01-10
80,1,2016-05-01-10
90,1,2016-05-01-10
100,35,2016-05-01-10
200,108,2016-05-01-10
300,95,2016-05-01-10
400,70,2016-05-01-10
500,62,2016-05-01-10
600,64,2016-05-01-10
700,63,2016-05-01-10
800,42,2016-05-01-10
900,31,2016-05-01-10
1000,165,2016-05-01-10
2000,67,2016-05-01-10
3000,17,2016-05-01-10
4000,10,2016-05-01-10
5000,9,2016-05-01-10
6000,5,2016-05-01-10
7000,1,2016-05-01-10
8000,3,2016-05-01-10
9000,4,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,1,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,1,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,8,2016-05-01-02
30,4,2016-05-01-02
40,2,2016-05-01-02
50,2,2016-05-01-02
60,5,2016-05-01-02
70,5,2016-05-01-02
80,9,2016-05-01-02
90,6,2016-05-01-02
100,123,2016-05-01-02
200,103,2016-05-01-02
300,103,2016-05-01-02
400,70,2016-05-01-02
500,61,2016-05-01-02
600,71,2016-05-01-02
700,53,2016-05-01-02
800,45,2016-05-01-02
900,42,2016-05-01-02
1000,156,2016-05-01-02
2000,34,2016-05-01-02
3000,16,2016-05-01-02
4000,9,2016-05-01-02
5000,8,2016-05-01-02
6000,6,2016-05-01-02
7000,3,2016-05-01-02
8000,1,2016-05-01-02
9000,5,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,1,2016-05-01-04
9,0,2016-05-01-04
10,4,2016-05-01-04
20,6,2016-05-01-04
30,4,2016-05-01-04
40,0,2016-05-01-04
50,2,2016-05-01-04
60,4,2016-05-01-04
70,9,2016-05-01-04
80,6,2016-05-01-04
90,8,2016-05-01-04
100,133,2016-05-01-04
200,112,2016-05-01-04
300,94,2016-05-01-04
400,67,2016-05-01-04
500,58,2016-05-01-04
600,75,2016-05-01-04
700,64,2016-05-01-04
800,39,2016-05-01-04
900,32,2016-05-01-04
1000,137,2016-05-01-04
2000,36,2016-05-01-04
3000,17,2016-05-01-04
4000,9,2016-05-01-04
5000,0,2016-05-01-04
6000,9,2016-05-01-04
7000,2,2016-05-01-04
8000,1,2016-05-01-04
9000,2,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,10,2016-05-01-03
20,3,2016-05-01-03
30,3,2016-05-01-03
40,0,2016-05-01-03
50,1,2016-05-01-03
60,4,2016-05-01-03
70,3,2016-05-01-03
80,7,2016-05-01-03
90,16,2016-05-01-03
100,120,2016-05-01-03
200,91,2016-05-01-03
300,74,2016-05-01-03
400,70,2016-05-01-03
500,69,2016-05-01-03
600,50,2016-05-01-03
700,50,2016-05-01-03
800,48,2016-05-01-03
900,47,2016-05-01-03
1000,166,2016-05-01-03
2000,36,2016-05-01-03
3000,17,2016-05-01-03
4000,14,2016-05-01-03
5000,11,2016-05-01-03
6000,5,2016-05-01-03
7000,3,2016-05-01-03
8000,5,2016-05-01-03
9000,3,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,1,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,7,2016-05-01-05
20,6,2016-05-01-05
30,3,2016-05-01-05
40,4,2016-05-01-05
50,1,2016-05-01-05
60,6,2016-05-01-05
70,10,2016-05-01-05
80,3,2016-05-01-05
90,7,2016-05-01-05
100,119,2016-05-01-05
200,95,2016-05-01-05
300,94,2016-05-01-05
400,72,2016-05-01-05
500,59,2016-05-01-05
600,66,2016-05-01-05
700,44,2016-05-01-05
800,38,2016-05-01-05
900,38,2016-05-01-05
1000,169,2016-05-01-05
2000,25,2016-05-01-05
3000,13,2016-05-01-05
4000,9,2016-05-01-05
5000,11,2016-05-01-05
6000,8,2016-05-01-05
7000,6,2016-05-01-05
8000,1,2016-05-01-05
9000,1,2016-05-01-05
1,1,2016-05-01-07
2,1,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,1,2016-05-01-07
6,0,2016-05-01-07
7,1,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,6,2016-05-01-07
20,3,2016-05-01-07
30,1,2016-05-01-07
40,1,2016-05-01-07
50,0,2016-05-01-07
60,2,2016-05-01-07
70,2,2016-05-01-07
80,7,2016-05-01-07
90,1,2016-05-01-07
100,59,2016-05-01-07
200,119,2016-05-01-07
300,120,2016-05-01-07
400,67,2016-05-01-07
500,52,2016-05-01-07
600,65,2016-05-01-07
700,51,2016-05-01-07
800,66,2016-05-01-07
900,35,2016-05-01-07
1000,198,2016-05-01-07
2000,28,2016-05-01-07
3000,17,2016-05-01-07
4000,8,2016-05-01-07
5000,5,2016-05-01-07
6000,2,2016-05-01-07
7000,3,2016-05-01-07
8000,3,2016-05-01-07
9000,4,2016-05-01-07
1,0,2016-05-01-11
2,2,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,1,2016-05-01-11
10,2,2016-05-01-11
20,4,2016-05-01-11
30,3,2016-05-01-11
40,2,2016-05-01-11
50,0,2016-05-01-11
60,2,2016-05-01-11
70,0,2016-05-01-11
80,1,2016-05-01-11
90,0,2016-05-01-11
100,65,2016-05-01-11
200,139,2016-05-01-11
300,85,2016-05-01-11
400,61,2016-05-01-11
500,65,2016-05-01-11
600,61,2016-05-01-11
700,49,2016-05-01-11
800,45,2016-05-01-11
900,30,2016-05-01-11
1000,182,2016-05-01-11
2000,56,2016-05-01-11
3000,24,2016-05-01-11
4000,11,2016-05-01-11
5000,5,2016-05-01-11
6000,11,2016-05-01-11
7000,4,2016-05-01-11
8000,2,2016-05-01-11
9000,1,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,1,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,5,2016-05-01-09
20,5,2016-05-01-09
30,6,2016-05-01-09
40,2,2016-05-01-09
50,0,2016-05-01-09
60,1,2016-05-01-09
70,1,2016-05-01-09
80,5,2016-05-01-09
90,1,2016-05-01-09
100,61,2016-05-01-09
200,131,2016-05-01-09
300,99,2016-05-01-09
400,66,2016-05-01-09
500,78,2016-05-01-09
600,63,2016-05-01-09
700,59,2016-05-01-09
800,46,2016-05-01-09
900,38,2016-05-01-09
1000,181,2016-05-01-09
2000,36,2016-05-01-09
3000,11,2016-05-01-09
4000,11,2016-05-01-09
5000,5,2016-05-01-09
6000,3,2016-05-01-09
7000,3,2016-05-01-09
8000,7,2016-05-01-09
9000,2,2016-05-01-09
1,0,2016-05-01-08
2,1,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,7,2016-05-01-08
20,8,2016-05-01-08
30,1,2016-05-01-08
40,2,2016-05-01-08
50,4,2016-05-01-08
60,2,2016-05-01-08
70,0,2016-05-01-08
80,4,2016-05-01-08
90,5,2016-05-01-08
100,62,2016-05-01-08
200,147,2016-05-01-08
300,98,2016-05-01-08
400,69,2016-05-01-08
500,68,2016-05-01-08
600,59,2016-05-01-08
700,50,2016-05-01-08
800,45,2016-05-01-08
900,40,2016-05-01-08
1000,191,2016-05-01-08
2000,31,2016-05-01-08
3000,25,2016-05-01-08
4000,11,2016-05-01-08
5000,11,2016-05-01-08
6000,7,2016-05-01-08
7000,4,2016-05-01-08
8000,2,2016-05-01-08
9000,5,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,1,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,2,2016-05-01-18
20,4,2016-05-01-18
30,1,2016-05-01-18
40,2,2016-05-01-18
50,1,2016-05-01-18
60,2,2016-05-01-18
70,2,2016-05-01-18
80,1,2016-05-01-18
90,2,2016-05-01-18
100,59,2016-05-01-18
200,110,2016-05-01-18
300,100,2016-05-01-18
400,58,2016-05-01-18
500,50,2016-05-01-18
600,56,2016-05-01-18
700,53,2016-05-01-18
800,53,2016-05-01-18
900,36,2016-05-01-18
1000,227,2016-05-01-18
2000,52,2016-05-01-18
3000,21,2016-05-01-18
4000,14,2016-05-01-18
5000,6,2016-05-01-18
6000,5,2016-05-01-18
7000,5,2016-05-01-18
8000,4,2016-05-01-18
9000,0,2016-05-01-18
1,0,2016-05-01-15
2,1,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,1,2016-05-01-15
9,0,2016-05-01-15
10,3,2016-05-01-15
20,4,2016-05-01-15
30,3,2016-05-01-15
40,2,2016-05-01-15
50,1,2016-05-01-15
60,2,2016-05-01-15
70,3,2016-05-01-15
80,5,2016-05-01-15
90,3,2016-05-01-15
100,76,2016-05-01-15
200,99,2016-05-01-15
300,92,2016-05-01-15
400,77,2016-05-01-15
500,45,2016-05-01-15
600,64,2016-05-01-15
700,78,2016-05-01-15
800,53,2016-05-01-15
900,52,2016-05-01-15
1000,239,2016-05-01-15
2000,46,2016-05-01-15
3000,26,2016-05-01-15
4000,14,2016-05-01-15
5000,4,2016-05-01-15
6000,4,2016-05-01-15
7000,3,2016-05-01-15
8000,3,2016-05-01-15
9000,1,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,1,2016-05-01-16
10,3,2016-05-01-16
20,8,2016-05-01-16
30,5,2016-05-01-16
40,3,2016-05-01-16
50,0,2016-05-01-16
60,1,2016-05-01-16
70,3,2016-05-01-16
80,6,2016-05-01-16
90,3,2016-05-01-16
100,76,2016-05-01-16
200,89,2016-05-01-16
300,82,2016-05-01-16
400,65,2016-05-01-16
500,63,2016-05-01-16
600,63,2016-05-01-16
700,42,2016-05-01-16
800,56,2016-05-01-16
900,46,2016-05-01-16
1000,203,2016-05-01-16
2000,54,2016-05-01-16
3000,28,2016-05-01-16
4000,9,2016-05-01-16
5000,6,2016-05-01-16
6000,9,2016-05-01-16
7000,3,2016-05-01-16
8000,1,2016-05-01-16
9000,3,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,4,2016-05-01-13
20,5,2016-05-01-13
30,7,2016-05-01-13
40,5,2016-05-01-13
50,1,2016-05-01-13
60,0,2016-05-01-13
70,3,2016-05-01-13
80,1,2016-05-01-13
90,4,2016-05-01-13
100,69,2016-05-01-13
200,128,2016-05-01-13
300,93,2016-05-01-13
400,48,2016-05-01-13
500,68,2016-05-01-13
600,61,2016-05-01-13
700,53,2016-05-01-13
800,55,2016-05-01-13
900,56,2016-05-01-13
1000,161,2016-05-01-13
2000,54,2016-05-01-13
3000,24,2016-05-01-13
4000,9,2016-05-01-13
5000,8,2016-05-01-13
6000,4,2016-05-01-13
7000,4,2016-05-01-13
8000,4,2016-05-01-13
9000,2,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,1,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,1,2016-05-01-12
9,0,2016-05-01-12
10,2,2016-05-01-12
20,7,2016-05-01-12
30,5,2016-05-01-12
40,2,2016-05-01-12
50,1,2016-05-01-12
60,0,2016-05-01-12
70,4,2016-05-01-12
80,3,2016-05-01-12
90,4,2016-05-01-12
100,53,2016-05-01-12
200,133,2016-05-01-12
300,86,2016-05-01-12
400,56,2016-05-01-12
500,60,2016-05-01-12
600,72,2016-05-01-12
700,49,2016-05-01-12
800,39,2016-05-01-12
900,55,2016-05-01-12
1000,172,2016-05-01-12
2000,55,2016-05-01-12
3000,14,2016-05-01-12
4000,10,2016-05-01-12
5000,5,2016-05-01-12
6000,8,2016-05-01-12
7000,3,2016-05-01-12
8000,2,2016-05-01-12
9000,2,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,1,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,1,2016-05-01-23
70,2,2016-05-01-23
80,3,2016-05-01-23
90,6,2016-05-01-23
100,96,2016-05-01-23
200,105,2016-05-01-23
300,80,2016-05-01-23
400,62,2016-05-01-23
500,54,2016-05-01-23
600,58,2016-05-01-23
700,58,2016-05-01-23
800,54,2016-05-01-23
900,38,2016-05-01-23
1000,168,2016-05-01-23
2000,41,2016-05-01-23
3000,25,2016-05-01-23
4000,9,2016-05-01-23
5000,4,2016-05-01-23
6000,4,2016-05-01-23
7000,0,2016-05-01-23
8000,6,2016-05-01-23
9000,2,2016-05-01-23
1,1,2016-05-01-14
2,0,2016-05-01-14
3,1,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,1,2016-05-01-14
10,5,2016-05-01-14
20,3,2016-05-01-14
30,4,2016-05-01-14
40,1,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,6,2016-05-01-14
90,8,2016-05-01-14
100,77,2016-05-01-14
200,100,2016-05-01-14
300,93,2016-05-01-14
400,65,2016-05-01-14
500,57,2016-05-01-14
600,74,2016-05-01-14
700,49,2016-05-01-14
800,45,2016-05-01-14
900,41,2016-05-01-14
1000,194,2016-05-01-14
2000,45,2016-05-01-14
3000,18,2016-05-01-14
4000,5,2016-05-01-14
5000,6,2016-05-01-14
6000,4,2016-05-01-14
7000,3,2016-05-01-14
8000,11,2016-05-01-14
9000,2,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,1,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,5,2016-05-01-17
20,5,2016-05-01-17
30,2,2016-05-01-17
40,1,2016-05-01-17
50,1,2016-05-01-17
60,1,2016-05-01-17
70,1,2016-05-01-17
80,1,2016-05-01-17
90,5,2016-05-01-17
100,56,2016-05-01-17
200,107,2016-05-01-17
300,69,2016-05-01-17
400,47,2016-05-01-17
500,56,2016-05-01-17
600,42,2016-05-01-17
700,56,2016-05-01-17
800,43,2016-05-01-17
900,41,2016-05-01-17
1000,193,2016-05-01-17
2000,50,2016-05-01-17
3000,24,2016-05-01-17
4000,19,2016-05-01-17
5000,5,2016-05-01-17
6000,2,2016-05-01-17
7000,4,2016-05-01-17
8000,0,2016-05-01-17
9000,3,2016-05-01-17
1,0,2016-05-01-19
2,1,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,1,2016-05-01-19
10,6,2016-05-01-19
20,4,2016-05-01-19
30,3,2016-05-01-19
40,2,2016-05-01-19
50,0,2016-05-01-19
60,1,2016-05-01-19
70,2,2016-05-01-19
80,8,2016-05-01-19
90,3,2016-05-01-19
100,63,2016-05-01-19
200,116,2016-05-01-19
300,100,2016-05-01-19
400,62,2016-05-01-19
500,73,2016-05-01-19
600,70,2016-05-01-19
700,51,2016-05-01-19
800,52,2016-05-01-19
900,55,2016-05-01-19
1000,190,2016-05-01-19
2000,48,2016-05-01-19
3000,19,2016-05-01-19
4000,10,2016-05-01-19
5000,5,2016-05-01-19
6000,6,2016-05-01-19
7000,5,2016-05-01-19
8000,3,2016-05-01-19
9000,5,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,5,2016-05-01-20
20,6,2016-05-01-20
30,3,2016-05-01-20
40,1,2016-05-01-20
50,2,2016-05-01-20
60,1,2016-05-01-20
70,0,2016-05-01-20
80,7,2016-05-01-20
90,8,2016-05-01-20
100,71,2016-05-01-20
200,111,2016-05-01-20
300,95,2016-05-01-20
400,61,2016-05-01-20
500,65,2016-05-01-20
600,69,2016-05-01-20
700,59,2016-05-01-20
800,60,2016-05-01-20
900,49,2016-05-01-20
1000,198,2016-05-01-20
2000,38,2016-05-01-20
3000,26,2016-05-01-20
4000,14,2016-05-01-20
5000,8,2016-05-01-20
6000,5,2016-05-01-20
7000,6,2016-05-01-20
8000,2,2016-05-01-20
9000,6,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,1,2016-05-01-21
10,1,2016-05-01-21
20,2,2016-05-01-21
30,3,2016-05-01-21
40,1,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,1,2016-05-01-21
80,3,2016-05-01-21
90,1,2016-05-01-21
100,57,2016-05-01-21
200,95,2016-05-01-21
300,63,2016-05-01-21
400,75,2016-05-01-21
500,66,2016-05-01-21
600,73,2016-05-01-21
700,65,2016-05-01-21
800,48,2016-05-01-21
900,51,2016-05-01-21
1000,170,2016-05-01-21
2000,43,2016-05-01-21
3000,15,2016-05-01-21
4000,9,2016-05-01-21
5000,7,2016-05-01-21
6000,6,2016-05-01-21
7000,3,2016-05-01-21
8000,4,2016-05-01-21
9000,3,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,1,2016-05-01-22
20,5,2016-05-01-22
30,0,2016-05-01-22
40,1,2016-05-01-22
50,0,2016-05-01-22
60,3,2016-05-01-22
70,2,2016-05-01-22
80,4,2016-05-01-22
90,3,2016-05-01-22
100,83,2016-05-01-22
200,114,2016-05-01-22
300,83,2016-05-01-22
400,51,2016-05-01-22
500,58,2016-05-01-22
600,60,2016-05-01-22
700,56,2016-05-01-22
800,51,2016-05-01-22
900,39,2016-05-01-22
1000,178,2016-05-01-22
2000,43,2016-05-01-22
3000,17,2016-05-01-22
4000,6,2016-05-01-22
5000,7,2016-05-01-22
6000,6,2016-05-01-22
7000,3,2016-05-01-22
8000,6,2016-05-01-22
9000,3,2016-05-01-22
// change to any of the .CSV files (latency, duration, etc)
// e.g. blocked, connected, duration, latency, req_body, res_body, rx, service, tx
var filename = "latency.csv";
var containerSelection = d3.select('.heatmap-container')
var container = containerSelection.node()
var cw = container.clientWidth, ch = container.clientHeight
var margin = {top: 25, right: 100, bottom: 25, left: 50},
width = cw - margin.left - margin.right,
height = ch - margin.top - margin.bottom;
var parseDate = d3.timeParse("%Y-%m-%d-%H"),
formatDate = d3.timeFormat("%m/%d @ %H"),
tickFormat = function(d, i) { return d3.format(".1s")(d) },
coerceTypes = function(d) {
d.date = parseDate(d.date);
d.bucket = +d.bucket;
d.count = +d.count;
}
;
var pluck = function (key) {
return function (obj) {
return obj[key];
}
};
var pipe = function () {
var args = [].slice.call(arguments).reverse(),
f = args.shift(),
g = args.shift(),
fog = g ? function() { return f(g.apply(this, arguments)); } : f;
return args.length ? compose.apply(this, [fog].concat(args)) : fog;
};
var x = d3.scaleTime().range([0, width]),
y = d3.scaleBand().rangeRound([height, 0]),
z = d3.scaleLinear().range(["white", "steelblue"]);
var xAxis = d3.axisBottom()
.scale(x)
.ticks()
.tickFormat(formatDate);
var yAxis = d3.axisLeft()
.scale(y)
.tickFormat(tickFormat)
// The size of the buckets in the CSV data file.
// This could be inferred from the data if it weren't sparse.
var dayMs = 864e5,
xStep = dayMs/24;
var svg = containerSelection.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + (3*margin.bottom))
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var tooltip = d3.select('.histogram-container')
var barChart = BarChart()
barChart
.margin(margin)
.height(height)
.width(width)
d3.csv(filename, function(error, rows) {
if (error) throw error;
drawHeatmap(rows)
});
function drawHeatmap(rows) { window.rows = rows;
// Coerce the CSV data to the appropriate types.
rows.forEach(coerceTypes);
var keys = {
bucket: pluck('bucket'),
date: pipe(pluck('date'), formatDate)
};
var nest = {
byBucket: d3.nest().key(keys.bucket),
byDate: d3.nest().key(keys.date)
};
var map = {
byBucket: nest.byBucket.map(rows, d3.map),
byDate: nest.byDate.map(rows, d3.map)
};
// Compute the scale domains.
x.domain(d3.extent(rows, pluck('date')));
y.domain(map.byBucket.keys())
z.domain(d3.extent(rows, function(d) { return d.count * d.bucket; }));
// Extend the x-domain to fit the last bucket.
x.domain([x.domain()[0], +x.domain()[1] + xStep]);
// Display the tiles for each non-zero bucket.
svg.selectAll(".tile")
.data(rows)
.enter().append("rect")
.attr("class", "tile")
.attr("x", function(d) { return x(d.date); })
.attr("y", function(d) { return y(d.bucket)-y.bandwidth()/2; })
.attr("width", x(xStep) - x(0))
.attr("height", y.bandwidth())
.style("fill", function(d) { return z(d.count * d.bucket); })
.on('mouseover', function (d, i, all) {
var histogram = map.byDate.get(keys.date(d))
var data = d3.range(20).map(function(d){return {"x":d,"y":Math.floor(Math.random() * 100)}});
var data2 = histogram.map(d => ({x: d.bucket, y: d.count }))
console.log(data2)
tooltip
.datum(data2)
.call(barChart);
var message = d.count + ' @ ' + d.bucket +' = ' + d.count * d.bucket
})
// .on('mouseout', function (d) { tooltip.text('') })
;
// Add a legend for the color values.
var legend = svg.selectAll(".legend")
.data(z.ticks(6).slice(1).reverse())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(" + (width + 20) + "," + (20 + i * 20) + ")"; });
legend.append("rect")
.attr("width", 20)
.attr("height", 20)
.style("fill", z);
legend.append("text")
.attr("x", 26)
.attr("y", 10)
.attr("dy", ".35em")
.text(tickFormat);
svg.append("text")
.attr("class", "label")
.attr("x", width + 20)
.attr("y", 10)
.attr("dy", ".35em")
.text("Count * Value");
// Add an x-axis with label.
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("class", "label")
.attr("x", width)
.attr("y", -6)
.attr("text-anchor", "end")
.text("Date");
// Add a y-axis with label.
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("class", "label")
.attr("y", 6)
.attr("dy", ".71em")
.attr("text-anchor", "end")
.attr("transform", "rotate(-90)")
.text("Value")
;
}
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,0,2016-05-01-00
30,0,2016-05-01-00
40,0,2016-05-01-00
50,0,2016-05-01-00
60,0,2016-05-01-00
70,0,2016-05-01-00
80,0,2016-05-01-00
90,0,2016-05-01-00
100,0,2016-05-01-00
200,0,2016-05-01-00
300,0,2016-05-01-00
400,0,2016-05-01-00
500,0,2016-05-01-00
600,0,2016-05-01-00
700,0,2016-05-01-00
800,0,2016-05-01-00
900,0,2016-05-01-00
1000,0,2016-05-01-00
2000,0,2016-05-01-00
3000,0,2016-05-01-00
4000,0,2016-05-01-00
5000,0,2016-05-01-00
6000,0,2016-05-01-00
7000,0,2016-05-01-00
8000,0,2016-05-01-00
9000,0,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,0,2016-05-01-01
30,0,2016-05-01-01
40,0,2016-05-01-01
50,0,2016-05-01-01
60,0,2016-05-01-01
70,0,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,0,2016-05-01-01
200,0,2016-05-01-01
300,0,2016-05-01-01
400,0,2016-05-01-01
500,0,2016-05-01-01
600,0,2016-05-01-01
700,0,2016-05-01-01
800,0,2016-05-01-01
900,0,2016-05-01-01
1000,0,2016-05-01-01
2000,0,2016-05-01-01
3000,0,2016-05-01-01
4000,0,2016-05-01-01
5000,0,2016-05-01-01
6000,0,2016-05-01-01
7000,0,2016-05-01-01
8000,0,2016-05-01-01
9000,0,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,0,2016-05-01-06
30,0,2016-05-01-06
40,0,2016-05-01-06
50,0,2016-05-01-06
60,0,2016-05-01-06
70,0,2016-05-01-06
80,0,2016-05-01-06
90,0,2016-05-01-06
100,0,2016-05-01-06
200,0,2016-05-01-06
300,0,2016-05-01-06
400,0,2016-05-01-06
500,0,2016-05-01-06
600,0,2016-05-01-06
700,0,2016-05-01-06
800,0,2016-05-01-06
900,0,2016-05-01-06
1000,0,2016-05-01-06
2000,0,2016-05-01-06
3000,0,2016-05-01-06
4000,0,2016-05-01-06
5000,0,2016-05-01-06
6000,0,2016-05-01-06
7000,0,2016-05-01-06
8000,0,2016-05-01-06
9000,0,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,0,2016-05-01-10
30,0,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,0,2016-05-01-10
70,0,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,0,2016-05-01-10
200,0,2016-05-01-10
300,0,2016-05-01-10
400,0,2016-05-01-10
500,0,2016-05-01-10
600,0,2016-05-01-10
700,0,2016-05-01-10
800,0,2016-05-01-10
900,0,2016-05-01-10
1000,0,2016-05-01-10
2000,0,2016-05-01-10
3000,0,2016-05-01-10
4000,0,2016-05-01-10
5000,0,2016-05-01-10
6000,0,2016-05-01-10
7000,0,2016-05-01-10
8000,0,2016-05-01-10
9000,0,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,0,2016-05-01-02
30,0,2016-05-01-02
40,0,2016-05-01-02
50,0,2016-05-01-02
60,0,2016-05-01-02
70,0,2016-05-01-02
80,0,2016-05-01-02
90,0,2016-05-01-02
100,0,2016-05-01-02
200,0,2016-05-01-02
300,0,2016-05-01-02
400,0,2016-05-01-02
500,0,2016-05-01-02
600,0,2016-05-01-02
700,0,2016-05-01-02
800,0,2016-05-01-02
900,0,2016-05-01-02
1000,0,2016-05-01-02
2000,0,2016-05-01-02
3000,0,2016-05-01-02
4000,0,2016-05-01-02
5000,0,2016-05-01-02
6000,0,2016-05-01-02
7000,0,2016-05-01-02
8000,0,2016-05-01-02
9000,0,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,0,2016-05-01-04
40,0,2016-05-01-04
50,0,2016-05-01-04
60,0,2016-05-01-04
70,0,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,0,2016-05-01-04
200,0,2016-05-01-04
300,0,2016-05-01-04
400,0,2016-05-01-04
500,0,2016-05-01-04
600,0,2016-05-01-04
700,0,2016-05-01-04
800,0,2016-05-01-04
900,0,2016-05-01-04
1000,0,2016-05-01-04
2000,0,2016-05-01-04
3000,0,2016-05-01-04
4000,0,2016-05-01-04
5000,0,2016-05-01-04
6000,0,2016-05-01-04
7000,0,2016-05-01-04
8000,0,2016-05-01-04
9000,0,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,0,2016-05-01-03
30,0,2016-05-01-03
40,0,2016-05-01-03
50,0,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,0,2016-05-01-03
90,0,2016-05-01-03
100,0,2016-05-01-03
200,0,2016-05-01-03
300,0,2016-05-01-03
400,0,2016-05-01-03
500,0,2016-05-01-03
600,0,2016-05-01-03
700,0,2016-05-01-03
800,0,2016-05-01-03
900,0,2016-05-01-03
1000,0,2016-05-01-03
2000,0,2016-05-01-03
3000,0,2016-05-01-03
4000,0,2016-05-01-03
5000,0,2016-05-01-03
6000,0,2016-05-01-03
7000,0,2016-05-01-03
8000,0,2016-05-01-03
9000,0,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,0,2016-05-01-05
30,0,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,0,2016-05-01-05
70,0,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,0,2016-05-01-05
200,0,2016-05-01-05
300,0,2016-05-01-05
400,0,2016-05-01-05
500,0,2016-05-01-05
600,0,2016-05-01-05
700,0,2016-05-01-05
800,0,2016-05-01-05
900,0,2016-05-01-05
1000,0,2016-05-01-05
2000,0,2016-05-01-05
3000,0,2016-05-01-05
4000,0,2016-05-01-05
5000,0,2016-05-01-05
6000,0,2016-05-01-05
7000,0,2016-05-01-05
8000,0,2016-05-01-05
9000,0,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,0,2016-05-01-07
30,0,2016-05-01-07
40,0,2016-05-01-07
50,0,2016-05-01-07
60,0,2016-05-01-07
70,0,2016-05-01-07
80,0,2016-05-01-07
90,0,2016-05-01-07
100,0,2016-05-01-07
200,0,2016-05-01-07
300,0,2016-05-01-07
400,0,2016-05-01-07
500,0,2016-05-01-07
600,0,2016-05-01-07
700,0,2016-05-01-07
800,0,2016-05-01-07
900,0,2016-05-01-07
1000,0,2016-05-01-07
2000,0,2016-05-01-07
3000,0,2016-05-01-07
4000,0,2016-05-01-07
5000,0,2016-05-01-07
6000,0,2016-05-01-07
7000,0,2016-05-01-07
8000,0,2016-05-01-07
9000,0,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,0,2016-05-01-11
30,0,2016-05-01-11
40,0,2016-05-01-11
50,0,2016-05-01-11
60,0,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,0,2016-05-01-11
100,0,2016-05-01-11
200,0,2016-05-01-11
300,0,2016-05-01-11
400,0,2016-05-01-11
500,0,2016-05-01-11
600,0,2016-05-01-11
700,0,2016-05-01-11
800,0,2016-05-01-11
900,0,2016-05-01-11
1000,0,2016-05-01-11
2000,0,2016-05-01-11
3000,0,2016-05-01-11
4000,0,2016-05-01-11
5000,0,2016-05-01-11
6000,0,2016-05-01-11
7000,0,2016-05-01-11
8000,0,2016-05-01-11
9000,0,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,0,2016-05-01-09
30,0,2016-05-01-09
40,0,2016-05-01-09
50,0,2016-05-01-09
60,0,2016-05-01-09
70,0,2016-05-01-09
80,0,2016-05-01-09
90,0,2016-05-01-09
100,0,2016-05-01-09
200,0,2016-05-01-09
300,0,2016-05-01-09
400,0,2016-05-01-09
500,0,2016-05-01-09
600,0,2016-05-01-09
700,0,2016-05-01-09
800,0,2016-05-01-09
900,0,2016-05-01-09
1000,0,2016-05-01-09
2000,0,2016-05-01-09
3000,0,2016-05-01-09
4000,0,2016-05-01-09
5000,0,2016-05-01-09
6000,0,2016-05-01-09
7000,0,2016-05-01-09
8000,0,2016-05-01-09
9000,0,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,0,2016-05-01-08
30,0,2016-05-01-08
40,0,2016-05-01-08
50,0,2016-05-01-08
60,0,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,0,2016-05-01-08
200,0,2016-05-01-08
300,0,2016-05-01-08
400,0,2016-05-01-08
500,0,2016-05-01-08
600,0,2016-05-01-08
700,0,2016-05-01-08
800,0,2016-05-01-08
900,0,2016-05-01-08
1000,0,2016-05-01-08
2000,0,2016-05-01-08
3000,0,2016-05-01-08
4000,0,2016-05-01-08
5000,0,2016-05-01-08
6000,0,2016-05-01-08
7000,0,2016-05-01-08
8000,0,2016-05-01-08
9000,0,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,0,2016-05-01-18
30,0,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,0,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,0,2016-05-01-18
100,0,2016-05-01-18
200,0,2016-05-01-18
300,0,2016-05-01-18
400,0,2016-05-01-18
500,0,2016-05-01-18
600,0,2016-05-01-18
700,0,2016-05-01-18
800,0,2016-05-01-18
900,0,2016-05-01-18
1000,0,2016-05-01-18
2000,0,2016-05-01-18
3000,0,2016-05-01-18
4000,0,2016-05-01-18
5000,0,2016-05-01-18
6000,0,2016-05-01-18
7000,0,2016-05-01-18
8000,0,2016-05-01-18
9000,0,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,0,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,0,2016-05-01-15
60,0,2016-05-01-15
70,0,2016-05-01-15
80,0,2016-05-01-15
90,0,2016-05-01-15
100,0,2016-05-01-15
200,0,2016-05-01-15
300,0,2016-05-01-15
400,0,2016-05-01-15
500,0,2016-05-01-15
600,0,2016-05-01-15
700,0,2016-05-01-15
800,0,2016-05-01-15
900,0,2016-05-01-15
1000,0,2016-05-01-15
2000,0,2016-05-01-15
3000,0,2016-05-01-15
4000,0,2016-05-01-15
5000,0,2016-05-01-15
6000,0,2016-05-01-15
7000,0,2016-05-01-15
8000,0,2016-05-01-15
9000,0,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,0,2016-05-01-16
30,0,2016-05-01-16
40,0,2016-05-01-16
50,0,2016-05-01-16
60,0,2016-05-01-16
70,0,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,0,2016-05-01-16
200,0,2016-05-01-16
300,0,2016-05-01-16
400,0,2016-05-01-16
500,0,2016-05-01-16
600,0,2016-05-01-16
700,0,2016-05-01-16
800,0,2016-05-01-16
900,0,2016-05-01-16
1000,0,2016-05-01-16
2000,0,2016-05-01-16
3000,0,2016-05-01-16
4000,0,2016-05-01-16
5000,0,2016-05-01-16
6000,0,2016-05-01-16
7000,0,2016-05-01-16
8000,0,2016-05-01-16
9000,0,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,0,2016-05-01-13
30,0,2016-05-01-13
40,0,2016-05-01-13
50,0,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,0,2016-05-01-13
200,0,2016-05-01-13
300,0,2016-05-01-13
400,0,2016-05-01-13
500,0,2016-05-01-13
600,0,2016-05-01-13
700,0,2016-05-01-13
800,0,2016-05-01-13
900,0,2016-05-01-13
1000,0,2016-05-01-13
2000,0,2016-05-01-13
3000,0,2016-05-01-13
4000,0,2016-05-01-13
5000,0,2016-05-01-13
6000,0,2016-05-01-13
7000,0,2016-05-01-13
8000,0,2016-05-01-13
9000,0,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,0,2016-05-01-12
30,0,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,0,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,0,2016-05-01-12
100,0,2016-05-01-12
200,0,2016-05-01-12
300,0,2016-05-01-12
400,0,2016-05-01-12
500,0,2016-05-01-12
600,0,2016-05-01-12
700,0,2016-05-01-12
800,0,2016-05-01-12
900,0,2016-05-01-12
1000,0,2016-05-01-12
2000,0,2016-05-01-12
3000,0,2016-05-01-12
4000,0,2016-05-01-12
5000,0,2016-05-01-12
6000,0,2016-05-01-12
7000,0,2016-05-01-12
8000,0,2016-05-01-12
9000,0,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,0,2016-05-01-23
70,0,2016-05-01-23
80,0,2016-05-01-23
90,0,2016-05-01-23
100,0,2016-05-01-23
200,0,2016-05-01-23
300,0,2016-05-01-23
400,0,2016-05-01-23
500,0,2016-05-01-23
600,0,2016-05-01-23
700,0,2016-05-01-23
800,0,2016-05-01-23
900,0,2016-05-01-23
1000,0,2016-05-01-23
2000,0,2016-05-01-23
3000,0,2016-05-01-23
4000,0,2016-05-01-23
5000,0,2016-05-01-23
6000,0,2016-05-01-23
7000,0,2016-05-01-23
8000,0,2016-05-01-23
9000,0,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,0,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,0,2016-05-01-14
90,0,2016-05-01-14
100,0,2016-05-01-14
200,0,2016-05-01-14
300,0,2016-05-01-14
400,0,2016-05-01-14
500,0,2016-05-01-14
600,0,2016-05-01-14
700,0,2016-05-01-14
800,0,2016-05-01-14
900,0,2016-05-01-14
1000,0,2016-05-01-14
2000,0,2016-05-01-14
3000,0,2016-05-01-14
4000,0,2016-05-01-14
5000,0,2016-05-01-14
6000,0,2016-05-01-14
7000,0,2016-05-01-14
8000,0,2016-05-01-14
9000,0,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,0,2016-05-01-17
30,0,2016-05-01-17
40,0,2016-05-01-17
50,0,2016-05-01-17
60,0,2016-05-01-17
70,0,2016-05-01-17
80,0,2016-05-01-17
90,0,2016-05-01-17
100,0,2016-05-01-17
200,0,2016-05-01-17
300,0,2016-05-01-17
400,0,2016-05-01-17
500,0,2016-05-01-17
600,0,2016-05-01-17
700,0,2016-05-01-17
800,0,2016-05-01-17
900,0,2016-05-01-17
1000,0,2016-05-01-17
2000,0,2016-05-01-17
3000,0,2016-05-01-17
4000,0,2016-05-01-17
5000,0,2016-05-01-17
6000,0,2016-05-01-17
7000,0,2016-05-01-17
8000,0,2016-05-01-17
9000,0,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,0,2016-05-01-19
30,0,2016-05-01-19
40,0,2016-05-01-19
50,0,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,0,2016-05-01-19
100,0,2016-05-01-19
200,0,2016-05-01-19
300,0,2016-05-01-19
400,0,2016-05-01-19
500,0,2016-05-01-19
600,0,2016-05-01-19
700,0,2016-05-01-19
800,0,2016-05-01-19
900,0,2016-05-01-19
1000,0,2016-05-01-19
2000,0,2016-05-01-19
3000,0,2016-05-01-19
4000,0,2016-05-01-19
5000,0,2016-05-01-19
6000,0,2016-05-01-19
7000,0,2016-05-01-19
8000,0,2016-05-01-19
9000,0,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,0,2016-05-01-20
30,0,2016-05-01-20
40,0,2016-05-01-20
50,0,2016-05-01-20
60,0,2016-05-01-20
70,0,2016-05-01-20
80,0,2016-05-01-20
90,0,2016-05-01-20
100,0,2016-05-01-20
200,0,2016-05-01-20
300,0,2016-05-01-20
400,0,2016-05-01-20
500,0,2016-05-01-20
600,0,2016-05-01-20
700,0,2016-05-01-20
800,0,2016-05-01-20
900,0,2016-05-01-20
1000,0,2016-05-01-20
2000,0,2016-05-01-20
3000,0,2016-05-01-20
4000,0,2016-05-01-20
5000,0,2016-05-01-20
6000,0,2016-05-01-20
7000,0,2016-05-01-20
8000,0,2016-05-01-20
9000,0,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,0,2016-05-01-21
30,0,2016-05-01-21
40,0,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,0,2016-05-01-21
90,0,2016-05-01-21
100,0,2016-05-01-21
200,0,2016-05-01-21
300,0,2016-05-01-21
400,0,2016-05-01-21
500,0,2016-05-01-21
600,0,2016-05-01-21
700,0,2016-05-01-21
800,0,2016-05-01-21
900,0,2016-05-01-21
1000,0,2016-05-01-21
2000,0,2016-05-01-21
3000,0,2016-05-01-21
4000,0,2016-05-01-21
5000,0,2016-05-01-21
6000,0,2016-05-01-21
7000,0,2016-05-01-21
8000,0,2016-05-01-21
9000,0,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,0,2016-05-01-22
30,0,2016-05-01-22
40,0,2016-05-01-22
50,0,2016-05-01-22
60,0,2016-05-01-22
70,0,2016-05-01-22
80,0,2016-05-01-22
90,0,2016-05-01-22
100,0,2016-05-01-22
200,0,2016-05-01-22
300,0,2016-05-01-22
400,0,2016-05-01-22
500,0,2016-05-01-22
600,0,2016-05-01-22
700,0,2016-05-01-22
800,0,2016-05-01-22
900,0,2016-05-01-22
1000,0,2016-05-01-22
2000,0,2016-05-01-22
3000,0,2016-05-01-22
4000,0,2016-05-01-22
5000,0,2016-05-01-22
6000,0,2016-05-01-22
7000,0,2016-05-01-22
8000,0,2016-05-01-22
9000,0,2016-05-01-22
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,0,2016-05-01-00
30,0,2016-05-01-00
40,0,2016-05-01-00
50,1,2016-05-01-00
60,0,2016-05-01-00
70,0,2016-05-01-00
80,0,2016-05-01-00
90,0,2016-05-01-00
100,191,2016-05-01-00
200,0,2016-05-01-00
300,0,2016-05-01-00
400,0,2016-05-01-00
500,0,2016-05-01-00
600,0,2016-05-01-00
700,0,2016-05-01-00
800,0,2016-05-01-00
900,0,2016-05-01-00
1000,1,2016-05-01-00
2000,14,2016-05-01-00
3000,12,2016-05-01-00
4000,8,2016-05-01-00
5000,10,2016-05-01-00
6000,20,2016-05-01-00
7000,8,2016-05-01-00
8000,4,2016-05-01-00
9000,6,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,0,2016-05-01-01
30,0,2016-05-01-01
40,0,2016-05-01-01
50,0,2016-05-01-01
60,0,2016-05-01-01
70,0,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,154,2016-05-01-01
200,0,2016-05-01-01
300,0,2016-05-01-01
400,0,2016-05-01-01
500,0,2016-05-01-01
600,0,2016-05-01-01
700,0,2016-05-01-01
800,0,2016-05-01-01
900,0,2016-05-01-01
1000,0,2016-05-01-01
2000,23,2016-05-01-01
3000,13,2016-05-01-01
4000,14,2016-05-01-01
5000,9,2016-05-01-01
6000,18,2016-05-01-01
7000,4,2016-05-01-01
8000,9,2016-05-01-01
9000,5,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,0,2016-05-01-06
30,0,2016-05-01-06
40,0,2016-05-01-06
50,0,2016-05-01-06
60,0,2016-05-01-06
70,0,2016-05-01-06
80,0,2016-05-01-06
90,0,2016-05-01-06
100,165,2016-05-01-06
200,0,2016-05-01-06
300,0,2016-05-01-06
400,0,2016-05-01-06
500,0,2016-05-01-06
600,0,2016-05-01-06
700,0,2016-05-01-06
800,0,2016-05-01-06
900,0,2016-05-01-06
1000,1,2016-05-01-06
2000,8,2016-05-01-06
3000,16,2016-05-01-06
4000,14,2016-05-01-06
5000,8,2016-05-01-06
6000,9,2016-05-01-06
7000,13,2016-05-01-06
8000,7,2016-05-01-06
9000,2,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,0,2016-05-01-10
30,0,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,0,2016-05-01-10
70,0,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,148,2016-05-01-10
200,0,2016-05-01-10
300,0,2016-05-01-10
400,0,2016-05-01-10
500,0,2016-05-01-10
600,0,2016-05-01-10
700,0,2016-05-01-10
800,0,2016-05-01-10
900,0,2016-05-01-10
1000,0,2016-05-01-10
2000,11,2016-05-01-10
3000,8,2016-05-01-10
4000,9,2016-05-01-10
5000,7,2016-05-01-10
6000,8,2016-05-01-10
7000,10,2016-05-01-10
8000,6,2016-05-01-10
9000,4,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,0,2016-05-01-02
30,0,2016-05-01-02
40,0,2016-05-01-02
50,0,2016-05-01-02
60,0,2016-05-01-02
70,0,2016-05-01-02
80,0,2016-05-01-02
90,0,2016-05-01-02
100,162,2016-05-01-02
200,0,2016-05-01-02
300,0,2016-05-01-02
400,0,2016-05-01-02
500,0,2016-05-01-02
600,0,2016-05-01-02
700,0,2016-05-01-02
800,0,2016-05-01-02
900,0,2016-05-01-02
1000,1,2016-05-01-02
2000,17,2016-05-01-02
3000,8,2016-05-01-02
4000,9,2016-05-01-02
5000,11,2016-05-01-02
6000,15,2016-05-01-02
7000,9,2016-05-01-02
8000,1,2016-05-01-02
9000,13,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,0,2016-05-01-04
40,0,2016-05-01-04
50,0,2016-05-01-04
60,0,2016-05-01-04
70,0,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,168,2016-05-01-04
200,0,2016-05-01-04
300,0,2016-05-01-04
400,0,2016-05-01-04
500,0,2016-05-01-04
600,0,2016-05-01-04
700,0,2016-05-01-04
800,0,2016-05-01-04
900,0,2016-05-01-04
1000,0,2016-05-01-04
2000,22,2016-05-01-04
3000,12,2016-05-01-04
4000,12,2016-05-01-04
5000,11,2016-05-01-04
6000,9,2016-05-01-04
7000,11,2016-05-01-04
8000,5,2016-05-01-04
9000,4,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,0,2016-05-01-03
30,0,2016-05-01-03
40,0,2016-05-01-03
50,0,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,0,2016-05-01-03
90,0,2016-05-01-03
100,163,2016-05-01-03
200,0,2016-05-01-03
300,0,2016-05-01-03
400,0,2016-05-01-03
500,0,2016-05-01-03
600,0,2016-05-01-03
700,0,2016-05-01-03
800,0,2016-05-01-03
900,0,2016-05-01-03
1000,0,2016-05-01-03
2000,11,2016-05-01-03
3000,11,2016-05-01-03
4000,8,2016-05-01-03
5000,10,2016-05-01-03
6000,18,2016-05-01-03
7000,6,2016-05-01-03
8000,7,2016-05-01-03
9000,9,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,0,2016-05-01-05
30,0,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,0,2016-05-01-05
70,0,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,161,2016-05-01-05
200,0,2016-05-01-05
300,0,2016-05-01-05
400,0,2016-05-01-05
500,0,2016-05-01-05
600,0,2016-05-01-05
700,0,2016-05-01-05
800,0,2016-05-01-05
900,0,2016-05-01-05
1000,1,2016-05-01-05
2000,21,2016-05-01-05
3000,17,2016-05-01-05
4000,12,2016-05-01-05
5000,7,2016-05-01-05
6000,16,2016-05-01-05
7000,9,2016-05-01-05
8000,8,2016-05-01-05
9000,4,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,0,2016-05-01-07
30,0,2016-05-01-07
40,0,2016-05-01-07
50,0,2016-05-01-07
60,0,2016-05-01-07
70,0,2016-05-01-07
80,0,2016-05-01-07
90,0,2016-05-01-07
100,137,2016-05-01-07
200,0,2016-05-01-07
300,0,2016-05-01-07
400,0,2016-05-01-07
500,0,2016-05-01-07
600,0,2016-05-01-07
700,0,2016-05-01-07
800,0,2016-05-01-07
900,0,2016-05-01-07
1000,0,2016-05-01-07
2000,15,2016-05-01-07
3000,6,2016-05-01-07
4000,11,2016-05-01-07
5000,11,2016-05-01-07
6000,12,2016-05-01-07
7000,8,2016-05-01-07
8000,7,2016-05-01-07
9000,5,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,0,2016-05-01-11
30,0,2016-05-01-11
40,0,2016-05-01-11
50,0,2016-05-01-11
60,0,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,0,2016-05-01-11
100,176,2016-05-01-11
200,0,2016-05-01-11
300,0,2016-05-01-11
400,0,2016-05-01-11
500,0,2016-05-01-11
600,0,2016-05-01-11
700,0,2016-05-01-11
800,0,2016-05-01-11
900,0,2016-05-01-11
1000,0,2016-05-01-11
2000,8,2016-05-01-11
3000,10,2016-05-01-11
4000,14,2016-05-01-11
5000,12,2016-05-01-11
6000,5,2016-05-01-11
7000,9,2016-05-01-11
8000,9,2016-05-01-11
9000,7,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,0,2016-05-01-09
30,0,2016-05-01-09
40,0,2016-05-01-09
50,0,2016-05-01-09
60,0,2016-05-01-09
70,0,2016-05-01-09
80,0,2016-05-01-09
90,0,2016-05-01-09
100,134,2016-05-01-09
200,0,2016-05-01-09
300,0,2016-05-01-09
400,0,2016-05-01-09
500,0,2016-05-01-09
600,0,2016-05-01-09
700,0,2016-05-01-09
800,0,2016-05-01-09
900,0,2016-05-01-09
1000,1,2016-05-01-09
2000,12,2016-05-01-09
3000,12,2016-05-01-09
4000,13,2016-05-01-09
5000,6,2016-05-01-09
6000,10,2016-05-01-09
7000,8,2016-05-01-09
8000,8,2016-05-01-09
9000,11,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,0,2016-05-01-08
30,0,2016-05-01-08
40,0,2016-05-01-08
50,0,2016-05-01-08
60,0,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,166,2016-05-01-08
200,0,2016-05-01-08
300,0,2016-05-01-08
400,0,2016-05-01-08
500,0,2016-05-01-08
600,0,2016-05-01-08
700,0,2016-05-01-08
800,0,2016-05-01-08
900,0,2016-05-01-08
1000,1,2016-05-01-08
2000,8,2016-05-01-08
3000,12,2016-05-01-08
4000,15,2016-05-01-08
5000,6,2016-05-01-08
6000,11,2016-05-01-08
7000,4,2016-05-01-08
8000,3,2016-05-01-08
9000,6,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,0,2016-05-01-18
30,0,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,0,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,0,2016-05-01-18
100,146,2016-05-01-18
200,0,2016-05-01-18
300,0,2016-05-01-18
400,0,2016-05-01-18
500,0,2016-05-01-18
600,0,2016-05-01-18
700,0,2016-05-01-18
800,0,2016-05-01-18
900,0,2016-05-01-18
1000,0,2016-05-01-18
2000,13,2016-05-01-18
3000,10,2016-05-01-18
4000,7,2016-05-01-18
5000,7,2016-05-01-18
6000,8,2016-05-01-18
7000,8,2016-05-01-18
8000,4,2016-05-01-18
9000,2,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,0,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,0,2016-05-01-15
60,0,2016-05-01-15
70,0,2016-05-01-15
80,0,2016-05-01-15
90,0,2016-05-01-15
100,150,2016-05-01-15
200,0,2016-05-01-15
300,0,2016-05-01-15
400,0,2016-05-01-15
500,0,2016-05-01-15
600,0,2016-05-01-15
700,0,2016-05-01-15
800,0,2016-05-01-15
900,0,2016-05-01-15
1000,0,2016-05-01-15
2000,17,2016-05-01-15
3000,9,2016-05-01-15
4000,7,2016-05-01-15
5000,10,2016-05-01-15
6000,10,2016-05-01-15
7000,7,2016-05-01-15
8000,3,2016-05-01-15
9000,6,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,0,2016-05-01-16
30,0,2016-05-01-16
40,0,2016-05-01-16
50,0,2016-05-01-16
60,0,2016-05-01-16
70,0,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,145,2016-05-01-16
200,0,2016-05-01-16
300,0,2016-05-01-16
400,0,2016-05-01-16
500,0,2016-05-01-16
600,0,2016-05-01-16
700,0,2016-05-01-16
800,0,2016-05-01-16
900,0,2016-05-01-16
1000,0,2016-05-01-16
2000,11,2016-05-01-16
3000,2,2016-05-01-16
4000,11,2016-05-01-16
5000,11,2016-05-01-16
6000,8,2016-05-01-16
7000,8,2016-05-01-16
8000,7,2016-05-01-16
9000,9,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,0,2016-05-01-13
30,0,2016-05-01-13
40,0,2016-05-01-13
50,0,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,147,2016-05-01-13
200,0,2016-05-01-13
300,0,2016-05-01-13
400,0,2016-05-01-13
500,0,2016-05-01-13
600,0,2016-05-01-13
700,0,2016-05-01-13
800,0,2016-05-01-13
900,0,2016-05-01-13
1000,0,2016-05-01-13
2000,13,2016-05-01-13
3000,17,2016-05-01-13
4000,9,2016-05-01-13
5000,15,2016-05-01-13
6000,14,2016-05-01-13
7000,16,2016-05-01-13
8000,10,2016-05-01-13
9000,6,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,0,2016-05-01-12
30,0,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,0,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,0,2016-05-01-12
100,154,2016-05-01-12
200,0,2016-05-01-12
300,0,2016-05-01-12
400,0,2016-05-01-12
500,0,2016-05-01-12
600,0,2016-05-01-12
700,0,2016-05-01-12
800,0,2016-05-01-12
900,0,2016-05-01-12
1000,0,2016-05-01-12
2000,11,2016-05-01-12
3000,17,2016-05-01-12
4000,21,2016-05-01-12
5000,5,2016-05-01-12
6000,11,2016-05-01-12
7000,6,2016-05-01-12
8000,6,2016-05-01-12
9000,8,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,0,2016-05-01-23
70,0,2016-05-01-23
80,0,2016-05-01-23
90,0,2016-05-01-23
100,158,2016-05-01-23
200,0,2016-05-01-23
300,0,2016-05-01-23
400,0,2016-05-01-23
500,0,2016-05-01-23
600,0,2016-05-01-23
700,0,2016-05-01-23
800,0,2016-05-01-23
900,0,2016-05-01-23
1000,0,2016-05-01-23
2000,9,2016-05-01-23
3000,8,2016-05-01-23
4000,6,2016-05-01-23
5000,8,2016-05-01-23
6000,14,2016-05-01-23
7000,11,2016-05-01-23
8000,6,2016-05-01-23
9000,6,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,0,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,0,2016-05-01-14
90,0,2016-05-01-14
100,155,2016-05-01-14
200,0,2016-05-01-14
300,0,2016-05-01-14
400,0,2016-05-01-14
500,0,2016-05-01-14
600,0,2016-05-01-14
700,0,2016-05-01-14
800,0,2016-05-01-14
900,0,2016-05-01-14
1000,1,2016-05-01-14
2000,18,2016-05-01-14
3000,6,2016-05-01-14
4000,10,2016-05-01-14
5000,14,2016-05-01-14
6000,13,2016-05-01-14
7000,8,2016-05-01-14
8000,7,2016-05-01-14
9000,8,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,0,2016-05-01-17
30,0,2016-05-01-17
40,0,2016-05-01-17
50,0,2016-05-01-17
60,0,2016-05-01-17
70,0,2016-05-01-17
80,0,2016-05-01-17
90,0,2016-05-01-17
100,148,2016-05-01-17
200,0,2016-05-01-17
300,0,2016-05-01-17
400,0,2016-05-01-17
500,0,2016-05-01-17
600,0,2016-05-01-17
700,0,2016-05-01-17
800,0,2016-05-01-17
900,0,2016-05-01-17
1000,1,2016-05-01-17
2000,14,2016-05-01-17
3000,14,2016-05-01-17
4000,7,2016-05-01-17
5000,6,2016-05-01-17
6000,10,2016-05-01-17
7000,8,2016-05-01-17
8000,7,2016-05-01-17
9000,7,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,0,2016-05-01-19
30,0,2016-05-01-19
40,0,2016-05-01-19
50,0,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,0,2016-05-01-19
100,150,2016-05-01-19
200,0,2016-05-01-19
300,0,2016-05-01-19
400,0,2016-05-01-19
500,0,2016-05-01-19
600,0,2016-05-01-19
700,0,2016-05-01-19
800,0,2016-05-01-19
900,0,2016-05-01-19
1000,0,2016-05-01-19
2000,17,2016-05-01-19
3000,12,2016-05-01-19
4000,5,2016-05-01-19
5000,13,2016-05-01-19
6000,15,2016-05-01-19
7000,12,2016-05-01-19
8000,9,2016-05-01-19
9000,10,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,0,2016-05-01-20
30,0,2016-05-01-20
40,0,2016-05-01-20
50,0,2016-05-01-20
60,0,2016-05-01-20
70,0,2016-05-01-20
80,0,2016-05-01-20
90,0,2016-05-01-20
100,151,2016-05-01-20
200,0,2016-05-01-20
300,0,2016-05-01-20
400,0,2016-05-01-20
500,0,2016-05-01-20
600,0,2016-05-01-20
700,0,2016-05-01-20
800,0,2016-05-01-20
900,0,2016-05-01-20
1000,0,2016-05-01-20
2000,9,2016-05-01-20
3000,8,2016-05-01-20
4000,15,2016-05-01-20
5000,9,2016-05-01-20
6000,20,2016-05-01-20
7000,16,2016-05-01-20
8000,5,2016-05-01-20
9000,4,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,0,2016-05-01-21
30,0,2016-05-01-21
40,0,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,0,2016-05-01-21
90,0,2016-05-01-21
100,136,2016-05-01-21
200,0,2016-05-01-21
300,0,2016-05-01-21
400,0,2016-05-01-21
500,0,2016-05-01-21
600,0,2016-05-01-21
700,0,2016-05-01-21
800,0,2016-05-01-21
900,0,2016-05-01-21
1000,0,2016-05-01-21
2000,10,2016-05-01-21
3000,10,2016-05-01-21
4000,12,2016-05-01-21
5000,9,2016-05-01-21
6000,7,2016-05-01-21
7000,5,2016-05-01-21
8000,9,2016-05-01-21
9000,9,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,0,2016-05-01-22
30,0,2016-05-01-22
40,0,2016-05-01-22
50,0,2016-05-01-22
60,0,2016-05-01-22
70,0,2016-05-01-22
80,0,2016-05-01-22
90,0,2016-05-01-22
100,152,2016-05-01-22
200,0,2016-05-01-22
300,0,2016-05-01-22
400,0,2016-05-01-22
500,0,2016-05-01-22
600,0,2016-05-01-22
700,0,2016-05-01-22
800,0,2016-05-01-22
900,0,2016-05-01-22
1000,0,2016-05-01-22
2000,14,2016-05-01-22
3000,10,2016-05-01-22
4000,11,2016-05-01-22
5000,12,2016-05-01-22
6000,8,2016-05-01-22
7000,8,2016-05-01-22
8000,8,2016-05-01-22
9000,4,2016-05-01-22
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,0,2016-05-01-00
30,0,2016-05-01-00
40,0,2016-05-01-00
50,0,2016-05-01-00
60,0,2016-05-01-00
70,0,2016-05-01-00
80,0,2016-05-01-00
90,0,2016-05-01-00
100,0,2016-05-01-00
200,53,2016-05-01-00
300,50,2016-05-01-00
400,50,2016-05-01-00
500,27,2016-05-01-00
600,10,2016-05-01-00
700,2,2016-05-01-00
800,0,2016-05-01-00
900,0,2016-05-01-00
1000,56,2016-05-01-00
2000,58,2016-05-01-00
3000,31,2016-05-01-00
4000,31,2016-05-01-00
5000,24,2016-05-01-00
6000,19,2016-05-01-00
7000,9,2016-05-01-00
8000,15,2016-05-01-00
9000,3,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,0,2016-05-01-01
30,0,2016-05-01-01
40,0,2016-05-01-01
50,0,2016-05-01-01
60,0,2016-05-01-01
70,0,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,0,2016-05-01-01
200,32,2016-05-01-01
300,43,2016-05-01-01
400,40,2016-05-01-01
500,26,2016-05-01-01
600,11,2016-05-01-01
700,2,2016-05-01-01
800,0,2016-05-01-01
900,0,2016-05-01-01
1000,68,2016-05-01-01
2000,67,2016-05-01-01
3000,31,2016-05-01-01
4000,32,2016-05-01-01
5000,20,2016-05-01-01
6000,17,2016-05-01-01
7000,11,2016-05-01-01
8000,8,2016-05-01-01
9000,12,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,0,2016-05-01-06
30,0,2016-05-01-06
40,0,2016-05-01-06
50,0,2016-05-01-06
60,0,2016-05-01-06
70,0,2016-05-01-06
80,0,2016-05-01-06
90,0,2016-05-01-06
100,0,2016-05-01-06
200,43,2016-05-01-06
300,48,2016-05-01-06
400,43,2016-05-01-06
500,20,2016-05-01-06
600,8,2016-05-01-06
700,3,2016-05-01-06
800,0,2016-05-01-06
900,1,2016-05-01-06
1000,49,2016-05-01-06
2000,42,2016-05-01-06
3000,25,2016-05-01-06
4000,20,2016-05-01-06
5000,27,2016-05-01-06
6000,20,2016-05-01-06
7000,8,2016-05-01-06
8000,11,2016-05-01-06
9000,7,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,0,2016-05-01-10
30,0,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,0,2016-05-01-10
70,0,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,0,2016-05-01-10
200,39,2016-05-01-10
300,40,2016-05-01-10
400,31,2016-05-01-10
500,27,2016-05-01-10
600,6,2016-05-01-10
700,4,2016-05-01-10
800,1,2016-05-01-10
900,0,2016-05-01-10
1000,40,2016-05-01-10
2000,51,2016-05-01-10
3000,19,2016-05-01-10
4000,24,2016-05-01-10
5000,14,2016-05-01-10
6000,19,2016-05-01-10
7000,14,2016-05-01-10
8000,11,2016-05-01-10
9000,5,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,0,2016-05-01-02
30,0,2016-05-01-02
40,0,2016-05-01-02
50,0,2016-05-01-02
60,0,2016-05-01-02
70,0,2016-05-01-02
80,0,2016-05-01-02
90,0,2016-05-01-02
100,0,2016-05-01-02
200,43,2016-05-01-02
300,34,2016-05-01-02
400,39,2016-05-01-02
500,40,2016-05-01-02
600,5,2016-05-01-02
700,1,2016-05-01-02
800,0,2016-05-01-02
900,0,2016-05-01-02
1000,53,2016-05-01-02
2000,73,2016-05-01-02
3000,37,2016-05-01-02
4000,32,2016-05-01-02
5000,31,2016-05-01-02
6000,19,2016-05-01-02
7000,13,2016-05-01-02
8000,19,2016-05-01-02
9000,7,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,0,2016-05-01-04
40,0,2016-05-01-04
50,0,2016-05-01-04
60,0,2016-05-01-04
70,0,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,0,2016-05-01-04
200,38,2016-05-01-04
300,41,2016-05-01-04
400,42,2016-05-01-04
500,38,2016-05-01-04
600,3,2016-05-01-04
700,6,2016-05-01-04
800,0,2016-05-01-04
900,0,2016-05-01-04
1000,62,2016-05-01-04
2000,69,2016-05-01-04
3000,36,2016-05-01-04
4000,29,2016-05-01-04
5000,16,2016-05-01-04
6000,14,2016-05-01-04
7000,10,2016-05-01-04
8000,4,2016-05-01-04
9000,13,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,0,2016-05-01-03
30,0,2016-05-01-03
40,0,2016-05-01-03
50,0,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,0,2016-05-01-03
90,0,2016-05-01-03
100,0,2016-05-01-03
200,44,2016-05-01-03
300,43,2016-05-01-03
400,35,2016-05-01-03
500,24,2016-05-01-03
600,11,2016-05-01-03
700,5,2016-05-01-03
800,1,2016-05-01-03
900,0,2016-05-01-03
1000,44,2016-05-01-03
2000,76,2016-05-01-03
3000,27,2016-05-01-03
4000,26,2016-05-01-03
5000,18,2016-05-01-03
6000,15,2016-05-01-03
7000,14,2016-05-01-03
8000,12,2016-05-01-03
9000,11,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,0,2016-05-01-05
30,0,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,0,2016-05-01-05
70,0,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,0,2016-05-01-05
200,39,2016-05-01-05
300,37,2016-05-01-05
400,34,2016-05-01-05
500,36,2016-05-01-05
600,10,2016-05-01-05
700,4,2016-05-01-05
800,1,2016-05-01-05
900,0,2016-05-01-05
1000,71,2016-05-01-05
2000,54,2016-05-01-05
3000,31,2016-05-01-05
4000,29,2016-05-01-05
5000,14,2016-05-01-05
6000,9,2016-05-01-05
7000,11,2016-05-01-05
8000,13,2016-05-01-05
9000,6,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,0,2016-05-01-07
30,0,2016-05-01-07
40,0,2016-05-01-07
50,0,2016-05-01-07
60,0,2016-05-01-07
70,0,2016-05-01-07
80,0,2016-05-01-07
90,0,2016-05-01-07
100,0,2016-05-01-07
200,32,2016-05-01-07
300,41,2016-05-01-07
400,35,2016-05-01-07
500,18,2016-05-01-07
600,10,2016-05-01-07
700,1,2016-05-01-07
800,0,2016-05-01-07
900,0,2016-05-01-07
1000,49,2016-05-01-07
2000,40,2016-05-01-07
3000,28,2016-05-01-07
4000,22,2016-05-01-07
5000,17,2016-05-01-07
6000,11,2016-05-01-07
7000,13,2016-05-01-07
8000,7,2016-05-01-07
9000,9,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,0,2016-05-01-11
30,0,2016-05-01-11
40,0,2016-05-01-11
50,0,2016-05-01-11
60,0,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,0,2016-05-01-11
100,0,2016-05-01-11
200,49,2016-05-01-11
300,49,2016-05-01-11
400,35,2016-05-01-11
500,28,2016-05-01-11
600,13,2016-05-01-11
700,2,2016-05-01-11
800,0,2016-05-01-11
900,0,2016-05-01-11
1000,46,2016-05-01-11
2000,39,2016-05-01-11
3000,26,2016-05-01-11
4000,18,2016-05-01-11
5000,16,2016-05-01-11
6000,15,2016-05-01-11
7000,5,2016-05-01-11
8000,7,2016-05-01-11
9000,6,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,0,2016-05-01-09
30,0,2016-05-01-09
40,0,2016-05-01-09
50,0,2016-05-01-09
60,0,2016-05-01-09
70,0,2016-05-01-09
80,0,2016-05-01-09
90,0,2016-05-01-09
100,0,2016-05-01-09
200,33,2016-05-01-09
300,35,2016-05-01-09
400,30,2016-05-01-09
500,28,2016-05-01-09
600,6,2016-05-01-09
700,2,2016-05-01-09
800,0,2016-05-01-09
900,0,2016-05-01-09
1000,48,2016-05-01-09
2000,54,2016-05-01-09
3000,32,2016-05-01-09
4000,24,2016-05-01-09
5000,11,2016-05-01-09
6000,13,2016-05-01-09
7000,8,2016-05-01-09
8000,3,2016-05-01-09
9000,13,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,0,2016-05-01-08
30,0,2016-05-01-08
40,0,2016-05-01-08
50,0,2016-05-01-08
60,0,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,0,2016-05-01-08
200,34,2016-05-01-08
300,45,2016-05-01-08
400,43,2016-05-01-08
500,30,2016-05-01-08
600,8,2016-05-01-08
700,7,2016-05-01-08
800,0,2016-05-01-08
900,0,2016-05-01-08
1000,44,2016-05-01-08
2000,55,2016-05-01-08
3000,32,2016-05-01-08
4000,19,2016-05-01-08
5000,17,2016-05-01-08
6000,11,2016-05-01-08
7000,10,2016-05-01-08
8000,8,2016-05-01-08
9000,7,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,0,2016-05-01-18
30,0,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,0,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,0,2016-05-01-18
100,0,2016-05-01-18
200,35,2016-05-01-18
300,47,2016-05-01-18
400,28,2016-05-01-18
500,20,2016-05-01-18
600,12,2016-05-01-18
700,4,2016-05-01-18
800,0,2016-05-01-18
900,0,2016-05-01-18
1000,40,2016-05-01-18
2000,51,2016-05-01-18
3000,38,2016-05-01-18
4000,24,2016-05-01-18
5000,21,2016-05-01-18
6000,13,2016-05-01-18
7000,12,2016-05-01-18
8000,11,2016-05-01-18
9000,10,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,0,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,0,2016-05-01-15
60,0,2016-05-01-15
70,0,2016-05-01-15
80,0,2016-05-01-15
90,0,2016-05-01-15
100,0,2016-05-01-15
200,39,2016-05-01-15
300,36,2016-05-01-15
400,34,2016-05-01-15
500,32,2016-05-01-15
600,3,2016-05-01-15
700,6,2016-05-01-15
800,0,2016-05-01-15
900,0,2016-05-01-15
1000,44,2016-05-01-15
2000,50,2016-05-01-15
3000,30,2016-05-01-15
4000,27,2016-05-01-15
5000,20,2016-05-01-15
6000,14,2016-05-01-15
7000,17,2016-05-01-15
8000,9,2016-05-01-15
9000,14,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,0,2016-05-01-16
30,0,2016-05-01-16
40,0,2016-05-01-16
50,0,2016-05-01-16
60,0,2016-05-01-16
70,0,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,0,2016-05-01-16
200,25,2016-05-01-16
300,49,2016-05-01-16
400,40,2016-05-01-16
500,20,2016-05-01-16
600,8,2016-05-01-16
700,3,2016-05-01-16
800,0,2016-05-01-16
900,0,2016-05-01-16
1000,36,2016-05-01-16
2000,61,2016-05-01-16
3000,38,2016-05-01-16
4000,32,2016-05-01-16
5000,20,2016-05-01-16
6000,12,2016-05-01-16
7000,11,2016-05-01-16
8000,11,2016-05-01-16
9000,5,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,0,2016-05-01-13
30,0,2016-05-01-13
40,0,2016-05-01-13
50,0,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,0,2016-05-01-13
200,36,2016-05-01-13
300,37,2016-05-01-13
400,38,2016-05-01-13
500,28,2016-05-01-13
600,6,2016-05-01-13
700,2,2016-05-01-13
800,0,2016-05-01-13
900,0,2016-05-01-13
1000,61,2016-05-01-13
2000,66,2016-05-01-13
3000,31,2016-05-01-13
4000,35,2016-05-01-13
5000,17,2016-05-01-13
6000,24,2016-05-01-13
7000,11,2016-05-01-13
8000,9,2016-05-01-13
9000,10,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,0,2016-05-01-12
30,0,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,0,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,0,2016-05-01-12
100,0,2016-05-01-12
200,45,2016-05-01-12
300,45,2016-05-01-12
400,36,2016-05-01-12
500,19,2016-05-01-12
600,6,2016-05-01-12
700,3,2016-05-01-12
800,0,2016-05-01-12
900,0,2016-05-01-12
1000,56,2016-05-01-12
2000,54,2016-05-01-12
3000,40,2016-05-01-12
4000,29,2016-05-01-12
5000,28,2016-05-01-12
6000,18,2016-05-01-12
7000,7,2016-05-01-12
8000,7,2016-05-01-12
9000,8,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,0,2016-05-01-23
70,0,2016-05-01-23
80,0,2016-05-01-23
90,0,2016-05-01-23
100,0,2016-05-01-23
200,31,2016-05-01-23
300,38,2016-05-01-23
400,49,2016-05-01-23
500,30,2016-05-01-23
600,7,2016-05-01-23
700,2,2016-05-01-23
800,1,2016-05-01-23
900,0,2016-05-01-23
1000,45,2016-05-01-23
2000,65,2016-05-01-23
3000,34,2016-05-01-23
4000,14,2016-05-01-23
5000,26,2016-05-01-23
6000,18,2016-05-01-23
7000,19,2016-05-01-23
8000,10,2016-05-01-23
9000,9,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,0,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,0,2016-05-01-14
90,0,2016-05-01-14
100,0,2016-05-01-14
200,35,2016-05-01-14
300,41,2016-05-01-14
400,34,2016-05-01-14
500,30,2016-05-01-14
600,11,2016-05-01-14
700,2,2016-05-01-14
800,3,2016-05-01-14
900,0,2016-05-01-14
1000,50,2016-05-01-14
2000,59,2016-05-01-14
3000,30,2016-05-01-14
4000,38,2016-05-01-14
5000,17,2016-05-01-14
6000,17,2016-05-01-14
7000,5,2016-05-01-14
8000,8,2016-05-01-14
9000,8,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,0,2016-05-01-17
30,0,2016-05-01-17
40,0,2016-05-01-17
50,0,2016-05-01-17
60,0,2016-05-01-17
70,0,2016-05-01-17
80,0,2016-05-01-17
90,0,2016-05-01-17
100,0,2016-05-01-17
200,45,2016-05-01-17
300,36,2016-05-01-17
400,29,2016-05-01-17
500,27,2016-05-01-17
600,8,2016-05-01-17
700,3,2016-05-01-17
800,0,2016-05-01-17
900,0,2016-05-01-17
1000,47,2016-05-01-17
2000,52,2016-05-01-17
3000,33,2016-05-01-17
4000,24,2016-05-01-17
5000,18,2016-05-01-17
6000,14,2016-05-01-17
7000,7,2016-05-01-17
8000,6,2016-05-01-17
9000,11,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,0,2016-05-01-19
30,0,2016-05-01-19
40,0,2016-05-01-19
50,0,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,0,2016-05-01-19
100,0,2016-05-01-19
200,41,2016-05-01-19
300,44,2016-05-01-19
400,40,2016-05-01-19
500,19,2016-05-01-19
600,4,2016-05-01-19
700,2,2016-05-01-19
800,0,2016-05-01-19
900,0,2016-05-01-19
1000,56,2016-05-01-19
2000,63,2016-05-01-19
3000,40,2016-05-01-19
4000,24,2016-05-01-19
5000,22,2016-05-01-19
6000,15,2016-05-01-19
7000,14,2016-05-01-19
8000,5,2016-05-01-19
9000,12,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,0,2016-05-01-20
30,0,2016-05-01-20
40,0,2016-05-01-20
50,0,2016-05-01-20
60,0,2016-05-01-20
70,0,2016-05-01-20
80,0,2016-05-01-20
90,0,2016-05-01-20
100,0,2016-05-01-20
200,29,2016-05-01-20
300,56,2016-05-01-20
400,32,2016-05-01-20
500,27,2016-05-01-20
600,3,2016-05-01-20
700,3,2016-05-01-20
800,1,2016-05-01-20
900,0,2016-05-01-20
1000,53,2016-05-01-20
2000,59,2016-05-01-20
3000,45,2016-05-01-20
4000,32,2016-05-01-20
5000,19,2016-05-01-20
6000,15,2016-05-01-20
7000,16,2016-05-01-20
8000,16,2016-05-01-20
9000,11,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,0,2016-05-01-21
30,0,2016-05-01-21
40,0,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,0,2016-05-01-21
90,0,2016-05-01-21
100,0,2016-05-01-21
200,29,2016-05-01-21
300,45,2016-05-01-21
400,35,2016-05-01-21
500,23,2016-05-01-21
600,3,2016-05-01-21
700,1,2016-05-01-21
800,0,2016-05-01-21
900,0,2016-05-01-21
1000,46,2016-05-01-21
2000,56,2016-05-01-21
3000,39,2016-05-01-21
4000,29,2016-05-01-21
5000,22,2016-05-01-21
6000,19,2016-05-01-21
7000,16,2016-05-01-21
8000,14,2016-05-01-21
9000,12,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,0,2016-05-01-22
30,0,2016-05-01-22
40,0,2016-05-01-22
50,0,2016-05-01-22
60,0,2016-05-01-22
70,0,2016-05-01-22
80,0,2016-05-01-22
90,0,2016-05-01-22
100,0,2016-05-01-22
200,35,2016-05-01-22
300,43,2016-05-01-22
400,44,2016-05-01-22
500,22,2016-05-01-22
600,6,2016-05-01-22
700,2,2016-05-01-22
800,0,2016-05-01-22
900,0,2016-05-01-22
1000,51,2016-05-01-22
2000,50,2016-05-01-22
3000,31,2016-05-01-22
4000,30,2016-05-01-22
5000,17,2016-05-01-22
6000,9,2016-05-01-22
7000,16,2016-05-01-22
8000,11,2016-05-01-22
9000,12,2016-05-01-22
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,13,2016-05-01-00
30,46,2016-05-01-00
40,11,2016-05-01-00
50,21,2016-05-01-00
60,20,2016-05-01-00
70,14,2016-05-01-00
80,17,2016-05-01-00
90,12,2016-05-01-00
100,138,2016-05-01-00
200,51,2016-05-01-00
300,29,2016-05-01-00
400,60,2016-05-01-00
500,89,2016-05-01-00
600,57,2016-05-01-00
700,43,2016-05-01-00
800,16,2016-05-01-00
900,8,2016-05-01-00
1000,6,2016-05-01-00
2000,0,2016-05-01-00
3000,1,2016-05-01-00
4000,0,2016-05-01-00
5000,0,2016-05-01-00
6000,0,2016-05-01-00
7000,0,2016-05-01-00
8000,0,2016-05-01-00
9000,0,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,19,2016-05-01-01
30,44,2016-05-01-01
40,27,2016-05-01-01
50,25,2016-05-01-01
60,31,2016-05-01-01
70,18,2016-05-01-01
80,17,2016-05-01-01
90,12,2016-05-01-01
100,97,2016-05-01-01
200,41,2016-05-01-01
300,28,2016-05-01-01
400,48,2016-05-01-01
500,73,2016-05-01-01
600,75,2016-05-01-01
700,36,2016-05-01-01
800,22,2016-05-01-01
900,8,2016-05-01-01
1000,3,2016-05-01-01
2000,0,2016-05-01-01
3000,0,2016-05-01-01
4000,0,2016-05-01-01
5000,0,2016-05-01-01
6000,0,2016-05-01-01
7000,0,2016-05-01-01
8000,0,2016-05-01-01
9000,0,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,30,2016-05-01-06
30,31,2016-05-01-06
40,18,2016-05-01-06
50,20,2016-05-01-06
60,15,2016-05-01-06
70,13,2016-05-01-06
80,6,2016-05-01-06
90,4,2016-05-01-06
100,100,2016-05-01-06
200,56,2016-05-01-06
300,39,2016-05-01-06
400,42,2016-05-01-06
500,68,2016-05-01-06
600,42,2016-05-01-06
700,20,2016-05-01-06
800,8,2016-05-01-06
900,3,2016-05-01-06
1000,4,2016-05-01-06
2000,0,2016-05-01-06
3000,0,2016-05-01-06
4000,0,2016-05-01-06
5000,0,2016-05-01-06
6000,0,2016-05-01-06
7000,0,2016-05-01-06
8000,0,2016-05-01-06
9000,0,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,9,2016-05-01-10
30,15,2016-05-01-10
40,2,2016-05-01-10
50,10,2016-05-01-10
60,1,2016-05-01-10
70,4,2016-05-01-10
80,4,2016-05-01-10
90,2,2016-05-01-10
100,119,2016-05-01-10
200,92,2016-05-01-10
300,38,2016-05-01-10
400,69,2016-05-01-10
500,54,2016-05-01-10
600,50,2016-05-01-10
700,25,2016-05-01-10
800,17,2016-05-01-10
900,2,2016-05-01-10
1000,4,2016-05-01-10
2000,0,2016-05-01-10
3000,0,2016-05-01-10
4000,0,2016-05-01-10
5000,0,2016-05-01-10
6000,0,2016-05-01-10
7000,0,2016-05-01-10
8000,0,2016-05-01-10
9000,0,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,31,2016-05-01-02
30,44,2016-05-01-02
40,21,2016-05-01-02
50,25,2016-05-01-02
60,23,2016-05-01-02
70,20,2016-05-01-02
80,18,2016-05-01-02
90,10,2016-05-01-02
100,92,2016-05-01-02
200,52,2016-05-01-02
300,32,2016-05-01-02
400,57,2016-05-01-02
500,75,2016-05-01-02
600,46,2016-05-01-02
700,36,2016-05-01-02
800,18,2016-05-01-02
900,6,2016-05-01-02
1000,2,2016-05-01-02
2000,0,2016-05-01-02
3000,0,2016-05-01-02
4000,0,2016-05-01-02
5000,0,2016-05-01-02
6000,0,2016-05-01-02
7000,0,2016-05-01-02
8000,0,2016-05-01-02
9000,0,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,32,2016-05-01-04
30,55,2016-05-01-04
40,22,2016-05-01-04
50,25,2016-05-01-04
60,34,2016-05-01-04
70,20,2016-05-01-04
80,15,2016-05-01-04
90,15,2016-05-01-04
100,82,2016-05-01-04
200,37,2016-05-01-04
300,30,2016-05-01-04
400,61,2016-05-01-04
500,72,2016-05-01-04
600,55,2016-05-01-04
700,21,2016-05-01-04
800,6,2016-05-01-04
900,2,2016-05-01-04
1000,3,2016-05-01-04
2000,0,2016-05-01-04
3000,0,2016-05-01-04
4000,0,2016-05-01-04
5000,0,2016-05-01-04
6000,0,2016-05-01-04
7000,0,2016-05-01-04
8000,0,2016-05-01-04
9000,0,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,22,2016-05-01-03
30,50,2016-05-01-03
40,19,2016-05-01-03
50,24,2016-05-01-03
60,19,2016-05-01-03
70,13,2016-05-01-03
80,18,2016-05-01-03
90,9,2016-05-01-03
100,90,2016-05-01-03
200,39,2016-05-01-03
300,41,2016-05-01-03
400,62,2016-05-01-03
500,83,2016-05-01-03
600,54,2016-05-01-03
700,31,2016-05-01-03
800,16,2016-05-01-03
900,5,2016-05-01-03
1000,4,2016-05-01-03
2000,0,2016-05-01-03
3000,0,2016-05-01-03
4000,0,2016-05-01-03
5000,0,2016-05-01-03
6000,0,2016-05-01-03
7000,0,2016-05-01-03
8000,0,2016-05-01-03
9000,0,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,30,2016-05-01-05
30,41,2016-05-01-05
40,18,2016-05-01-05
50,23,2016-05-01-05
60,17,2016-05-01-05
70,9,2016-05-01-05
80,6,2016-05-01-05
90,14,2016-05-01-05
100,79,2016-05-01-05
200,62,2016-05-01-05
300,42,2016-05-01-05
400,65,2016-05-01-05
500,55,2016-05-01-05
600,35,2016-05-01-05
700,33,2016-05-01-05
800,6,2016-05-01-05
900,4,2016-05-01-05
1000,2,2016-05-01-05
2000,0,2016-05-01-05
3000,0,2016-05-01-05
4000,0,2016-05-01-05
5000,0,2016-05-01-05
6000,0,2016-05-01-05
7000,0,2016-05-01-05
8000,0,2016-05-01-05
9000,0,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,21,2016-05-01-07
30,19,2016-05-01-07
40,14,2016-05-01-07
50,13,2016-05-01-07
60,4,2016-05-01-07
70,3,2016-05-01-07
80,3,2016-05-01-07
90,5,2016-05-01-07
100,114,2016-05-01-07
200,63,2016-05-01-07
300,40,2016-05-01-07
400,64,2016-05-01-07
500,58,2016-05-01-07
600,49,2016-05-01-07
700,16,2016-05-01-07
800,10,2016-05-01-07
900,4,2016-05-01-07
1000,4,2016-05-01-07
2000,0,2016-05-01-07
3000,0,2016-05-01-07
4000,0,2016-05-01-07
5000,0,2016-05-01-07
6000,0,2016-05-01-07
7000,0,2016-05-01-07
8000,0,2016-05-01-07
9000,0,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,13,2016-05-01-11
30,18,2016-05-01-11
40,8,2016-05-01-11
50,15,2016-05-01-11
60,9,2016-05-01-11
70,8,2016-05-01-11
80,3,2016-05-01-11
90,9,2016-05-01-11
100,129,2016-05-01-11
200,63,2016-05-01-11
300,42,2016-05-01-11
400,56,2016-05-01-11
500,54,2016-05-01-11
600,54,2016-05-01-11
700,32,2016-05-01-11
800,19,2016-05-01-11
900,3,2016-05-01-11
1000,6,2016-05-01-11
2000,0,2016-05-01-11
3000,0,2016-05-01-11
4000,0,2016-05-01-11
5000,0,2016-05-01-11
6000,0,2016-05-01-11
7000,0,2016-05-01-11
8000,0,2016-05-01-11
9000,0,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,16,2016-05-01-09
30,13,2016-05-01-09
40,5,2016-05-01-09
50,11,2016-05-01-09
60,2,2016-05-01-09
70,6,2016-05-01-09
80,6,2016-05-01-09
90,5,2016-05-01-09
100,117,2016-05-01-09
200,75,2016-05-01-09
300,38,2016-05-01-09
400,69,2016-05-01-09
500,58,2016-05-01-09
600,51,2016-05-01-09
700,37,2016-05-01-09
800,9,2016-05-01-09
900,2,2016-05-01-09
1000,2,2016-05-01-09
2000,0,2016-05-01-09
3000,0,2016-05-01-09
4000,0,2016-05-01-09
5000,0,2016-05-01-09
6000,0,2016-05-01-09
7000,0,2016-05-01-09
8000,0,2016-05-01-09
9000,0,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,17,2016-05-01-08
30,16,2016-05-01-08
40,15,2016-05-01-08
50,8,2016-05-01-08
60,12,2016-05-01-08
70,7,2016-05-01-08
80,2,2016-05-01-08
90,1,2016-05-01-08
100,135,2016-05-01-08
200,79,2016-05-01-08
300,48,2016-05-01-08
400,49,2016-05-01-08
500,43,2016-05-01-08
600,48,2016-05-01-08
700,27,2016-05-01-08
800,11,2016-05-01-08
900,3,2016-05-01-08
1000,0,2016-05-01-08
2000,0,2016-05-01-08
3000,0,2016-05-01-08
4000,0,2016-05-01-08
5000,0,2016-05-01-08
6000,0,2016-05-01-08
7000,0,2016-05-01-08
8000,0,2016-05-01-08
9000,0,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,6,2016-05-01-18
30,17,2016-05-01-18
40,11,2016-05-01-18
50,10,2016-05-01-18
60,13,2016-05-01-18
70,5,2016-05-01-18
80,13,2016-05-01-18
90,7,2016-05-01-18
100,119,2016-05-01-18
200,60,2016-05-01-18
300,26,2016-05-01-18
400,54,2016-05-01-18
500,60,2016-05-01-18
600,76,2016-05-01-18
700,53,2016-05-01-18
800,32,2016-05-01-18
900,24,2016-05-01-18
1000,18,2016-05-01-18
2000,0,2016-05-01-18
3000,0,2016-05-01-18
4000,0,2016-05-01-18
5000,0,2016-05-01-18
6000,0,2016-05-01-18
7000,0,2016-05-01-18
8000,0,2016-05-01-18
9000,0,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,9,2016-05-01-15
30,34,2016-05-01-15
40,9,2016-05-01-15
50,9,2016-05-01-15
60,6,2016-05-01-15
70,12,2016-05-01-15
80,4,2016-05-01-15
90,9,2016-05-01-15
100,97,2016-05-01-15
200,70,2016-05-01-15
300,33,2016-05-01-15
400,39,2016-05-01-15
500,79,2016-05-01-15
600,90,2016-05-01-15
700,51,2016-05-01-15
800,35,2016-05-01-15
900,20,2016-05-01-15
1000,12,2016-05-01-15
2000,0,2016-05-01-15
3000,0,2016-05-01-15
4000,0,2016-05-01-15
5000,0,2016-05-01-15
6000,0,2016-05-01-15
7000,0,2016-05-01-15
8000,0,2016-05-01-15
9000,0,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,9,2016-05-01-16
30,28,2016-05-01-16
40,7,2016-05-01-16
50,15,2016-05-01-16
60,11,2016-05-01-16
70,7,2016-05-01-16
80,11,2016-05-01-16
90,11,2016-05-01-16
100,104,2016-05-01-16
200,70,2016-05-01-16
300,30,2016-05-01-16
400,48,2016-05-01-16
500,66,2016-05-01-16
600,54,2016-05-01-16
700,56,2016-05-01-16
800,35,2016-05-01-16
900,20,2016-05-01-16
1000,12,2016-05-01-16
2000,0,2016-05-01-16
3000,0,2016-05-01-16
4000,0,2016-05-01-16
5000,0,2016-05-01-16
6000,0,2016-05-01-16
7000,0,2016-05-01-16
8000,0,2016-05-01-16
9000,0,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,10,2016-05-01-13
30,21,2016-05-01-13
40,11,2016-05-01-13
50,11,2016-05-01-13
60,12,2016-05-01-13
70,6,2016-05-01-13
80,5,2016-05-01-13
90,5,2016-05-01-13
100,127,2016-05-01-13
200,81,2016-05-01-13
300,34,2016-05-01-13
400,49,2016-05-01-13
500,62,2016-05-01-13
600,54,2016-05-01-13
700,42,2016-05-01-13
800,28,2016-05-01-13
900,12,2016-05-01-13
1000,12,2016-05-01-13
2000,0,2016-05-01-13
3000,0,2016-05-01-13
4000,0,2016-05-01-13
5000,0,2016-05-01-13
6000,0,2016-05-01-13
7000,0,2016-05-01-13
8000,0,2016-05-01-13
9000,0,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,10,2016-05-01-12
30,22,2016-05-01-12
40,11,2016-05-01-12
50,17,2016-05-01-12
60,12,2016-05-01-12
70,4,2016-05-01-12
80,3,2016-05-01-12
90,8,2016-05-01-12
100,126,2016-05-01-12
200,72,2016-05-01-12
300,49,2016-05-01-12
400,64,2016-05-01-12
500,64,2016-05-01-12
600,56,2016-05-01-12
700,36,2016-05-01-12
800,14,2016-05-01-12
900,8,2016-05-01-12
1000,6,2016-05-01-12
2000,0,2016-05-01-12
3000,0,2016-05-01-12
4000,0,2016-05-01-12
5000,0,2016-05-01-12
6000,0,2016-05-01-12
7000,0,2016-05-01-12
8000,0,2016-05-01-12
9000,0,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,9,2016-05-01-23
30,24,2016-05-01-23
40,11,2016-05-01-23
50,18,2016-05-01-23
60,19,2016-05-01-23
70,14,2016-05-01-23
80,15,2016-05-01-23
90,11,2016-05-01-23
100,114,2016-05-01-23
200,54,2016-05-01-23
300,32,2016-05-01-23
400,62,2016-05-01-23
500,66,2016-05-01-23
600,61,2016-05-01-23
700,41,2016-05-01-23
800,27,2016-05-01-23
900,11,2016-05-01-23
1000,4,2016-05-01-23
2000,0,2016-05-01-23
3000,0,2016-05-01-23
4000,0,2016-05-01-23
5000,0,2016-05-01-23
6000,0,2016-05-01-23
7000,0,2016-05-01-23
8000,0,2016-05-01-23
9000,0,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,7,2016-05-01-14
30,34,2016-05-01-14
40,13,2016-05-01-14
50,11,2016-05-01-14
60,12,2016-05-01-14
70,12,2016-05-01-14
80,5,2016-05-01-14
90,9,2016-05-01-14
100,104,2016-05-01-14
200,57,2016-05-01-14
300,40,2016-05-01-14
400,41,2016-05-01-14
500,80,2016-05-01-14
600,55,2016-05-01-14
700,41,2016-05-01-14
800,33,2016-05-01-14
900,16,2016-05-01-14
1000,9,2016-05-01-14
2000,0,2016-05-01-14
3000,0,2016-05-01-14
4000,0,2016-05-01-14
5000,0,2016-05-01-14
6000,0,2016-05-01-14
7000,0,2016-05-01-14
8000,0,2016-05-01-14
9000,0,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,6,2016-05-01-17
30,26,2016-05-01-17
40,6,2016-05-01-17
50,11,2016-05-01-17
60,15,2016-05-01-17
70,9,2016-05-01-17
80,7,2016-05-01-17
90,7,2016-05-01-17
100,108,2016-05-01-17
200,51,2016-05-01-17
300,36,2016-05-01-17
400,56,2016-05-01-17
500,56,2016-05-01-17
600,58,2016-05-01-17
700,43,2016-05-01-17
800,39,2016-05-01-17
900,13,2016-05-01-17
1000,12,2016-05-01-17
2000,0,2016-05-01-17
3000,0,2016-05-01-17
4000,0,2016-05-01-17
5000,0,2016-05-01-17
6000,0,2016-05-01-17
7000,0,2016-05-01-17
8000,0,2016-05-01-17
9000,0,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,6,2016-05-01-19
30,28,2016-05-01-19
40,6,2016-05-01-19
50,7,2016-05-01-19
60,13,2016-05-01-19
70,12,2016-05-01-19
80,5,2016-05-01-19
90,4,2016-05-01-19
100,112,2016-05-01-19
200,72,2016-05-01-19
300,38,2016-05-01-19
400,64,2016-05-01-19
500,70,2016-05-01-19
600,52,2016-05-01-19
700,46,2016-05-01-19
800,36,2016-05-01-19
900,18,2016-05-01-19
1000,8,2016-05-01-19
2000,0,2016-05-01-19
3000,0,2016-05-01-19
4000,0,2016-05-01-19
5000,0,2016-05-01-19
6000,0,2016-05-01-19
7000,0,2016-05-01-19
8000,0,2016-05-01-19
9000,0,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,7,2016-05-01-20
30,35,2016-05-01-20
40,9,2016-05-01-20
50,16,2016-05-01-20
60,15,2016-05-01-20
70,8,2016-05-01-20
80,8,2016-05-01-20
90,5,2016-05-01-20
100,116,2016-05-01-20
200,67,2016-05-01-20
300,41,2016-05-01-20
400,53,2016-05-01-20
500,81,2016-05-01-20
600,72,2016-05-01-20
700,49,2016-05-01-20
800,28,2016-05-01-20
900,21,2016-05-01-20
1000,12,2016-05-01-20
2000,0,2016-05-01-20
3000,0,2016-05-01-20
4000,0,2016-05-01-20
5000,0,2016-05-01-20
6000,0,2016-05-01-20
7000,0,2016-05-01-20
8000,0,2016-05-01-20
9000,0,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,4,2016-05-01-21
30,16,2016-05-01-21
40,7,2016-05-01-21
50,11,2016-05-01-21
60,13,2016-05-01-21
70,7,2016-05-01-21
80,8,2016-05-01-21
90,13,2016-05-01-21
100,103,2016-05-01-21
200,66,2016-05-01-21
300,39,2016-05-01-21
400,64,2016-05-01-21
500,70,2016-05-01-21
600,74,2016-05-01-21
700,36,2016-05-01-21
800,39,2016-05-01-21
900,13,2016-05-01-21
1000,9,2016-05-01-21
2000,0,2016-05-01-21
3000,0,2016-05-01-21
4000,0,2016-05-01-21
5000,0,2016-05-01-21
6000,0,2016-05-01-21
7000,0,2016-05-01-21
8000,0,2016-05-01-21
9000,0,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,13,2016-05-01-22
30,30,2016-05-01-22
40,5,2016-05-01-22
50,8,2016-05-01-22
60,12,2016-05-01-22
70,13,2016-05-01-22
80,9,2016-05-01-22
90,11,2016-05-01-22
100,110,2016-05-01-22
200,64,2016-05-01-22
300,26,2016-05-01-22
400,55,2016-05-01-22
500,66,2016-05-01-22
600,62,2016-05-01-22
700,51,2016-05-01-22
800,25,2016-05-01-22
900,17,2016-05-01-22
1000,10,2016-05-01-22
2000,0,2016-05-01-22
3000,0,2016-05-01-22
4000,0,2016-05-01-22
5000,0,2016-05-01-22
6000,0,2016-05-01-22
7000,0,2016-05-01-22
8000,0,2016-05-01-22
9000,0,2016-05-01-22
body {
font: 10px sans-serif;
}
.heatmap-container, .histogram-container {
height: 50vh;
width: 100vw;
border: 1px dashed black;
}
.label {
font-weight: bold;
}
.tile {
shape-rendering: crispEdges;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
bucket,count,date
1,0,2016-05-01-00
2,0,2016-05-01-00
3,0,2016-05-01-00
4,0,2016-05-01-00
5,0,2016-05-01-00
6,0,2016-05-01-00
7,0,2016-05-01-00
8,0,2016-05-01-00
9,0,2016-05-01-00
10,0,2016-05-01-00
20,0,2016-05-01-00
30,0,2016-05-01-00
40,0,2016-05-01-00
50,0,2016-05-01-00
60,0,2016-05-01-00
70,0,2016-05-01-00
80,0,2016-05-01-00
90,0,2016-05-01-00
100,0,2016-05-01-00
200,0,2016-05-01-00
300,0,2016-05-01-00
400,0,2016-05-01-00
500,0,2016-05-01-00
600,0,2016-05-01-00
700,0,2016-05-01-00
800,0,2016-05-01-00
900,0,2016-05-01-00
1000,656,2016-05-01-00
2000,0,2016-05-01-00
3000,0,2016-05-01-00
4000,0,2016-05-01-00
5000,0,2016-05-01-00
6000,0,2016-05-01-00
7000,0,2016-05-01-00
8000,0,2016-05-01-00
9000,0,2016-05-01-00
1,0,2016-05-01-01
2,0,2016-05-01-01
3,0,2016-05-01-01
4,0,2016-05-01-01
5,0,2016-05-01-01
6,0,2016-05-01-01
7,0,2016-05-01-01
8,0,2016-05-01-01
9,0,2016-05-01-01
10,0,2016-05-01-01
20,0,2016-05-01-01
30,0,2016-05-01-01
40,0,2016-05-01-01
50,0,2016-05-01-01
60,0,2016-05-01-01
70,0,2016-05-01-01
80,0,2016-05-01-01
90,0,2016-05-01-01
100,0,2016-05-01-01
200,0,2016-05-01-01
300,0,2016-05-01-01
400,0,2016-05-01-01
500,0,2016-05-01-01
600,0,2016-05-01-01
700,0,2016-05-01-01
800,0,2016-05-01-01
900,0,2016-05-01-01
1000,630,2016-05-01-01
2000,0,2016-05-01-01
3000,0,2016-05-01-01
4000,0,2016-05-01-01
5000,0,2016-05-01-01
6000,0,2016-05-01-01
7000,0,2016-05-01-01
8000,0,2016-05-01-01
9000,0,2016-05-01-01
1,0,2016-05-01-06
2,0,2016-05-01-06
3,0,2016-05-01-06
4,0,2016-05-01-06
5,0,2016-05-01-06
6,0,2016-05-01-06
7,0,2016-05-01-06
8,0,2016-05-01-06
9,0,2016-05-01-06
10,0,2016-05-01-06
20,0,2016-05-01-06
30,0,2016-05-01-06
40,0,2016-05-01-06
50,0,2016-05-01-06
60,0,2016-05-01-06
70,0,2016-05-01-06
80,0,2016-05-01-06
90,0,2016-05-01-06
100,0,2016-05-01-06
200,0,2016-05-01-06
300,0,2016-05-01-06
400,0,2016-05-01-06
500,0,2016-05-01-06
600,0,2016-05-01-06
700,0,2016-05-01-06
800,0,2016-05-01-06
900,0,2016-05-01-06
1000,524,2016-05-01-06
2000,0,2016-05-01-06
3000,0,2016-05-01-06
4000,0,2016-05-01-06
5000,0,2016-05-01-06
6000,0,2016-05-01-06
7000,0,2016-05-01-06
8000,0,2016-05-01-06
9000,0,2016-05-01-06
1,0,2016-05-01-10
2,0,2016-05-01-10
3,0,2016-05-01-10
4,0,2016-05-01-10
5,0,2016-05-01-10
6,0,2016-05-01-10
7,0,2016-05-01-10
8,0,2016-05-01-10
9,0,2016-05-01-10
10,0,2016-05-01-10
20,0,2016-05-01-10
30,0,2016-05-01-10
40,0,2016-05-01-10
50,0,2016-05-01-10
60,0,2016-05-01-10
70,0,2016-05-01-10
80,0,2016-05-01-10
90,0,2016-05-01-10
100,0,2016-05-01-10
200,0,2016-05-01-10
300,0,2016-05-01-10
400,0,2016-05-01-10
500,0,2016-05-01-10
600,0,2016-05-01-10
700,0,2016-05-01-10
800,0,2016-05-01-10
900,0,2016-05-01-10
1000,523,2016-05-01-10
2000,0,2016-05-01-10
3000,0,2016-05-01-10
4000,0,2016-05-01-10
5000,0,2016-05-01-10
6000,0,2016-05-01-10
7000,0,2016-05-01-10
8000,0,2016-05-01-10
9000,0,2016-05-01-10
1,0,2016-05-01-02
2,0,2016-05-01-02
3,0,2016-05-01-02
4,0,2016-05-01-02
5,0,2016-05-01-02
6,0,2016-05-01-02
7,0,2016-05-01-02
8,0,2016-05-01-02
9,0,2016-05-01-02
10,0,2016-05-01-02
20,0,2016-05-01-02
30,0,2016-05-01-02
40,0,2016-05-01-02
50,0,2016-05-01-02
60,0,2016-05-01-02
70,0,2016-05-01-02
80,0,2016-05-01-02
90,0,2016-05-01-02
100,0,2016-05-01-02
200,0,2016-05-01-02
300,0,2016-05-01-02
400,0,2016-05-01-02
500,0,2016-05-01-02
600,0,2016-05-01-02
700,0,2016-05-01-02
800,0,2016-05-01-02
900,0,2016-05-01-02
1000,613,2016-05-01-02
2000,0,2016-05-01-02
3000,0,2016-05-01-02
4000,0,2016-05-01-02
5000,0,2016-05-01-02
6000,0,2016-05-01-02
7000,0,2016-05-01-02
8000,0,2016-05-01-02
9000,0,2016-05-01-02
1,0,2016-05-01-04
2,0,2016-05-01-04
3,0,2016-05-01-04
4,0,2016-05-01-04
5,0,2016-05-01-04
6,0,2016-05-01-04
7,0,2016-05-01-04
8,0,2016-05-01-04
9,0,2016-05-01-04
10,0,2016-05-01-04
20,0,2016-05-01-04
30,0,2016-05-01-04
40,0,2016-05-01-04
50,0,2016-05-01-04
60,0,2016-05-01-04
70,0,2016-05-01-04
80,0,2016-05-01-04
90,0,2016-05-01-04
100,0,2016-05-01-04
200,0,2016-05-01-04
300,0,2016-05-01-04
400,0,2016-05-01-04
500,0,2016-05-01-04
600,0,2016-05-01-04
700,0,2016-05-01-04
800,0,2016-05-01-04
900,0,2016-05-01-04
1000,588,2016-05-01-04
2000,0,2016-05-01-04
3000,0,2016-05-01-04
4000,0,2016-05-01-04
5000,0,2016-05-01-04
6000,0,2016-05-01-04
7000,0,2016-05-01-04
8000,0,2016-05-01-04
9000,0,2016-05-01-04
1,0,2016-05-01-03
2,0,2016-05-01-03
3,0,2016-05-01-03
4,0,2016-05-01-03
5,0,2016-05-01-03
6,0,2016-05-01-03
7,0,2016-05-01-03
8,0,2016-05-01-03
9,0,2016-05-01-03
10,0,2016-05-01-03
20,0,2016-05-01-03
30,0,2016-05-01-03
40,0,2016-05-01-03
50,0,2016-05-01-03
60,0,2016-05-01-03
70,0,2016-05-01-03
80,0,2016-05-01-03
90,0,2016-05-01-03
100,0,2016-05-01-03
200,0,2016-05-01-03
300,0,2016-05-01-03
400,0,2016-05-01-03
500,0,2016-05-01-03
600,0,2016-05-01-03
700,0,2016-05-01-03
800,0,2016-05-01-03
900,0,2016-05-01-03
1000,602,2016-05-01-03
2000,0,2016-05-01-03
3000,0,2016-05-01-03
4000,0,2016-05-01-03
5000,0,2016-05-01-03
6000,0,2016-05-01-03
7000,0,2016-05-01-03
8000,0,2016-05-01-03
9000,0,2016-05-01-03
1,0,2016-05-01-05
2,0,2016-05-01-05
3,0,2016-05-01-05
4,0,2016-05-01-05
5,0,2016-05-01-05
6,0,2016-05-01-05
7,0,2016-05-01-05
8,0,2016-05-01-05
9,0,2016-05-01-05
10,0,2016-05-01-05
20,0,2016-05-01-05
30,0,2016-05-01-05
40,0,2016-05-01-05
50,0,2016-05-01-05
60,0,2016-05-01-05
70,0,2016-05-01-05
80,0,2016-05-01-05
90,0,2016-05-01-05
100,0,2016-05-01-05
200,0,2016-05-01-05
300,0,2016-05-01-05
400,0,2016-05-01-05
500,0,2016-05-01-05
600,0,2016-05-01-05
700,0,2016-05-01-05
800,0,2016-05-01-05
900,0,2016-05-01-05
1000,546,2016-05-01-05
2000,0,2016-05-01-05
3000,0,2016-05-01-05
4000,0,2016-05-01-05
5000,0,2016-05-01-05
6000,0,2016-05-01-05
7000,0,2016-05-01-05
8000,0,2016-05-01-05
9000,0,2016-05-01-05
1,0,2016-05-01-07
2,0,2016-05-01-07
3,0,2016-05-01-07
4,0,2016-05-01-07
5,0,2016-05-01-07
6,0,2016-05-01-07
7,0,2016-05-01-07
8,0,2016-05-01-07
9,0,2016-05-01-07
10,0,2016-05-01-07
20,0,2016-05-01-07
30,0,2016-05-01-07
40,0,2016-05-01-07
50,0,2016-05-01-07
60,0,2016-05-01-07
70,0,2016-05-01-07
80,0,2016-05-01-07
90,0,2016-05-01-07
100,0,2016-05-01-07
200,0,2016-05-01-07
300,0,2016-05-01-07
400,0,2016-05-01-07
500,0,2016-05-01-07
600,0,2016-05-01-07
700,0,2016-05-01-07
800,0,2016-05-01-07
900,0,2016-05-01-07
1000,506,2016-05-01-07
2000,0,2016-05-01-07
3000,0,2016-05-01-07
4000,0,2016-05-01-07
5000,0,2016-05-01-07
6000,0,2016-05-01-07
7000,0,2016-05-01-07
8000,0,2016-05-01-07
9000,0,2016-05-01-07
1,0,2016-05-01-11
2,0,2016-05-01-11
3,0,2016-05-01-11
4,0,2016-05-01-11
5,0,2016-05-01-11
6,0,2016-05-01-11
7,0,2016-05-01-11
8,0,2016-05-01-11
9,0,2016-05-01-11
10,0,2016-05-01-11
20,0,2016-05-01-11
30,0,2016-05-01-11
40,0,2016-05-01-11
50,0,2016-05-01-11
60,0,2016-05-01-11
70,0,2016-05-01-11
80,0,2016-05-01-11
90,0,2016-05-01-11
100,0,2016-05-01-11
200,0,2016-05-01-11
300,0,2016-05-01-11
400,0,2016-05-01-11
500,0,2016-05-01-11
600,0,2016-05-01-11
700,0,2016-05-01-11
800,0,2016-05-01-11
900,0,2016-05-01-11
1000,545,2016-05-01-11
2000,0,2016-05-01-11
3000,0,2016-05-01-11
4000,0,2016-05-01-11
5000,0,2016-05-01-11
6000,0,2016-05-01-11
7000,0,2016-05-01-11
8000,0,2016-05-01-11
9000,0,2016-05-01-11
1,0,2016-05-01-09
2,0,2016-05-01-09
3,0,2016-05-01-09
4,0,2016-05-01-09
5,0,2016-05-01-09
6,0,2016-05-01-09
7,0,2016-05-01-09
8,0,2016-05-01-09
9,0,2016-05-01-09
10,0,2016-05-01-09
20,0,2016-05-01-09
30,0,2016-05-01-09
40,0,2016-05-01-09
50,0,2016-05-01-09
60,0,2016-05-01-09
70,0,2016-05-01-09
80,0,2016-05-01-09
90,0,2016-05-01-09
100,0,2016-05-01-09
200,0,2016-05-01-09
300,0,2016-05-01-09
400,0,2016-05-01-09
500,0,2016-05-01-09
600,0,2016-05-01-09
700,0,2016-05-01-09
800,0,2016-05-01-09
900,0,2016-05-01-09
1000,525,2016-05-01-09
2000,0,2016-05-01-09
3000,0,2016-05-01-09
4000,0,2016-05-01-09
5000,0,2016-05-01-09
6000,0,2016-05-01-09
7000,0,2016-05-01-09
8000,0,2016-05-01-09
9000,0,2016-05-01-09
1,0,2016-05-01-08
2,0,2016-05-01-08
3,0,2016-05-01-08
4,0,2016-05-01-08
5,0,2016-05-01-08
6,0,2016-05-01-08
7,0,2016-05-01-08
8,0,2016-05-01-08
9,0,2016-05-01-08
10,0,2016-05-01-08
20,0,2016-05-01-08
30,0,2016-05-01-08
40,0,2016-05-01-08
50,0,2016-05-01-08
60,0,2016-05-01-08
70,0,2016-05-01-08
80,0,2016-05-01-08
90,0,2016-05-01-08
100,0,2016-05-01-08
200,0,2016-05-01-08
300,0,2016-05-01-08
400,0,2016-05-01-08
500,0,2016-05-01-08
600,0,2016-05-01-08
700,0,2016-05-01-08
800,0,2016-05-01-08
900,0,2016-05-01-08
1000,529,2016-05-01-08
2000,0,2016-05-01-08
3000,0,2016-05-01-08
4000,0,2016-05-01-08
5000,0,2016-05-01-08
6000,0,2016-05-01-08
7000,0,2016-05-01-08
8000,0,2016-05-01-08
9000,0,2016-05-01-08
1,0,2016-05-01-18
2,0,2016-05-01-18
3,0,2016-05-01-18
4,0,2016-05-01-18
5,0,2016-05-01-18
6,0,2016-05-01-18
7,0,2016-05-01-18
8,0,2016-05-01-18
9,0,2016-05-01-18
10,0,2016-05-01-18
20,0,2016-05-01-18
30,0,2016-05-01-18
40,0,2016-05-01-18
50,0,2016-05-01-18
60,0,2016-05-01-18
70,0,2016-05-01-18
80,0,2016-05-01-18
90,0,2016-05-01-18
100,0,2016-05-01-18
200,0,2016-05-01-18
300,0,2016-05-01-18
400,0,2016-05-01-18
500,0,2016-05-01-18
600,0,2016-05-01-18
700,0,2016-05-01-18
800,0,2016-05-01-18
900,0,2016-05-01-18
1000,607,2016-05-01-18
2000,0,2016-05-01-18
3000,0,2016-05-01-18
4000,0,2016-05-01-18
5000,0,2016-05-01-18
6000,0,2016-05-01-18
7000,0,2016-05-01-18
8000,0,2016-05-01-18
9000,0,2016-05-01-18
1,0,2016-05-01-15
2,0,2016-05-01-15
3,0,2016-05-01-15
4,0,2016-05-01-15
5,0,2016-05-01-15
6,0,2016-05-01-15
7,0,2016-05-01-15
8,0,2016-05-01-15
9,0,2016-05-01-15
10,0,2016-05-01-15
20,0,2016-05-01-15
30,0,2016-05-01-15
40,0,2016-05-01-15
50,0,2016-05-01-15
60,0,2016-05-01-15
70,0,2016-05-01-15
80,0,2016-05-01-15
90,0,2016-05-01-15
100,0,2016-05-01-15
200,0,2016-05-01-15
300,0,2016-05-01-15
400,0,2016-05-01-15
500,0,2016-05-01-15
600,0,2016-05-01-15
700,0,2016-05-01-15
800,0,2016-05-01-15
900,0,2016-05-01-15
1000,622,2016-05-01-15
2000,0,2016-05-01-15
3000,0,2016-05-01-15
4000,0,2016-05-01-15
5000,0,2016-05-01-15
6000,0,2016-05-01-15
7000,0,2016-05-01-15
8000,0,2016-05-01-15
9000,0,2016-05-01-15
1,0,2016-05-01-16
2,0,2016-05-01-16
3,0,2016-05-01-16
4,0,2016-05-01-16
5,0,2016-05-01-16
6,0,2016-05-01-16
7,0,2016-05-01-16
8,0,2016-05-01-16
9,0,2016-05-01-16
10,0,2016-05-01-16
20,0,2016-05-01-16
30,0,2016-05-01-16
40,0,2016-05-01-16
50,0,2016-05-01-16
60,0,2016-05-01-16
70,0,2016-05-01-16
80,0,2016-05-01-16
90,0,2016-05-01-16
100,0,2016-05-01-16
200,0,2016-05-01-16
300,0,2016-05-01-16
400,0,2016-05-01-16
500,0,2016-05-01-16
600,0,2016-05-01-16
700,0,2016-05-01-16
800,0,2016-05-01-16
900,0,2016-05-01-16
1000,598,2016-05-01-16
2000,0,2016-05-01-16
3000,0,2016-05-01-16
4000,0,2016-05-01-16
5000,0,2016-05-01-16
6000,0,2016-05-01-16
7000,0,2016-05-01-16
8000,0,2016-05-01-16
9000,0,2016-05-01-16
1,0,2016-05-01-13
2,0,2016-05-01-13
3,0,2016-05-01-13
4,0,2016-05-01-13
5,0,2016-05-01-13
6,0,2016-05-01-13
7,0,2016-05-01-13
8,0,2016-05-01-13
9,0,2016-05-01-13
10,0,2016-05-01-13
20,0,2016-05-01-13
30,0,2016-05-01-13
40,0,2016-05-01-13
50,0,2016-05-01-13
60,0,2016-05-01-13
70,0,2016-05-01-13
80,0,2016-05-01-13
90,0,2016-05-01-13
100,0,2016-05-01-13
200,0,2016-05-01-13
300,0,2016-05-01-13
400,0,2016-05-01-13
500,0,2016-05-01-13
600,0,2016-05-01-13
700,0,2016-05-01-13
800,0,2016-05-01-13
900,0,2016-05-01-13
1000,588,2016-05-01-13
2000,0,2016-05-01-13
3000,0,2016-05-01-13
4000,0,2016-05-01-13
5000,0,2016-05-01-13
6000,0,2016-05-01-13
7000,0,2016-05-01-13
8000,0,2016-05-01-13
9000,0,2016-05-01-13
1,0,2016-05-01-12
2,0,2016-05-01-12
3,0,2016-05-01-12
4,0,2016-05-01-12
5,0,2016-05-01-12
6,0,2016-05-01-12
7,0,2016-05-01-12
8,0,2016-05-01-12
9,0,2016-05-01-12
10,0,2016-05-01-12
20,0,2016-05-01-12
30,0,2016-05-01-12
40,0,2016-05-01-12
50,0,2016-05-01-12
60,0,2016-05-01-12
70,0,2016-05-01-12
80,0,2016-05-01-12
90,0,2016-05-01-12
100,0,2016-05-01-12
200,0,2016-05-01-12
300,0,2016-05-01-12
400,0,2016-05-01-12
500,0,2016-05-01-12
600,0,2016-05-01-12
700,0,2016-05-01-12
800,0,2016-05-01-12
900,0,2016-05-01-12
1000,588,2016-05-01-12
2000,0,2016-05-01-12
3000,0,2016-05-01-12
4000,0,2016-05-01-12
5000,0,2016-05-01-12
6000,0,2016-05-01-12
7000,0,2016-05-01-12
8000,0,2016-05-01-12
9000,0,2016-05-01-12
1,0,2016-05-01-23
2,0,2016-05-01-23
3,0,2016-05-01-23
4,0,2016-05-01-23
5,0,2016-05-01-23
6,0,2016-05-01-23
7,0,2016-05-01-23
8,0,2016-05-01-23
9,0,2016-05-01-23
10,0,2016-05-01-23
20,0,2016-05-01-23
30,0,2016-05-01-23
40,0,2016-05-01-23
50,0,2016-05-01-23
60,0,2016-05-01-23
70,0,2016-05-01-23
80,0,2016-05-01-23
90,0,2016-05-01-23
100,0,2016-05-01-23
200,0,2016-05-01-23
300,0,2016-05-01-23
400,0,2016-05-01-23
500,0,2016-05-01-23
600,0,2016-05-01-23
700,0,2016-05-01-23
800,0,2016-05-01-23
900,0,2016-05-01-23
1000,594,2016-05-01-23
2000,0,2016-05-01-23
3000,0,2016-05-01-23
4000,0,2016-05-01-23
5000,0,2016-05-01-23
6000,0,2016-05-01-23
7000,0,2016-05-01-23
8000,0,2016-05-01-23
9000,0,2016-05-01-23
1,0,2016-05-01-14
2,0,2016-05-01-14
3,0,2016-05-01-14
4,0,2016-05-01-14
5,0,2016-05-01-14
6,0,2016-05-01-14
7,0,2016-05-01-14
8,0,2016-05-01-14
9,0,2016-05-01-14
10,0,2016-05-01-14
20,0,2016-05-01-14
30,0,2016-05-01-14
40,0,2016-05-01-14
50,0,2016-05-01-14
60,0,2016-05-01-14
70,0,2016-05-01-14
80,0,2016-05-01-14
90,0,2016-05-01-14
100,0,2016-05-01-14
200,0,2016-05-01-14
300,0,2016-05-01-14
400,0,2016-05-01-14
500,0,2016-05-01-14
600,0,2016-05-01-14
700,0,2016-05-01-14
800,0,2016-05-01-14
900,0,2016-05-01-14
1000,582,2016-05-01-14
2000,0,2016-05-01-14
3000,0,2016-05-01-14
4000,0,2016-05-01-14
5000,0,2016-05-01-14
6000,0,2016-05-01-14
7000,0,2016-05-01-14
8000,0,2016-05-01-14
9000,0,2016-05-01-14
1,0,2016-05-01-17
2,0,2016-05-01-17
3,0,2016-05-01-17
4,0,2016-05-01-17
5,0,2016-05-01-17
6,0,2016-05-01-17
7,0,2016-05-01-17
8,0,2016-05-01-17
9,0,2016-05-01-17
10,0,2016-05-01-17
20,0,2016-05-01-17
30,0,2016-05-01-17
40,0,2016-05-01-17
50,0,2016-05-01-17
60,0,2016-05-01-17
70,0,2016-05-01-17
80,0,2016-05-01-17
90,0,2016-05-01-17
100,0,2016-05-01-17
200,0,2016-05-01-17
300,0,2016-05-01-17
400,0,2016-05-01-17
500,0,2016-05-01-17
600,0,2016-05-01-17
700,0,2016-05-01-17
800,0,2016-05-01-17
900,0,2016-05-01-17
1000,566,2016-05-01-17
2000,0,2016-05-01-17
3000,0,2016-05-01-17
4000,0,2016-05-01-17
5000,0,2016-05-01-17
6000,0,2016-05-01-17
7000,0,2016-05-01-17
8000,0,2016-05-01-17
9000,0,2016-05-01-17
1,0,2016-05-01-19
2,0,2016-05-01-19
3,0,2016-05-01-19
4,0,2016-05-01-19
5,0,2016-05-01-19
6,0,2016-05-01-19
7,0,2016-05-01-19
8,0,2016-05-01-19
9,0,2016-05-01-19
10,0,2016-05-01-19
20,0,2016-05-01-19
30,0,2016-05-01-19
40,0,2016-05-01-19
50,0,2016-05-01-19
60,0,2016-05-01-19
70,0,2016-05-01-19
80,0,2016-05-01-19
90,0,2016-05-01-19
100,0,2016-05-01-19
200,0,2016-05-01-19
300,0,2016-05-01-19
400,0,2016-05-01-19
500,0,2016-05-01-19
600,0,2016-05-01-19
700,0,2016-05-01-19
800,0,2016-05-01-19
900,0,2016-05-01-19
1000,599,2016-05-01-19
2000,0,2016-05-01-19
3000,0,2016-05-01-19
4000,0,2016-05-01-19
5000,0,2016-05-01-19
6000,0,2016-05-01-19
7000,0,2016-05-01-19
8000,0,2016-05-01-19
9000,0,2016-05-01-19
1,0,2016-05-01-20
2,0,2016-05-01-20
3,0,2016-05-01-20
4,0,2016-05-01-20
5,0,2016-05-01-20
6,0,2016-05-01-20
7,0,2016-05-01-20
8,0,2016-05-01-20
9,0,2016-05-01-20
10,0,2016-05-01-20
20,0,2016-05-01-20
30,0,2016-05-01-20
40,0,2016-05-01-20
50,0,2016-05-01-20
60,0,2016-05-01-20
70,0,2016-05-01-20
80,0,2016-05-01-20
90,0,2016-05-01-20
100,0,2016-05-01-20
200,0,2016-05-01-20
300,0,2016-05-01-20
400,0,2016-05-01-20
500,0,2016-05-01-20
600,0,2016-05-01-20
700,0,2016-05-01-20
800,0,2016-05-01-20
900,0,2016-05-01-20
1000,645,2016-05-01-20
2000,0,2016-05-01-20
3000,0,2016-05-01-20
4000,0,2016-05-01-20
5000,0,2016-05-01-20
6000,0,2016-05-01-20
7000,0,2016-05-01-20
8000,0,2016-05-01-20
9000,0,2016-05-01-20
1,0,2016-05-01-21
2,0,2016-05-01-21
3,0,2016-05-01-21
4,0,2016-05-01-21
5,0,2016-05-01-21
6,0,2016-05-01-21
7,0,2016-05-01-21
8,0,2016-05-01-21
9,0,2016-05-01-21
10,0,2016-05-01-21
20,0,2016-05-01-21
30,0,2016-05-01-21
40,0,2016-05-01-21
50,0,2016-05-01-21
60,0,2016-05-01-21
70,0,2016-05-01-21
80,0,2016-05-01-21
90,0,2016-05-01-21
100,0,2016-05-01-21
200,0,2016-05-01-21
300,0,2016-05-01-21
400,0,2016-05-01-21
500,0,2016-05-01-21
600,0,2016-05-01-21
700,0,2016-05-01-21
800,0,2016-05-01-21
900,0,2016-05-01-21
1000,595,2016-05-01-21
2000,0,2016-05-01-21
3000,0,2016-05-01-21
4000,0,2016-05-01-21
5000,0,2016-05-01-21
6000,0,2016-05-01-21
7000,0,2016-05-01-21
8000,0,2016-05-01-21
9000,0,2016-05-01-21
1,0,2016-05-01-22
2,0,2016-05-01-22
3,0,2016-05-01-22
4,0,2016-05-01-22
5,0,2016-05-01-22
6,0,2016-05-01-22
7,0,2016-05-01-22
8,0,2016-05-01-22
9,0,2016-05-01-22
10,0,2016-05-01-22
20,0,2016-05-01-22
30,0,2016-05-01-22
40,0,2016-05-01-22
50,0,2016-05-01-22
60,0,2016-05-01-22
70,0,2016-05-01-22
80,0,2016-05-01-22
90,0,2016-05-01-22
100,0,2016-05-01-22
200,0,2016-05-01-22
300,0,2016-05-01-22
400,0,2016-05-01-22
500,0,2016-05-01-22
600,0,2016-05-01-22
700,0,2016-05-01-22
800,0,2016-05-01-22
900,0,2016-05-01-22
1000,590,2016-05-01-22
2000,0,2016-05-01-22
3000,0,2016-05-01-22
4000,0,2016-05-01-22
5000,0,2016-05-01-22
6000,0,2016-05-01-22
7000,0,2016-05-01-22
8000,0,2016-05-01-22
9000,0,2016-05-01-22