-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1082 lines (1024 loc) · 136 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/gatling.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/all_sessions.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
<script type="text/javascript" src="js/highstock.js"></script>
<script type="text/javascript" src="js/highcharts-more.js"></script>
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/unpack.js"></script>
<title>Gatling Stats - Global Information</title>
</head>
<body>
<div class="frise"></div>
<div class="container details">
<div class="head">
<a href="http://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo.png"/></a>
</div>
<div class="main">
<div class="cadre">
<div class="onglet">
<img src="style/cible.png" />
<p><span>masscopyandretardsimulation</span></p>
</div>
<div class="content">
<div class="sous-menu">
<div class="item ouvert"><a href="index.html">GLOBAL</a></div>
<div class="item "><a id="details_link" href="#">DETAILS</a></div>
<script type="text/javascript">
var timestamp = 1528987419764;
var runStartHumanDate = moment(timestamp).format("YYYY-MM-DD HH:mm:ss Z");
document.writeln("<p class='sim_desc' title='"+ runStartHumanDate +", duration : 3596 seconds' data-content=''>");
document.writeln("<b>" + runStartHumanDate + ", duration : 3596 seconds </b>");
document.writeln("</p>");
</script>
</div>
<div class="content-in">
<h1><span>> </span>Global Information</h1>
<div class="article">
<div class="schema polar">
<div id="container_number_of_requests"></div>
</div>
<div class="schema demi">
<div id="container_indicators" class="demi"></div>
</div>
<div class="statistics extensible-geant collapsed">
<div class="title">
<div class="right">
<span class="expand-all-button">Expand all groups</span> | <span class="collapse-all-button">Collapse all groups</span>
</div>
<div id="statistics_title" class="title_collapsed">STATISTICS <span>(Click here to show more)</span></div>
</div>
<table id="container_statistics_head" class="statistics-in extensible-geant">
<thead>
<tr>
<th rowspan="2" id="col-1" class="header sortable sorted-up"><span>Requests</span></th>
<th colspan="5" class="header"><span class="executions">Executions</span></th>
<th colspan="8" class="header"><span class="response-time">Response Time (ms)</span></th>
</tr>
<tr>
<th id="col-2" class="header sortable"><span>Total</span></th>
<th id="col-3" class="header sortable"><span>OK</span></th>
<th id="col-4" class="header sortable"><span>KO</span></th>
<th id="col-5" class="header sortable"><span>% KO</span></th>
<th id="col-6" class="header sortable"><span>Req/s</span></th>
<th id="col-7" class="header sortable"><span>Min</span></th>
<th id="col-8" class="header sortable"><span>50th pct</span></th>
<th id="col-9" class="header sortable"><span>75th pct</span></th>
<th id="col-10" class="header sortable"><span>95th pct</span></th>
<th id="col-11" class="header sortable"><span>99th pct</span></th>
<th id="col-12" class="header sortable"><span>Max</span></th>
<th id="col-13" class="header sortable"><span>Mean</span></th>
<th id="col-14" class="header sortable"><span>Std Dev</span></th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="scrollable">
<table id="container_statistics_body" class="statistics-in extensible-geant">
<tbody></tbody>
</table>
</div>
</div>
<div class="statistics extensible-geant collapsed">
<div class="title">
<div class="title_collapsed" style="cursor: auto;">ERRORS</div>
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 403<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total">65</td>
<td class="value error-col-3 total">32.338 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 503<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total">57</td>
<td class="value error-col-3 total">28.358 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 400<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total">37</td>
<td class="value error-col-3 total">18.408 %</td>
</tr>
<tr>
<td class="error-col-1 total">j.u.c.TimeoutException: Request timeout to not-connected after 60000ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total">16</td>
<td class="value error-col-3 total">7.96 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 502<span class="value" style="display:none">4</span></td>
<td class="value error-col-2 total">8</td>
<td class="value error-col-3 total">3.98 %</td>
</tr>
<tr>
<td class="error-col-1 total">bodyString.find.transform.exists failed, could not extract: transform crashed: Object is missing required member 'spotList'<span class="value" style="display:none">5</span></td>
<td class="value error-col-2 total">8</td>
<td class="value error-col-3 total">3.98 %</td>
</tr>
<tr>
<td class="error-col-1 total">bodyString.find.transform.exists failed, could not extract: transform crashed: Object is missing required member 'alternateSchedules'<span class="value" style="display:none">6</span></td>
<td class="value error-col-2 total">5</td>
<td class="value error-col-3 total">2.488 %</td>
</tr>
<tr>
<td class="error-col-1 total">j.u.c.TimeoutException: Request timeout to perf.kronos.itv.com/10.220.210.244:443 after 60000ms<span class="value" style="display:none">7</span></td>
<td class="value error-col-2 total">4</td>
<td class="value error-col-3 total">1.99 %</td>
</tr>
<tr>
<td class="error-col-1 total">bodyString.find.transform.exists failed, could not extract: transform crashed: Unexpected character '<' at input index 0 (line 1, position 1), expected JSON Value: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> ^ <span class="value" style="display:none">8</span></td>
<td class="value error-col-2 total">1</td>
<td class="value error-col-3 total">0.498 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<a name="active_users"></a>
<div id="container_active_users" class="geant"></div>
</div>
<div class="schema geant">
<div id="container_distrib" class="geant"></div>
</div>
<div class="schema geant">
<div id="container" class="geant"></div>
</div>
<div class="schema geant">
<a name="requests"></a>
<div id="container_requests" class="geant"></div>
</div>
<div class="schema geant">
<a name="responses"></a>
<div id="container_responses" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="nav">
<ul></ul>
</div>
</div>
<div class="foot">
<a href="http://gatling.io" title="Gatling Home Page"><img alt="Gatling" src="style/logo-gatling.jpg"/></a>
</div>
<script type="text/javascript">
var pageStats = stats.stats;
$(document).ready(function() {
$('.sim_desc').popover({trigger:'hover', placement:'bottom'});
setDetailsLinkUrl();
setGlobalMenu();
setActiveMenu();
fillStats(pageStats);
function numberOfRequestsDataForGroup(group) {
var data = {names: [], oks: [], kos: []};
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = numberOfRequestsDataForGroup(content);
data.names = data.names.concat(result.names);
data.oks = data.oks.concat(result.oks);
data.kos = data.kos.concat(result.kos);
}
else if (content.type == 'REQUEST') {
data.names.push(content.path);
data.oks.push(parseInt(content.stats.numberOfRequests.ok));
data.kos.push(parseInt(content.stats.numberOfRequests.ko));
}
});
return data;
}
var numberOfRequestsData = numberOfRequestsDataForGroup(stats);
new Highcharts.Chart({
chart: {
renderTo:'container_number_of_requests',
polar:true,
type:'column',
height:330
},
credits:{
enabled:false
},
title:{
text:'<span class="chart_title">Number of requests</span>',
useHTML: true
},
xAxis:{
tickmarkPlacement:'on',
tickInterval: 1,
categories:numberOfRequestsData.names,
labels:{ enabled:false }
},
yAxis:{
min:0
},
plotOptions:{
series:{
stacking:'normal',
groupPadding:0,
pointPlacement:'on',
shadow: true
}
},
legend: {
borderWidth: 0.5,
borderRadius: 3,
borderColor: 'black',
itemStyle: { fontWeight: "normal" }
},
series:[
{
name:'KO',
data:numberOfRequestsData.kos,
color:"#FF0000"
},
{
name:'OK',
data:numberOfRequestsData.oks,
color:"#4572A7"
}
]
});
Highcharts.setOptions({
global: { useUTC: false }
});
var indicatorsChart = new Highcharts.Chart({
chart: {
renderTo: 'container_indicators',
marginRight: 150
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.name,
pageStats.group2.name,
pageStats.group3.name,
pageStats.group4.name
]
},
yAxis: {
title: { text: 'Number of Requests' }
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#A0B228',
data: [pageStats.group1.count,0,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FFDD00',
data: [0,pageStats.group2.count,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF9D00',
data: [0,0,pageStats.group3.count,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
data: [0,0,0,pageStats.group4.count],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#A0B228'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FF9D00'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#FF0000'
}
],
center: [470, 85],
size: 100,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
indicatorsChart.setTitle({
text: '<span class="chart_title">Indicators</span>',
useHTML: true
});
$('#container_exceptions').sortable('#container_exceptions');
function shortenNameAndDisplayFullOnHover(name){
if (name.length < 20)
return name;
else
return "<span class='tooltipContent'>"+name+"</span>" + name.substr(0,8)+"..."+name.substr(name.length-8,name.length);
}
function generateHtmlRow(request, level, index, parent, group) {
if (request.name == 'Global Information')
var url = 'index.html';
else
var url = request.pathFormatted + '.html';
if (group)
var expandButtonStyle = '';
else
var expandButtonStyle = ' hidden';
if (request.stats.numberOfRequests.total != 0)
var koPercent = (request.stats.numberOfRequests.ko * 100 / request.stats.numberOfRequests.total).toFixed(0) + '%';
else
var koPercent = '-'
return '<tr id="' + request.pathFormatted + '" class="child-of-' + parent + '"> \
<td class="total col-1"> \
<span id="' + request.pathFormatted + '" style="margin-left: ' + (level * 10) + 'px;" class="expand-button' + expandButtonStyle + '"> </span> \
<a href="' + url +'" class="withTooltip">' + shortenNameAndDisplayFullOnHover(request.name) + '</a><span class="value" style="display:none;">' + index + '</span> \
</td> \
<td class="value total col-2">' + request.stats.numberOfRequests.total + '</td> \
<td class="value ok col-3">' + request.stats.numberOfRequests.ok + '</td> \
<td class="value ko col-4">' + request.stats.numberOfRequests.ko + '</td> \
<td class="value ko col-5">' + koPercent + '</td> \
<td class="value total col-6">' + request.stats.meanNumberOfRequestsPerSecond.total + '</td> \
<td class="value total col-7">' + request.stats.minResponseTime.total + '</td> \
<td class="value total col-8">' + request.stats.percentiles1.total + '</td> \
<td class="value total col-9">' + request.stats.percentiles2.total + '</td> \
<td class="value total col-10">' + request.stats.percentiles3.total + '</td> \
<td class="value total col-11">' + request.stats.percentiles4.total + '</td> \
<td class="value total col-12">' + request.stats.maxResponseTime.total + '</td> \
<td class="value total col-13">' + request.stats.meanResponseTime.total + '</td> \
<td class="value total col-14">' + request.stats.standardDeviation.total + '</td> \
</tr>';
}
function generateHtmlRowsForGroup(group, level, index, parent) {
var buffer = '';
if (!parent)
parent = 'ROOT';
else {
buffer += generateHtmlRow(group, level - 1, index, parent, true);
index++;
parent = group.pathFormatted;
}
$.each(group.contents, function(contentName, content) {
if (content.type == 'GROUP') {
var result = generateHtmlRowsForGroup(content, level + 1, index, parent);
buffer += result.html;
index = result.index;
}
else if (content.type == 'REQUEST') {
buffer += generateHtmlRow(content, level, index, parent);
index++;
}
});
return { html: buffer, index: index };
}
$('#container_statistics_head tbody').append(generateHtmlRow(stats, 0, 0));
var lines = generateHtmlRowsForGroup(stats, 0, 0)
$('#container_statistics_body tbody').append(lines.html);
$('#container_statistics_head').sortable('#container_statistics_body');
$('.statistics').expandable();
if (lines.index < 30) {
$('#statistics_title span').attr('style', 'display: none;');
$('#statistics_title').attr('style', 'cursor: auto;')
}
else {
$('#statistics_title').click(function(){
$(this).toggleClass('title_collapsed').toggleClass('title_not_collapsed');
$('#container_statistics_body').parent().toggleClass('scrollable').toggleClass('');
});
}
$('#container_errors').sortable('#container_errors');
allUsersData.yAxis = 0;
var allUsersChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_active_users',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
align: 'right',
verticalAlign: 'top',
layout: 'vertical',
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis: {
title: { text: 'Number of Active Users' },
opposite: false,
min: 0
},
series: [
{
color: '#4572A7',
name: 'InventoryLockSimulation',
data: [
[1528987422000,6],[1528987425000,6],[1528987429000,6],[1528987433000,6],[1528987436000,6],[1528987440000,6],[1528987443000,6],[1528987447000,6],[1528987451000,6],[1528987454000,6],[1528987458000,6],[1528987461000,6],[1528987465000,6],[1528987469000,6],[1528987472000,6],[1528987476000,6],[1528987479000,6],[1528987483000,6],[1528987486000,6],[1528987490000,6],[1528987494000,6],[1528987497000,6],[1528987501000,6],[1528987504000,6],[1528987508000,6],[1528987512000,6],[1528987515000,6],[1528987519000,6],[1528987522000,6],[1528987526000,6],[1528987530000,6],[1528987533000,6],[1528987537000,6],[1528987540000,6],[1528987544000,6],[1528987548000,6],[1528987551000,6],[1528987555000,6],[1528987558000,6],[1528987562000,6],[1528987566000,6],[1528987569000,6],[1528987573000,6],[1528987576000,6],[1528987580000,6],[1528987584000,6],[1528987587000,6],[1528987591000,6],[1528987594000,6],[1528987598000,6],[1528987602000,6],[1528987605000,6],[1528987609000,6],[1528987612000,6],[1528987616000,6],[1528987620000,6],[1528987623000,6],[1528987627000,6],[1528987630000,6],[1528987634000,6],[1528987638000,6],[1528987641000,6],[1528987645000,6],[1528987648000,6],[1528987652000,6],[1528987656000,6],[1528987659000,6],[1528987663000,6],[1528987666000,6],[1528987670000,6],[1528987674000,6],[1528987677000,6],[1528987681000,6],[1528987684000,6],[1528987688000,6],[1528987692000,6],[1528987695000,6],[1528987699000,6],[1528987702000,6],[1528987706000,6],[1528987710000,6],[1528987713000,6],[1528987717000,6],[1528987720000,6],[1528987724000,6],[1528987727000,6],[1528987731000,6],[1528987735000,6],[1528987738000,6],[1528987742000,6],[1528987745000,6],[1528987749000,6],[1528987753000,6],[1528987756000,6],[1528987760000,6],[1528987763000,6],[1528987767000,6],[1528987771000,6],[1528987774000,6],[1528987778000,6],[1528987781000,6],[1528987785000,6],[1528987789000,6],[1528987792000,6],[1528987796000,6],[1528987799000,6],[1528987803000,6],[1528987807000,6],[1528987810000,6],[1528987814000,6],[1528987817000,6],[1528987821000,6],[1528987825000,6],[1528987828000,6],[1528987832000,6],[1528987835000,6],[1528987839000,6],[1528987843000,6],[1528987846000,6],[1528987850000,6],[1528987853000,6],[1528987857000,6],[1528987861000,6],[1528987864000,6],[1528987868000,6],[1528987871000,6],[1528987875000,6],[1528987879000,6],[1528987882000,6],[1528987886000,6],[1528987889000,6],[1528987893000,6],[1528987897000,6],[1528987900000,6],[1528987904000,6],[1528987907000,6],[1528987911000,6],[1528987915000,6],[1528987918000,6],[1528987922000,6],[1528987925000,6],[1528987929000,6],[1528987933000,6],[1528987936000,6],[1528987940000,6],[1528987943000,6],[1528987947000,6],[1528987951000,6],[1528987954000,6],[1528987958000,6],[1528987961000,6],[1528987965000,6],[1528987968000,6],[1528987972000,6],[1528987976000,6],[1528987979000,6],[1528987983000,6],[1528987986000,6],[1528987990000,6],[1528987994000,6],[1528987997000,6],[1528988001000,6],[1528988004000,6],[1528988008000,6],[1528988012000,6],[1528988015000,6],[1528988019000,6],[1528988022000,6],[1528988026000,6],[1528988030000,6],[1528988033000,6],[1528988037000,6],[1528988040000,6],[1528988044000,6],[1528988048000,6],[1528988051000,6],[1528988055000,6],[1528988058000,6],[1528988062000,6],[1528988066000,6],[1528988069000,6],[1528988073000,6],[1528988076000,6],[1528988080000,6],[1528988084000,6],[1528988087000,6],[1528988091000,6],[1528988094000,6],[1528988098000,6],[1528988102000,6],[1528988105000,6],[1528988109000,6],[1528988112000,6],[1528988116000,6],[1528988120000,6],[1528988123000,6],[1528988127000,6],[1528988130000,6],[1528988134000,6],[1528988138000,6],[1528988141000,6],[1528988145000,6],[1528988148000,6],[1528988152000,6],[1528988156000,6],[1528988159000,6],[1528988163000,6],[1528988166000,6],[1528988170000,6],[1528988174000,6],[1528988177000,6],[1528988181000,6],[1528988184000,6],[1528988188000,6],[1528988191000,6],[1528988195000,6],[1528988199000,6],[1528988202000,6],[1528988206000,6],[1528988209000,6],[1528988213000,6],[1528988217000,6],[1528988220000,6],[1528988224000,6],[1528988227000,6],[1528988231000,6],[1528988235000,6],[1528988238000,6],[1528988242000,6],[1528988245000,6],[1528988249000,6],[1528988253000,6],[1528988256000,6],[1528988260000,6],[1528988263000,6],[1528988267000,6],[1528988271000,6],[1528988274000,6],[1528988278000,6],[1528988281000,6],[1528988285000,6],[1528988289000,6],[1528988292000,6],[1528988296000,6],[1528988299000,6],[1528988303000,6],[1528988307000,6],[1528988310000,6],[1528988314000,6],[1528988317000,6],[1528988321000,6],[1528988325000,6],[1528988328000,6],[1528988332000,6],[1528988335000,6],[1528988339000,6],[1528988343000,6],[1528988346000,6],[1528988350000,6],[1528988353000,6],[1528988357000,6],[1528988361000,6],[1528988364000,6],[1528988368000,6],[1528988371000,6],[1528988375000,6],[1528988379000,6],[1528988382000,6],[1528988386000,6],[1528988389000,6],[1528988393000,6],[1528988397000,6],[1528988400000,6],[1528988404000,6],[1528988407000,6],[1528988411000,6],[1528988415000,6],[1528988418000,6],[1528988422000,6],[1528988425000,6],[1528988429000,6],[1528988432000,6],[1528988436000,6],[1528988440000,6],[1528988443000,6],[1528988447000,6],[1528988450000,6],[1528988454000,6],[1528988458000,6],[1528988461000,6],[1528988465000,6],[1528988468000,6],[1528988472000,6],[1528988476000,6],[1528988479000,6],[1528988483000,6],[1528988486000,6],[1528988490000,6],[1528988494000,6],[1528988497000,6],[1528988501000,6],[1528988504000,6],[1528988508000,6],[1528988512000,6],[1528988515000,6],[1528988519000,6],[1528988522000,6],[1528988526000,6],[1528988530000,6],[1528988533000,6],[1528988537000,6],[1528988540000,6],[1528988544000,6],[1528988548000,6],[1528988551000,6],[1528988555000,6],[1528988558000,6],[1528988562000,6],[1528988566000,6],[1528988569000,6],[1528988573000,6],[1528988576000,6],[1528988580000,6],[1528988584000,6],[1528988587000,6],[1528988591000,6],[1528988594000,6],[1528988598000,6],[1528988602000,6],[1528988605000,6],[1528988609000,6],[1528988612000,6],[1528988616000,6],[1528988620000,6],[1528988623000,6],[1528988627000,6],[1528988630000,6],[1528988634000,6],[1528988638000,6],[1528988641000,6],[1528988645000,6],[1528988648000,6],[1528988652000,6],[1528988656000,6],[1528988659000,6],[1528988663000,6],[1528988666000,6],[1528988670000,6],[1528988673000,6],[1528988677000,6],[1528988681000,6],[1528988684000,6],[1528988688000,6],[1528988691000,6],[1528988695000,6],[1528988699000,6],[1528988702000,6],[1528988706000,6],[1528988709000,6],[1528988713000,6],[1528988717000,6],[1528988720000,6],[1528988724000,6],[1528988727000,6],[1528988731000,6],[1528988735000,6],[1528988738000,6],[1528988742000,6],[1528988745000,6],[1528988749000,6],[1528988753000,6],[1528988756000,6],[1528988760000,6],[1528988763000,6],[1528988767000,6],[1528988771000,6],[1528988774000,6],[1528988778000,6],[1528988781000,6],[1528988785000,6],[1528988789000,6],[1528988792000,6],[1528988796000,6],[1528988799000,6],[1528988803000,6],[1528988807000,6],[1528988810000,6],[1528988814000,6],[1528988817000,6],[1528988821000,6],[1528988825000,6],[1528988828000,6],[1528988832000,6],[1528988835000,6],[1528988839000,6],[1528988843000,6],[1528988846000,6],[1528988850000,6],[1528988853000,6],[1528988857000,6],[1528988861000,6],[1528988864000,6],[1528988868000,6],[1528988871000,6],[1528988875000,6],[1528988879000,6],[1528988882000,6],[1528988886000,6],[1528988889000,6],[1528988893000,6],[1528988897000,6],[1528988900000,6],[1528988904000,6],[1528988907000,6],[1528988911000,6],[1528988914000,6],[1528988918000,6],[1528988922000,6],[1528988925000,6],[1528988929000,6],[1528988932000,6],[1528988936000,6],[1528988940000,6],[1528988943000,6],[1528988947000,6],[1528988950000,6],[1528988954000,6],[1528988958000,6],[1528988961000,6],[1528988965000,6],[1528988968000,6],[1528988972000,6],[1528988976000,6],[1528988979000,6],[1528988983000,6],[1528988986000,6],[1528988990000,6],[1528988994000,6],[1528988997000,6],[1528989001000,6],[1528989004000,6],[1528989008000,6],[1528989012000,6],[1528989015000,6],[1528989019000,6],[1528989022000,6],[1528989026000,6],[1528989030000,6],[1528989033000,6],[1528989037000,6],[1528989040000,6],[1528989044000,6],[1528989048000,6],[1528989051000,6],[1528989055000,6],[1528989058000,6],[1528989062000,6],[1528989066000,6],[1528989069000,6],[1528989073000,6],[1528989076000,6],[1528989080000,6],[1528989084000,6],[1528989087000,6],[1528989091000,6],[1528989094000,6],[1528989098000,6],[1528989102000,6],[1528989105000,6],[1528989109000,6],[1528989112000,6],[1528989116000,6],[1528989120000,6],[1528989123000,6],[1528989127000,6],[1528989130000,6],[1528989134000,6],[1528989138000,6],[1528989141000,6],[1528989145000,6],[1528989148000,6],[1528989152000,6],[1528989155000,6],[1528989159000,6],[1528989163000,6],[1528989166000,6],[1528989170000,6],[1528989173000,6],[1528989177000,6],[1528989181000,6],[1528989184000,6],[1528989188000,6],[1528989191000,6],[1528989195000,6],[1528989199000,6],[1528989202000,6],[1528989206000,6],[1528989209000,6],[1528989213000,6],[1528989217000,6],[1528989220000,6],[1528989224000,6],[1528989227000,6],[1528989231000,6],[1528989235000,6],[1528989238000,6],[1528989242000,6],[1528989245000,6],[1528989249000,6],[1528989253000,6],[1528989256000,6],[1528989260000,6],[1528989263000,6],[1528989267000,6],[1528989271000,6],[1528989274000,6],[1528989278000,6],[1528989281000,6],[1528989285000,6],[1528989289000,6],[1528989292000,6],[1528989296000,6],[1528989299000,6],[1528989303000,6],[1528989307000,6],[1528989310000,6],[1528989314000,6],[1528989317000,6],[1528989321000,6],[1528989325000,6],[1528989328000,6],[1528989332000,6],[1528989335000,6],[1528989339000,6],[1528989343000,6],[1528989346000,6],[1528989350000,6],[1528989353000,6],[1528989357000,6],[1528989361000,6],[1528989364000,6],[1528989368000,6],[1528989371000,6],[1528989375000,6],[1528989379000,6],[1528989382000,6],[1528989386000,6],[1528989389000,6],[1528989393000,6],[1528989396000,6],[1528989400000,6],[1528989404000,6],[1528989407000,6],[1528989411000,6],[1528989414000,6],[1528989418000,6],[1528989422000,6],[1528989425000,6],[1528989429000,6],[1528989432000,6],[1528989436000,6],[1528989440000,6],[1528989443000,6],[1528989447000,6],[1528989450000,6],[1528989454000,6],[1528989458000,6],[1528989461000,6],[1528989465000,6],[1528989468000,6],[1528989472000,6],[1528989476000,6],[1528989479000,6],[1528989483000,6],[1528989486000,6],[1528989490000,6],[1528989494000,6],[1528989497000,6],[1528989501000,6],[1528989504000,6],[1528989508000,6],[1528989512000,6],[1528989515000,6],[1528989519000,6],[1528989522000,6],[1528989526000,6],[1528989530000,6],[1528989533000,6],[1528989537000,6],[1528989540000,6],[1528989544000,6],[1528989548000,6],[1528989551000,6],[1528989555000,6],[1528989558000,6],[1528989562000,6],[1528989566000,6],[1528989569000,6],[1528989573000,6],[1528989576000,6],[1528989580000,6],[1528989584000,6],[1528989587000,6],[1528989591000,6],[1528989594000,6],[1528989598000,6],[1528989602000,6],[1528989605000,6],[1528989609000,6],[1528989612000,6],[1528989616000,6],[1528989620000,6],[1528989623000,6],[1528989627000,6],[1528989630000,6],[1528989634000,6],[1528989637000,6],[1528989641000,6],[1528989645000,6],[1528989648000,6],[1528989652000,6],[1528989655000,6],[1528989659000,6],[1528989663000,6],[1528989666000,6],[1528989670000,6],[1528989673000,6],[1528989677000,6],[1528989681000,6],[1528989684000,6],[1528989688000,6],[1528989691000,6],[1528989695000,6],[1528989699000,6],[1528989702000,6],[1528989706000,6],[1528989709000,6],[1528989713000,6],[1528989717000,6],[1528989720000,6],[1528989724000,6],[1528989727000,6],[1528989731000,6],[1528989735000,6],[1528989738000,6],[1528989742000,6],[1528989745000,6],[1528989749000,6],[1528989753000,6],[1528989756000,6],[1528989760000,6],[1528989763000,6],[1528989767000,6],[1528989771000,6],[1528989774000,6],[1528989778000,6],[1528989781000,6],[1528989785000,6],[1528989789000,6],[1528989792000,6],[1528989796000,6],[1528989799000,6],[1528989803000,6],[1528989807000,6],[1528989810000,6],[1528989814000,6],[1528989817000,6],[1528989821000,6],[1528989825000,6],[1528989828000,6],[1528989832000,6],[1528989835000,6],[1528989839000,6],[1528989843000,6],[1528989846000,6],[1528989850000,6],[1528989853000,6],[1528989857000,6],[1528989861000,6],[1528989864000,6],[1528989868000,6],[1528989871000,6],[1528989875000,6],[1528989878000,6],[1528989882000,6],[1528989886000,6],[1528989889000,6],[1528989893000,6],[1528989896000,6],[1528989900000,6],[1528989904000,6],[1528989907000,6],[1528989911000,6],[1528989914000,6],[1528989918000,6],[1528989922000,6],[1528989925000,6],[1528989929000,6],[1528989932000,6],[1528989936000,6],[1528989940000,6],[1528989943000,6],[1528989947000,6],[1528989950000,6],[1528989954000,6],[1528989958000,6],[1528989961000,6],[1528989965000,6],[1528989968000,6],[1528989972000,6],[1528989976000,6],[1528989979000,6],[1528989983000,6],[1528989986000,6],[1528989990000,6],[1528989994000,6],[1528989997000,6],[1528990001000,6],[1528990004000,6],[1528990008000,6],[1528990012000,6],[1528990015000,6],[1528990019000,6],[1528990022000,6],[1528990026000,6],[1528990030000,6],[1528990033000,6],[1528990037000,6],[1528990040000,6],[1528990044000,6],[1528990048000,6],[1528990051000,6],[1528990055000,6],[1528990058000,6],[1528990062000,6],[1528990066000,6],[1528990069000,6],[1528990073000,6],[1528990076000,6],[1528990080000,6],[1528990084000,6],[1528990087000,6],[1528990091000,6],[1528990094000,6],[1528990098000,6],[1528990102000,6],[1528990105000,6],[1528990109000,6],[1528990112000,6],[1528990116000,6],[1528990119000,6],[1528990123000,6],[1528990127000,6],[1528990130000,6],[1528990134000,6],[1528990137000,6],[1528990141000,6],[1528990145000,6],[1528990148000,6],[1528990152000,6],[1528990155000,6],[1528990159000,6],[1528990163000,6],[1528990166000,6],[1528990170000,6],[1528990173000,6],[1528990177000,6],[1528990181000,6],[1528990184000,6],[1528990188000,6],[1528990191000,6],[1528990195000,6],[1528990199000,6],[1528990202000,6],[1528990206000,6],[1528990209000,6],[1528990213000,6],[1528990217000,6],[1528990220000,6],[1528990224000,6],[1528990227000,6],[1528990231000,6],[1528990235000,6],[1528990238000,6],[1528990242000,6],[1528990245000,6],[1528990249000,6],[1528990253000,6],[1528990256000,6],[1528990260000,6],[1528990263000,6],[1528990267000,6],[1528990271000,6],[1528990274000,6],[1528990278000,6],[1528990281000,6],[1528990285000,6],[1528990289000,6],[1528990292000,6],[1528990296000,6],[1528990299000,6],[1528990303000,6],[1528990307000,6],[1528990310000,6],[1528990314000,6],[1528990317000,6],[1528990321000,6],[1528990325000,6],[1528990328000,6],[1528990332000,6],[1528990335000,6],[1528990339000,6],[1528990343000,6],[1528990346000,6],[1528990350000,6],[1528990353000,6],[1528990357000,6],[1528990360000,6],[1528990364000,6],[1528990368000,6],[1528990371000,6],[1528990375000,6],[1528990378000,6],[1528990382000,6],[1528990386000,6],[1528990389000,6],[1528990393000,6],[1528990396000,6],[1528990400000,6],[1528990404000,6],[1528990407000,6],[1528990411000,6],[1528990414000,6],[1528990418000,6],[1528990422000,6],[1528990425000,6],[1528990429000,6],[1528990432000,6],[1528990436000,6],[1528990440000,6],[1528990443000,6],[1528990447000,6],[1528990450000,6],[1528990454000,6],[1528990458000,6],[1528990461000,6],[1528990465000,6],[1528990468000,6],[1528990472000,6],[1528990476000,6],[1528990479000,6],[1528990483000,6],[1528990486000,6],[1528990490000,6],[1528990494000,6],[1528990497000,6],[1528990501000,6],[1528990504000,6],[1528990508000,6],[1528990512000,6],[1528990515000,6],[1528990519000,6],[1528990522000,6],[1528990526000,6],[1528990530000,6],[1528990533000,6],[1528990537000,6],[1528990540000,6],[1528990544000,6],[1528990548000,6],[1528990551000,6],[1528990555000,6],[1528990558000,6],[1528990562000,6],[1528990566000,6],[1528990569000,6],[1528990573000,6],[1528990576000,6],[1528990580000,6],[1528990584000,6],[1528990587000,6],[1528990591000,6],[1528990594000,6],[1528990598000,6],[1528990601000,6],[1528990605000,6],[1528990609000,6],[1528990612000,6],[1528990616000,6],[1528990619000,6],[1528990623000,6],[1528990627000,6],[1528990630000,6],[1528990634000,6],[1528990637000,6],[1528990641000,6],[1528990645000,6],[1528990648000,6],[1528990652000,6],[1528990655000,6],[1528990659000,6],[1528990663000,6],[1528990666000,6],[1528990670000,6],[1528990673000,6],[1528990677000,6],[1528990681000,6],[1528990684000,6],[1528990688000,6],[1528990691000,6],[1528990695000,6],[1528990699000,6],[1528990702000,6],[1528990706000,6],[1528990709000,6],[1528990713000,6],[1528990717000,6],[1528990720000,6],[1528990724000,6],[1528990727000,6],[1528990731000,6],[1528990735000,6],[1528990738000,6],[1528990742000,6],[1528990745000,6],[1528990749000,6],[1528990753000,6],[1528990756000,6],[1528990760000,6],[1528990763000,6],[1528990767000,6],[1528990771000,6],[1528990774000,6],[1528990778000,6],[1528990781000,6],[1528990785000,6],[1528990789000,6],[1528990792000,6],[1528990796000,6],[1528990799000,6],[1528990803000,6],[1528990807000,6],[1528990810000,6],[1528990814000,6],[1528990817000,6],[1528990821000,6],[1528990825000,6],[1528990828000,6],[1528990832000,6],[1528990835000,6],[1528990839000,6],[1528990842000,6],[1528990846000,6],[1528990850000,6],[1528990853000,6],[1528990857000,6],[1528990860000,6],[1528990864000,6],[1528990868000,6],[1528990871000,6],[1528990875000,6],[1528990878000,6],[1528990882000,6],[1528990886000,6],[1528990889000,6],[1528990893000,6],[1528990896000,6],[1528990900000,6],[1528990904000,6],[1528990907000,6],[1528990911000,6],[1528990914000,6],[1528990918000,6],[1528990922000,6],[1528990925000,6],[1528990929000,6],[1528990932000,6],[1528990936000,6],[1528990940000,6],[1528990943000,6],[1528990947000,6],[1528990950000,6],[1528990954000,6],[1528990958000,6],[1528990961000,6],[1528990965000,6],[1528990968000,6],[1528990972000,6],[1528990976000,6],[1528990979000,6],[1528990983000,6],[1528990986000,6],[1528990990000,6],[1528990994000,6],[1528990997000,6],[1528991001000,6],[1528991004000,6],[1528991008000,6],[1528991012000,6],[1528991015000,6]
],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }},
allUsersData
]
});
allUsersChart.setTitle({
text: '<span class="chart_title">Active Users along the Simulation</span>',
useHTML: true
});
allUsersData.yAxis = 1;
var responseTimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'container_distrib',
type: 'column'
},
credits: {
enabled: false
},
legend: {
enabled: true,
floating: true,
y: -285,
borderWidth: 0,
itemStyle: {
fontWeight: "normal"
}
},
title: {
text: 'A title to let highcharts reserve the place for the title set later'
},
xAxis: {
categories: ['305', '905', '1505', '2105', '2705', '3305', '3905', '4506', '5106', '5706', '6306', '6906', '7506', '8106', '8706', '9306', '9906', '10506', '11106', '11706', '12306', '12907', '13507', '14107', '14707', '15307', '15907', '16507', '17107', '17707', '18307', '18907', '19507', '20107', '20707', '21307', '21908', '22508', '23108', '23708', '24308', '24908', '25508', '26108', '26708', '27308', '27908', '28508', '29108', '29708', '30309', '30909', '31509', '32109', '32709', '33309', '33909', '34509', '35109', '35709', '36309', '36909', '37509', '38109', '38710', '39310', '39910', '40510', '41110', '41710', '42310', '42910', '43510', '44110', '44710', '45310', '45910', '46510', '47110', '47711', '48311', '48911', '49511', '50111', '50711', '51311', '51911', '52511', '53111', '53711', '54311', '54911', '55511', '56112', '56712', '57312', '57912', '58512', '59112', '59712'],
tickInterval: 20
},
yAxis: {
min: 0,
title: {
text: 'Percentage of Requests'
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#4572A7',
name: 'OK',
data: [
56.59,10.21,8.94,3.89,1.41,0.77,0.48,0.59,0.44,0.4,0.44,0.63,0.37,0.37,0.22,0.18,0.22,0.4,0.25,0.14,0.33,0.37,0.48,0.22,0.29,0.29,0.29,0.25,0.14,0.18,0.18,0.07,0.14,0.25,0.07,0.11,0.18,0.14,0.14,0.14,0.11,0.03,0.03,0.11,0.07,0.07,0.03,0.07,0.03,0.03,0.0,0.03,0.0,0.03,0.07,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.03,0.03,0.03,0.03,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
name: 'KO',
data: [
5.16,0.18,0.55,0.14,0.11,0.11,0.14,0.07,0.18,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.74
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responseTimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responseTimePercentiles = unpack([[1528987422,null],[1528987425,[25,79,288,425,426,736,1046,1356,1604,1666]],[1528987429,[8,25,446,511,556,769,1322,2370,3407,3667]],[1528987433,[73,73,73,73,73,73,73,73,73,73]],[1528987436,[8,268,482,1087,1569,2271,3584,7039,9803,10494]],[1528987440,[10,32,120,364,430,433,437,441,444,445]],[1528987443,[10,87,165,525,720,916,1250,1606,1892,1964]],[1528987447,null],[1528987451,[495,2101,3708,5314,5635,5957,6278,6599,6856,6921]],[1528987454,null],[1528987458,[462,3531,6600,9669,10282,10896,11510,12124,12615,12738]],[1528987461,null],[1528987465,[1609,1609,1609,1609,1609,1609,1609,1609,1609,1609]],[1528987469,null],[1528987472,[1765,1765,1765,1765,1765,1765,1765,1765,1765,1765]],[1528987476,null],[1528987479,[1553,1553,1553,1553,1553,1553,1553,1553,1553,1553]],[1528987483,[12,72,346,486,497,745,994,1242,1441,1491]],[1528987486,[12,34,105,369,453,490,528,566,596,604]],[1528987490,null],[1528987494,[10,51,282,438,445,916,1388,1860,2237,2332]],[1528987497,[7,140,236,902,1215,1529,6063,14817,21821,23572]],[1528987501,[16,78,266,516,548,1084,1621,2158,2587,2695]],[1528987504,[522,594,6925,13643,13889,14135,14381,14626,14823,14873]],[1528987508,null],[1528987512,null],[1528987515,[475,3213,5951,8689,9237,9785,10332,10880,11318,11428]],[1528987519,null],[1528987522,[10,111,160,580,772,964,7216,14479,20289,21742]],[1528987526,[452,4288,8124,11960,12727,13494,14261,15028,15642,15796]],[1528987530,null],[1528987533,null],[1528987537,null],[1528987540,[4925,4925,4925,4925,4925,4925,4925,4925,4925,4925]],[1528987544,null],[1528987548,null],[1528987551,null],[1528987555,[1987,1987,1987,1987,1987,1987,1987,1987,1987,1987]],[1528987558,null],[1528987562,[8,15,142,524,539,573,1039,1616,1909,1983]],[1528987566,[487,743,1000,1257,1308,1359,1411,1462,1503,1514]],[1528987569,[7,19,433,463,587,923,1685,8699,16811,18840]],[1528987573,[497,560,624,2847,5599,8352,11105,13858,16060,16611]],[1528987576,[469,15081,29694,30762,30975,31189,31402,31616,31787,31830]],[1528987580,[2022,2022,2022,2022,2022,2022,2022,2022,2022,2022]],[1528987584,null],[1528987587,null],[1528987591,null],[1528987594,null],[1528987598,null],[1528987602,[7,54,328,567,587,890,1193,1496,1739,1800]],[1528987605,[7251,7251,7251,7251,7251,7251,7251,7251,7251,7251]],[1528987609,null],[1528987612,null],[1528987616,[562,3405,6249,9092,9661,10229,10798,11367,11822,11936]],[1528987620,[9,122,123,719,721,724,726,729,731,732]],[1528987623,[9,29,171,536,591,723,1011,1353,1649,1723]],[1528987627,[506,1100,1694,6354,7286,8218,9150,10082,10828,11015]],[1528987630,null],[1528987634,[503,528,553,3218,3751,4284,4817,5350,5777,5884]],[1528987638,[10,64,307,519,546,5111,9677,14243,17895,18809]],[1528987641,[9,82,150,627,899,1171,1441,1712,1928,1983]],[1528987645,null],[1528987648,[596,596,596,596,596,596,596,596,596,596]],[1528987652,[13638,13638,13638,13638,13638,13638,13638,13638,13638,13638]],[1528987656,[420,2987,5555,8123,8636,9150,9663,10177,10588,10691]],[1528987659,[1669,1669,1669,1669,1669,1669,1669,1669,1669,1669]],[1528987663,null],[1528987666,[1614,1614,1614,1614,1614,1614,1614,1614,1614,1614]],[1528987670,[7,13,176,501,1308,2116,2923,3731,4377,4539]],[1528987674,[9,99,520,903,1269,1634,1883,2113,2297,2343]],[1528987677,null],[1528987681,null],[1528987684,[129,655,793,1860,2160,2461,2762,3063,3303,3364]],[1528987688,[8,145,561,1584,1919,5852,9786,13719,16866,17653]],[1528987692,[500,917,1335,7674,8942,10210,11478,12746,13760,14014]],[1528987695,[10,162,656,777,798,1018,1238,1458,1634,1678]],[1528987699,[1437,1437,1437,1437,1437,1437,1437,1437,1437,1437]],[1528987702,null],[1528987706,[9,99,527,551,552,1874,5834,9795,12963,13756]],[1528987710,[1591,1591,1591,1591,1591,1591,1591,1591,1591,1591]],[1528987713,[31,116,223,637,724,811,5666,11316,15836,16966]],[1528987717,[318,770,1223,1676,1766,1857,1947,2038,2110,2129]],[1528987720,null],[1528987724,[1735,1735,1735,1735,1735,1735,1735,1735,1735,1735]],[1528987727,null],[1528987731,null],[1528987735,[1408,1408,1408,1408,1408,1408,1408,1408,1408,1408]],[1528987738,[10,54,310,566,594,1791,2989,4186,5144,5384]],[1528987742,[7,46,366,704,745,986,1227,1468,1660,1709]],[1528987745,[522,3715,6909,10102,10741,11379,12018,12657,13168,13296]],[1528987749,null],[1528987753,[11,77,513,1252,1614,2305,3656,5007,6087,6358]],[1528987756,[6,144,544,678,1017,1357,1594,1729,1837,1865]],[1528987760,[10,92,537,1046,1442,1838,6450,11765,16017,17080]],[1528987763,null],[1528987767,null],[1528987771,[152,767,1382,14099,16643,19186,21730,24273,26308,26817]],[1528987774,[10,27,487,571,808,1045,1283,1520,1710,1758]],[1528987778,null],[1528987781,[652,6077,11502,16927,18012,19097,20182,21267,22135,22353]],[1528987785,null],[1528987789,[7,47,310,571,599,909,1219,1529,1777,1839]],[1528987792,[467,1026,1586,5579,6377,7176,7974,8773,9412,9572]],[1528987796,[1673,1673,1673,1673,1673,1673,1673,1673,1673,1673]],[1528987799,[1656,4798,7941,11084,11712,12341,12969,13598,14101,14227]],[1528987803,[13,26,126,562,606,650,695,739,775,784]],[1528987807,[10143,10143,10143,10143,10143,10143,10143,10143,10143,10143]],[1528987810,null],[1528987814,null],[1528987817,[16,55,164,259,284,513,743,973,1157,1203]],[1528987821,null],[1528987825,null],[1528987828,[1706,1706,1706,1706,1706,1706,1706,1706,1706,1706]],[1528987832,[3606,3606,3606,3606,3606,3606,3606,3606,3606,3606]],[1528987835,[439,560,2607,6014,6573,7133,7692,8252,8700,8812]],[1528987839,null],[1528987843,null],[1528987846,[9,21,96,481,500,526,565,917,1325,1428]],[1528987850,[639,717,747,961,1087,1213,1339,1465,1566,1592]],[1528987853,[654,1121,1588,5705,6528,7351,8175,8998,9657,9822]],[1528987857,null],[1528987861,[698,2902,5106,7310,7750,8191,8632,9073,9425,9514]],[1528987864,[554,4014,7474,10934,11626,12318,13010,13702,14256,14395]],[1528987868,[8,48,323,497,498,738,979,1219,1411,1460]],[1528987871,null],[1528987875,[481,1594,2708,9739,11145,12552,13958,15364,16489,16771]],[1528987879,[18,18,73,219,273,328,382,436,480,491]],[1528987882,[486,783,1081,1378,1438,1497,1557,1616,1664,1676]],[1528987886,null],[1528987889,[10,52,163,172,176,417,659,900,1093,1142]],[1528987893,[1999,1999,1999,1999,1999,1999,1999,1999,1999,1999]],[1528987897,[583,583,583,583,583,583,583,583,583,583]],[1528987900,[14826,14826,14826,14826,14826,14826,14826,14826,14826,14826]],[1528987904,[8,11,65,202,253,305,356,407,448,459]],[1528987907,[350,449,1064,2384,2826,3268,3711,4153,4507,4596]],[1528987911,[10,52,137,647,927,1156,1285,1413,1516,1542]],[1528987915,null],[1528987918,[447,943,1440,1936,2035,2135,2234,2333,2413,2433]],[1528987922,[9,50,317,510,521,756,992,1227,1415,1463]],[1528987925,[423,473,6556,16005,18035,20065,22094,24124,25748,26154]],[1528987929,[622,622,622,622,622,622,622,622,622,622]],[1528987933,[8,54,194,688,850,1281,1712,2143,2487,2574]],[1528987936,null],[1528987940,[8,93,314,815,1163,1511,8258,16072,22324,23887]],[1528987943,null],[1528987947,null],[1528987951,[5083,5083,5083,5083,5083,5083,5083,5083,5083,5083]],[1528987954,[1548,1548,1548,1548,1548,1548,1548,1548,1548,1548]],[1528987958,[9,43,282,478,486,889,1292,1695,2017,2098]],[1528987961,[371,1132,1893,2654,2806,2958,3110,3262,3384,3415]],[1528987965,null],[1528987968,[7,146,229,1089,1441,1794,7300,17958,26485,28617]],[1528987972,null],[1528987976,[494,665,837,1008,1042,1077,1111,1145,1173,1180]],[1528987979,[116,680,1245,1810,1923,2036,2149,2262,2352,2375]],[1528987983,[9,51,493,503,819,1135,1451,1767,2020,2084]],[1528987986,null],[1528987990,[622,2048,3474,11444,13038,14632,16226,17820,19095,19414]],[1528987994,[5402,5402,5402,5402,5402,5402,5402,5402,5402,5402]],[1528987997,null],[1528988001,[11,32,123,500,518,554,704,1250,1687,1797]],[1528988004,[106,291,476,661,698,735,772,808,838,846]],[1528988008,[403,6081,11759,17437,18573,19709,20844,21980,22888,23116]],[1528988012,[6,12,142,147,151,156,161,166,170,171]],[1528988015,[1103,1103,1103,1103,1103,1103,1103,1103,1103,1103]],[1528988019,[677,1122,1568,6263,7202,8141,9080,10019,10771,10959]],[1528988022,null],[1528988026,[396,869,1343,5980,6907,7834,8762,9689,10431,10617]],[1528988030,null],[1528988033,[14,19,172,555,811,1067,1324,1580,1785,1837]],[1528988037,[9,48,341,698,750,1044,1339,1634,1870,1929]],[1528988040,[471,966,1462,1958,2057,2156,2255,2354,2434,2454]],[1528988044,null],[1528988048,null],[1528988051,[7,12,139,1113,1206,1299,1392,1484,1559,1578]],[1528988055,[11,283,603,950,1390,1831,5105,11213,16099,17321]],[1528988058,[117,626,1227,6295,9077,11859,14641,17423,19648,20205]],[1528988062,[9,18,216,282,405,527,651,773,872,897]],[1528988066,[2188,2188,2188,2188,2188,2188,2188,2188,2188,2188]],[1528988069,[349,442,2465,7493,9314,11136,12957,14778,16235,16600]],[1528988073,null],[1528988076,[987,2744,4502,6259,6611,6962,7314,7665,7946,8017]],[1528988080,[1351,1351,1351,1351,1351,1351,1351,1351,1351,1351]],[1528988084,[2932,2932,2932,2932,2932,2932,2932,2932,2932,2932]],[1528988087,[11,384,562,900,1072,1243,1415,1586,1723,1758]],[1528988091,null],[1528988094,null],[1528988098,[1995,2069,2143,2217,2232,2247,2262,2277,2289,2292]],[1528988102,[87,103,120,137,140,143,147,150,153,154]],[1528988105,[21,536,586,1441,1722,1755,1789,1823,1850,1857]],[1528988109,[1350,1350,1350,1350,1350,1350,1350,1350,1350,1350]],[1528988112,[1619,1619,1619,1619,1619,1619,1619,1619,1619,1619]],[1528988116,[8,21,74,240,310,380,450,520,576,591]],[1528988120,[429,680,931,1182,1232,1282,1332,1382,1422,1433]],[1528988123,[8,96,448,901,1070,1161,1206,5668,10023,11112]],[1528988127,[13,78,303,782,877,972,1155,1353,1512,1552]],[1528988130,[5767,5767,5767,5767,5767,5767,5767,5767,5767,5767]],[1528988134,[820,1006,1192,3737,4246,4755,5264,5772,6180,6282]],[1528988138,[457,2594,4731,10299,11413,12526,13640,14754,15645,15868]],[1528988141,[1844,1844,1844,1844,1844,1844,1844,1844,1844,1844]],[1528988145,null],[1528988148,null],[1528988152,null],[1528988156,null],[1528988159,[12,19,160,542,6037,11532,17027,22522,26918,28018]],[1528988163,[26560,26560,26560,26560,26560,26560,26560,26560,26560,26560]],[1528988166,[27035,27035,27035,27035,27035,27035,27035,27035,27035,27035]],[1528988170,null],[1528988174,null],[1528988177,null],[1528988181,[12,15,73,1932,3014,4096,5178,6260,7125,7342]],[1528988184,null],[1528988188,[7,84,513,835,1025,1176,1248,1319,1377,1392]],[1528988191,[27,46,180,546,597,763,1158,1553,1869,1949]],[1528988195,null],[1528988199,null],[1528988202,[826,1375,1925,2475,2585,2695,2805,2915,3003,3025]],[1528988206,[11,86,590,767,829,1075,1692,2308,2801,2925]],[1528988209,[215,497,652,12969,14219,15470,16721,17972,18972,19223]],[1528988213,null],[1528988217,[237,237,237,237,237,237,237,237,237,237]],[1528988220,null],[1528988224,[4555,4555,4555,4555,4555,4555,4555,4555,4555,4555]],[1528988227,null],[1528988231,null],[1528988235,null],[1528988238,null],[1528988242,null],[1528988245,null],[1528988249,[20,40,61,82,86,90,94,98,102,103]],[1528988253,[129,130,131,132,132,132,132,132,132,133]],[1528988256,null],[1528988260,null],[1528988263,null],[1528988267,null],[1528988271,[77,302,527,752,797,841,887,932,968,977]],[1528988274,[1188,1188,1188,1188,1188,1188,1188,1188,1188,1188]],[1528988278,[2120,2120,2120,2120,2120,2120,2120,2120,2120,2120]],[1528988281,[730,4307,7884,11461,12176,12891,13607,14322,14894,15038]],[1528988285,null],[1528988289,[6,35,247,466,491,895,1299,1703,2027,2108]],[1528988292,[9,18,179,194,332,471,609,748,859,887]],[1528988296,null],[1528988299,[564,840,1116,1392,1447,1502,1557,1612,1656,1668]],[1528988303,null],[1528988307,[903,903,903,903,903,903,903,903,903,903]],[1528988310,[7,253,487,1197,1420,3080,4741,6402,7730,8063]],[1528988314,null],[1528988317,[17,46,143,195,207,561,915,1269,1552,1623]],[1528988321,[1653,1653,1653,1653,1653,1653,1653,1653,1653,1653]],[1528988325,[525,7674,14824,21973,23403,24833,26263,27693,28837,29123]],[1528988328,[6,74,335,485,507,508,510,512,513,514]],[1528988332,[5,60,511,1505,1647,1789,5589,13048,19015,20507]],[1528988335,null],[1528988339,[540,6100,11660,17220,18332,19444,20556,21668,22557,22780]],[1528988343,[685,13444,26203,38962,41513,44065,46617,49169,51210,51721]],[1528988346,[8,52,352,694,738,928,1118,1308,1460,1498]],[1528988350,[12,50,124,593,620,766,1148,1530,1836,1913]],[1528988353,[563,563,563,563,563,563,563,563,563,563]],[1528988357,null],[1528988361,null],[1528988364,null],[1528988368,[731,6313,11895,17477,18594,19710,20827,21943,22836,23060]],[1528988371,null],[1528988375,null],[1528988379,[5312,5312,5312,5312,5312,5312,5312,5312,5312,5312]],[1528988382,[1784,1784,1784,1784,1784,1784,1784,1784,1784,1784]],[1528988386,[6,13,58,235,372,508,537,548,556,559]],[1528988389,[11,195,470,615,757,899,1587,2366,2989,3145]],[1528988393,[495,5794,11094,16393,17453,18513,19573,20633,21481,21693]],[1528988397,null],[1528988400,[695,807,4603,10294,11454,12614,13774,14934,15862,16094]],[1528988404,null],[1528988407,null],[1528988411,null],[1528988415,[1863,1863,1863,1863,1863,1863,1863,1863,1863,1863]],[1528988418,null],[1528988422,null],[1528988425,null],[1528988429,[2185,2185,2185,2185,2185,2185,2185,2185,2185,2185]],[1528988432,[11,60,351,703,755,1443,2132,2821,3372,3510]],[1528988436,[3550,3550,3550,3550,3550,3550,3550,3550,3550,3550]],[1528988440,[676,15332,29989,44646,47577,50508,53440,56371,58716,59303]],[1528988443,null],[1528988447,null],[1528988450,[28,74,704,1271,1284,1420,1557,1693,1802,1830]],[1528988454,[8,71,340,603,615,627,632,636,640,641]],[1528988458,[17,39,295,624,844,1232,1355,1717,2310,2459]],[1528988461,[1283,1394,1506,1618,1640,1662,1685,1707,1725,1730]],[1528988465,[712,712,712,712,712,712,712,712,712,712]],[1528988468,null],[1528988472,null],[1528988476,[760,9731,18703,27674,29468,31263,33057,34851,36287,36646]],[1528988479,null],[1528988483,null],[1528988486,null],[1528988490,null],[1528988494,null],[1528988497,null],[1528988501,null],[1528988504,null],[1528988508,null],[1528988512,null],[1528988515,null],[1528988519,null],[1528988522,null],[1528988526,null],[1528988530,[2204,2204,2204,2204,2204,2204,2204,2204,2204,2204]],[1528988533,null],[1528988537,null],[1528988540,null],[1528988544,[17,263,833,1627,1977,2321,2654,2986,3252,3319]],[1528988548,[2733,2733,2733,2733,2733,2733,2733,2733,2733,2733]],[1528988551,[1325,11779,22234,32688,34779,36870,38961,41052,42724,43143]],[1528988555,[14,145,591,976,1087,1366,1645,1924,2148,2204]],[1528988558,null],[1528988562,[7,14,451,785,903,908,914,1338,1678,1763]],[1528988566,[10,17,185,448,613,1024,1577,4457,7175,7855]],[1528988569,[177,177,177,177,177,177,177,177,177,177]],[1528988573,[715,5125,9536,13947,14829,15711,16593,17475,18181,18358]],[1528988576,[869,8871,16874,24877,26477,28078,29678,31279,32559,32880]],[1528988580,null],[1528988584,[527,5033,9539,14045,14946,15847,16748,17649,18370,18551]],[1528988587,[421,421,421,421,421,421,421,421,421,421]],[1528988591,[20345,20345,20345,20345,20345,20345,20345,20345,20345,20345]],[1528988594,null],[1528988598,[2141,2141,2141,2141,2141,2141,2141,2141,2141,2141]],[1528988602,null],[1528988605,[1273,1273,1273,1273,1273,1273,1273,1273,1273,1273]],[1528988609,[7,19,619,698,868,1038,1208,1377,1514,1548]],[1528988612,[1378,1378,1378,1378,1378,1378,1378,1378,1378,1378]],[1528988616,[23624,23624,23624,23624,23624,23624,23624,23624,23624,23624]],[1528988620,[1936,1936,1936,1936,1936,1936,1936,1936,1936,1936]],[1528988623,null],[1528988627,[3305,3305,3305,3305,3305,3305,3305,3305,3305,3305]],[1528988630,[2167,2167,2167,2167,2167,2167,2167,2167,2167,2167]],[1528988634,[12,18,69,375,530,685,839,994,1118,1149]],[1528988638,[8,116,457,522,529,649,998,1345,1624,1694]],[1528988641,[7,15,74,203,248,292,336,380,416,425]],[1528988645,null],[1528988648,[21,59,197,460,1039,1619,2199,2779,3243,3359]],[1528988652,null],[1528988656,[459,459,459,459,459,459,459,459,459,459]],[1528988659,null],[1528988663,null],[1528988666,[10,14,19,71,81,91,102,112,120,123]],[1528988670,null],[1528988673,null],[1528988677,null],[1528988681,null],[1528988684,[1202,1202,1202,1202,1202,1202,1202,1202,1202,1202]],[1528988688,[14,15,17,901,1077,1254,1431,1608,1749,1785]],[1528988691,[210,210,210,210,210,210,210,210,210,210]],[1528988695,null],[1528988699,null],[1528988702,null],[1528988706,null],[1528988709,null],[1528988713,null],[1528988717,null],[1528988720,null],[1528988724,[570,570,570,570,570,570,570,570,570,570]],[1528988727,null],[1528988731,null],[1528988735,null],[1528988738,null],[1528988742,null],[1528988745,null],[1528988749,null],[1528988753,null],[1528988756,null],[1528988760,null],[1528988763,null],[1528988767,null],[1528988771,null],[1528988774,null],[1528988778,null],[1528988781,null],[1528988785,null],[1528988789,null],[1528988792,null],[1528988796,null],[1528988799,null],[1528988803,[6745,6745,6745,6745,6745,6745,6745,6745,6745,6745]],[1528988807,null],[1528988810,null],[1528988814,[33,128,578,916,928,1040,1355,1670,1922,1985]],[1528988817,[16,112,464,845,1104,1363,3163,5221,6867,7279]],[1528988821,[14,36,235,480,504,509,514,519,523,525]],[1528988825,[403,485,4343,6645,10433,14222,18010,21799,24830,25588]],[1528988828,null],[1528988832,null],[1528988835,null],[1528988839,null],[1528988843,null],[1528988846,[1431,1431,1431,1431,1431,1431,1431,1431,1431,1431]],[1528988850,[1541,1541,1541,1541,1541,1541,1541,1541,1541,1541]],[1528988853,[9,37,268,464,478,774,1071,1367,1604,1664]],[1528988857,null],[1528988861,[1921,1921,1921,1921,1921,1921,1921,1921,1921,1921]],[1528988864,[8,15,147,648,661,775,889,1311,1648,1733]],[1528988868,[549,4851,9154,13456,14317,15177,16038,16898,17586,17759]],[1528988871,[18,70,348,605,634,864,1094,1324,1508,1554]],[1528988875,[1124,5983,10843,15703,16675,17647,18619,19591,20368,20563]],[1528988879,[55,160,178,691,5107,9522,13939,18354,21887,22771]],[1528988882,[1846,1846,1846,1846,1846,1846,1846,1846,1846,1846]],[1528988886,[9364,9364,9364,9364,9364,9364,9364,9364,9364,9364]],[1528988889,null],[1528988893,null],[1528988897,null],[1528988900,null],[1528988904,[8,137,360,540,541,541,542,543,543,544]],[1528988907,null],[1528988911,null],[1528988914,null],[1528988918,[524,4327,8131,11934,12695,13455,14216,14977,15585,15738]],[1528988922,null],[1528988925,[1614,1614,1614,1614,1614,1614,1614,1614,1614,1614]],[1528988929,null],[1528988932,[8,13,169,523,577,588,599,1418,2073,2237]],[1528988936,null],[1528988940,[663,663,663,663,663,663,663,663,663,663]],[1528988943,[12,99,446,967,1524,2082,3628,5339,6707,7050]],[1528988947,[16,135,151,177,233,290,346,403,448,460]],[1528988950,[483,510,538,4912,5786,6661,7536,8411,9111,9286]],[1528988954,null],[1528988958,null],[1528988961,[500,2091,3682,5273,5591,5909,6227,6545,6800,6864]],[1528988965,null],[1528988968,[1831,1831,1831,1831,1831,1831,1831,1831,1831,1831]],[1528988972,null],[1528988976,null],[1528988979,[8,80,553,1024,1277,1472,1547,1623,1683,1699]],[1528988983,[1465,1465,1465,1465,1465,1465,1465,1465,1465,1465]],[1528988986,[596,3502,6409,9316,9897,10478,11060,11641,12106,12223]],[1528988990,null],[1528988994,[13,50,312,566,599,836,1074,1312,1502,1550]],[1528988997,null],[1528989001,[9,10,67,225,286,347,408,469,518,531]],[1528989004,[835,1011,1188,1365,1400,1435,1471,1506,1534,1542]],[1528989008,[634,4497,8361,12225,12998,13770,14543,15316,15934,16089]],[1528989012,[10,14,119,144,155,163,171,442,706,772]],[1528989015,null],[1528989019,[409,498,3788,9405,10820,12235,13649,15064,16196,16479]],[1528989022,[640,2919,5199,7479,7935,8391,8847,9303,9667,9759]],[1528989026,null],[1528989030,[1442,1442,1442,1442,1442,1442,1442,1442,1442,1442]],[1528989033,null],[1528989037,[1537,1537,1537,1537,1537,1537,1537,1537,1537,1537]],[1528989040,null],[1528989044,null],[1528989048,[8,11,246,461,477,493,509,525,538,542]],[1528989051,[1557,1557,1557,1557,1557,1557,1557,1557,1557,1557]],[1528989055,[7,12,139,332,466,703,940,1323,1630,1707]],[1528989058,[419,439,1374,1574,3329,5084,6839,8594,9998,10349]],[1528989062,[519,1037,1555,1561,1562,1564,1565,1566,1567,1568]],[1528989066,[13,82,450,795,823,981,1139,1297,1423,1455]],[1528989069,null],[1528989073,[732,1040,1348,1656,1718,1780,1841,1903,1952,1965]],[1528989076,null],[1528989080,[8,99,185,660,676,692,1563,2576,3386,3589]],[1528989084,[474,5312,10150,14988,15955,16923,17890,18858,19632,19826]],[1528989087,[1614,1614,1614,1614,1614,1614,1614,1614,1614,1614]],[1528989091,[12,44,354,668,693,989,1286,1583,1820,1880]],[1528989094,[1545,1545,1545,1545,1545,1545,1545,1545,1545,1545]],[1528989098,[644,1070,1497,17089,20208,23326,26445,29563,32058,32682]],[1528989102,null],[1528989105,null],[1528989109,[7,12,127,465,518,582,635,989,1595,1747]],[1528989112,[156,356,557,758,798,838,878,918,950,959]],[1528989116,[11,123,191,797,1210,1623,7701,14724,20343,21748]],[1528989120,[528,528,528,528,528,528,528,528,528,528]],[1528989123,[467,6425,12384,12818,12905,12992,13079,13166,13235,13253]],[1528989127,null],[1528989130,null],[1528989134,[575,575,575,575,575,575,575,575,575,575]],[1528989138,[1211,2651,4092,5533,5821,6109,6397,6685,6916,6974]],[1528989141,null],[1528989145,null],[1528989148,null],[1528989152,null],[1528989155,[13,47,158,172,174,342,510,678,813,847]],[1528989159,[481,1954,3428,4902,5197,5491,5786,6081,6317,6376]],[1528989163,[1430,1430,1430,1430,1430,1430,1430,1430,1430,1430]],[1528989166,[8,100,541,1448,1448,1448,1510,1583,1642,1657]],[1528989170,null],[1528989173,[10,44,172,532,668,882,1191,2869,5151,5722]],[1528989177,[10,11,68,137,144,152,160,168,174,176]],[1528989181,[134,712,1290,1849,1960,2072,2184,2296,2385,2408]],[1528989184,[533,722,2013,7503,10061,12619,15176,17734,19780,20292]],[1528989188,[579,4192,7805,11418,12140,12863,13585,14308,14886,15031]],[1528989191,[1325,1325,1325,1325,1325,1325,1325,1325,1325,1325]],[1528989195,[25,54,137,193,212,342,472,602,706,733]],[1528989199,null],[1528989202,[9,47,148,178,185,413,641,869,1051,1097]],[1528989206,null],[1528989209,[551,1106,1452,2352,2796,3239,3683,4127,4482,4571]],[1528989213,null],[1528989217,[431,1830,3229,4628,4908,5188,5468,5748,5972,6028]],[1528989220,[12,49,316,614,657,903,1150,1396,1593,1643]],[1528989224,[534,534,534,534,534,534,534,534,534,534]],[1528989227,[14994,14994,14994,14994,14994,14994,14994,14994,14994,14994]],[1528989231,[10,44,155,169,170,395,621,846,1026,1072]],[1528989235,[1525,1525,1525,1525,1525,1525,1525,1525,1525,1525]],[1528989238,null],[1528989242,[1272,1272,1272,1272,1272,1272,1272,1272,1272,1272]],[1528989245,[12,64,423,878,1064,1749,3432,5115,6462,6799]],[1528989249,[492,737,983,1228,1277,1326,1375,1424,1464,1474]],[1528989253,[17,88,168,490,678,841,953,1065,1154,1177]],[1528989256,null],[1528989260,[8,40,127,188,207,275,344,412,467,481]],[1528989263,[13,123,270,697,782,875,2358,8707,13787,15057]],[1528989267,[2101,3263,4425,7419,8018,8617,9216,9815,10294,10414]],[1528989271,null],[1528989274,[2374,2374,2374,2374,2374,2374,2374,2374,2374,2374]],[1528989278,null],[1528989281,[1472,1472,1472,1472,1472,1472,1472,1472,1472,1472]],[1528989285,[10241,10241,10241,10241,10241,10241,10241,10241,10241,10241]],[1528989289,[10,50,285,536,577,1318,2060,2802,3395,3544]],[1528989292,[9,40,124,520,538,620,831,1040,1208,1251]],[1528989296,[14,83,150,188,197,451,705,959,1163,1214]],[1528989299,null],[1528989303,[655,2396,4138,5879,6227,6576,6924,7272,7551,7621]],[1528989307,[18062,18062,18062,18062,18062,18062,18062,18062,18062,18062]],[1528989310,[489,525,869,4280,6128,7975,9823,11671,13149,13519]],[1528989314,[18139,18139,18139,18139,18139,18139,18139,18139,18139,18139]],[1528989317,[10,50,321,521,533,796,1059,1322,1533,1586]],[1528989321,[14,53,157,163,165,357,550,743,897,936]],[1528989325,null],[1528989328,[627,1067,1507,8786,10241,11697,13153,14609,15773,16065]],[1528989332,[579,1711,2844,3977,4203,4430,4656,4883,5064,5110]],[1528989335,null],[1528989339,null],[1528989343,[13,48,152,166,170,329,488,647,775,807]],[1528989346,[4123,4123,4123,4123,4123,4123,4123,4123,4123,4123]],[1528989350,null],[1528989353,[551,1144,1737,2330,2449,2568,2686,2805,2900,2924]],[1528989357,[1401,1401,1401,1401,1401,1401,1401,1401,1401,1401]],[1528989361,null],[1528989364,[16,18,86,237,286,336,386,436,476,486]],[1528989368,[10,101,474,524,549,688,1053,1417,1709,1782]],[1528989371,[483,3735,6988,10240,10891,11541,12192,12842,13362,13493]],[1528989375,[1466,1526,1587,1648,1660,1672,1684,1696,1706,1709]],[1528989379,[9,16,132,148,274,555,810,972,1102,1135]],[1528989382,[645,700,1445,4662,6378,7575,7737,7899,8028,8061]],[1528989386,null],[1528989389,null],[1528989393,[16,49,143,213,234,446,658,870,1039,1082]],[1528989396,null],[1528989400,[17,137,308,799,3216,8497,13728,18789,22838,23851]],[1528989404,null],[1528989407,[401,1259,2117,2975,3147,3319,3490,3662,3799,3834]],[1528989411,[1719,1719,1719,1719,1719,1719,1719,1719,1719,1719]],[1528989414,null],[1528989418,[20,27,111,561,568,576,583,591,597,599]],[1528989422,[1759,1759,1759,1759,1759,1759,1759,1759,1759,1759]],[1528989425,[562,1244,1927,3609,3945,4281,4618,4954,5223,5291]],[1528989429,[12,63,183,197,198,381,565,748,895,932]],[1528989432,null],[1528989436,null],[1528989440,[3979,3979,3979,3979,3979,3979,3979,3979,3979,3979]],[1528989443,[13,103,168,805,1208,1612,5719,10443,14223,15168]],[1528989447,[2785,2785,2785,2785,2785,2785,2785,2785,2785,2785]],[1528989450,[11,14,75,158,172,186,200,214,226,229]],[1528989454,[8,108,165,642,762,882,947,1003,1047,1059]],[1528989458,null],[1528989461,[475,869,1263,1657,1735,1814,1893,1972,2035,2051]],[1528989465,[547,1649,4214,8903,10399,11894,13390,14885,16081,16381]],[1528989468,[15,58,303,611,666,855,1044,1233,1385,1423]],[1528989472,[412,412,412,412,412,412,412,412,412,412]],[1528989476,[575,2910,5246,7581,8048,8515,8982,9449,9823,9917]],[1528989479,[14,81,427,1264,1632,2388,3921,5453,6679,6986]],[1528989483,null],[1528989486,null],[1528989490,null],[1528989494,[1514,1517,1520,1523,1523,1524,1524,1525,1525,1526]],[1528989497,[9,15,120,140,141,147,153,612,979,1071]],[1528989501,[640,832,1024,10124,11944,13764,15584,17404,18860,19224]],[1528989504,[476,4086,7697,11308,12030,12752,13474,14196,14774,14919]],[1528989508,[5463,5481,5500,5518,5522,5525,5529,5533,5536,5537]],[1528989512,[10,33,106,161,176,365,555,744,896,934]],[1528989515,[1925,1925,1925,1925,1925,1925,1925,1925,1925,1925]],[1528989519,[437,1912,3388,4863,5158,5453,5748,6043,6279,6339]],[1528989522,[13,59,291,448,452,2394,4336,6278,7832,8221]],[1528989526,null],[1528989530,[416,1626,2837,4047,4289,4531,4773,5015,5209,5258]],[1528989533,[10,38,125,137,140,355,570,785,957,1001]],[1528989537,[467,467,467,467,467,467,467,467,467,467]],[1528989540,[12958,12958,12958,12958,12958,12958,12958,12958,12958,12958]],[1528989544,[2059,2059,2059,2059,2059,2059,2059,2059,2059,2059]],[1528989548,null],[1528989551,[516,948,1381,8847,10340,11834,13327,14820,16015,16314]],[1528989555,[8,14,80,160,170,179,189,198,206,208]],[1528989558,[194,408,623,838,881,924,967,1010,1044,1053]],[1528989562,[1518,1518,1518,1518,1518,1518,1518,1518,1518,1518]],[1528989566,[9,15,306,561,576,1171,2096,2366,2465,2490]],[1528989569,null],[1528989573,[1679,2946,4214,5482,5735,5989,6242,6496,6699,6750]],[1528989576,[426,546,3603,8130,9036,9942,10848,11754,12478,12660]],[1528989580,[10,102,469,874,1226,1579,7061,13398,18468,19736]],[1528989584,null],[1528989587,[769,7056,13343,19630,20887,22144,23402,24659,25665,25917]],[1528989591,[2022,2022,2022,2022,2022,2022,2022,2022,2022,2022]],[1528989594,[17,43,139,198,211,363,516,668,790,821]],[1528989598,null],[1528989602,null],[1528989605,null],[1528989609,[190,567,945,1323,1398,1474,1549,1625,1685,1701]],[1528989612,[12,82,305,929,1219,1472,1557,1864,2262,2362]],[1528989616,null],[1528989620,[7,39,142,189,200,370,540,710,846,881]],[1528989623,[492,519,546,573,578,583,589,594,598,600]],[1528989627,[5932,7474,9016,10558,10867,11175,11484,11792,12039,12101]],[1528989630,[451,1467,2483,3499,3703,3906,4109,4312,4475,4516]],[1528989634,[1817,1817,1817,1817,1817,1817,1817,1817,1817,1817]],[1528989637,null],[1528989641,null],[1528989645,null],[1528989648,[1661,1661,1661,1661,1661,1661,1661,1661,1661,1661]],[1528989652,[2210,2210,2210,2210,2210,2210,2210,2210,2210,2210]],[1528989655,[11,13,150,480,482,531,580,1114,1542,1649]],[1528989659,null],[1528989663,[1578,1578,1578,1578,1578,1578,1578,1578,1578,1578]],[1528989666,null],[1528989670,[8,101,186,645,809,973,1090,1198,1285,1307]],[1528989673,[14602,14602,14602,14602,14602,14602,14602,14602,14602,14602]],[1528989677,[9,62,138,580,672,734,797,3262,5234,5728]],[1528989681,[8,105,201,587,707,827,1034,1255,1432,1477]],[1528989684,[481,529,7057,16247,17855,19462,21069,22676,23962,24284]],[1528989688,[392,1257,2122,2987,3160,3333,3506,3679,3818,3853]],[1528989691,null],[1528989695,[416,1587,2758,3929,4163,4397,4631,4865,5053,5100]],[1528989699,null],[1528989702,null],[1528989706,[1752,1752,1752,1752,1752,1752,1752,1752,1752,1752]],[1528989709,null],[1528989713,[17,17,76,246,312,379,445,512,565,579]],[1528989717,[497,945,1393,1543,1573,1603,1633,1663,1687,1693]],[1528989720,null],[1528989724,[3946,3946,3946,3946,3946,3946,3946,3946,3946,3946]],[1528989727,[2179,2179,2179,2179,2179,2179,2179,2179,2179,2179]],[1528989731,null],[1528989735,[11,74,158,883,1313,1611,1648,1684,1712,1720]],[1528989738,[9,51,489,570,590,1191,8722,13355,15075,15505]],[1528989742,[2942,2942,2942,2942,2942,2942,2942,2942,2942,2942]],[1528989745,[7,11,478,586,649,975,1831,6757,12327,13720]],[1528989749,[477,477,477,477,477,477,477,477,477,477]],[1528989753,[492,3262,6032,8802,9356,9910,10464,11018,11462,11573]],[1528989756,[21601,21601,21601,21601,21601,21601,21601,21601,21601,21601]],[1528989760,null],[1528989763,[629,5775,10921,16067,17097,18126,19155,20184,21008,21214]],[1528989767,null],[1528989771,null],[1528989774,[1442,1573,1705,1836,1862,1889,1915,1941,1962,1968]],[1528989778,null],[1528989781,null],[1528989785,null],[1528989789,[9,14,177,199,200,231,262,777,1189,1292]],[1528989792,null],[1528989796,null],[1528989799,[641,1376,2112,7416,8477,9538,10599,11660,12508,12721]],[1528989803,[443,2847,5252,7657,8138,8619,9100,9581,9965,10062]],[1528989807,null],[1528989810,[11,208,944,1247,1283,1558,1833,2108,2328,2383]],[1528989814,null],[1528989817,null],[1528989821,[10,13,203,491,497,528,560,4489,7632,8418]],[1528989825,[699,6273,11848,17423,18538,19653,20768,21883,22775,22998]],[1528989828,[2096,2096,2096,2096,2096,2096,2096,2096,2096,2096]],[1528989832,[9,17,409,555,1729,2904,4079,5254,6194,6429]],[1528989835,[1351,2052,2754,9391,10719,12046,13374,14701,15763,16029]],[1528989839,[558,4087,7617,11146,11852,12558,13264,13970,14534,14676]],[1528989843,null],[1528989846,null],[1528989850,[12,27,211,483,534,663,836,1012,1154,1190]],[1528989853,[1217,1763,2309,2855,2965,3074,3183,3292,3380,3402]],[1528989857,[536,536,536,536,536,536,536,536,536,536]],[1528989861,[22224,22224,22224,22224,22224,22224,22224,22224,22224,22224]],[1528989864,null],[1528989868,[530,1213,1896,21210,25072,28935,32798,36661,39751,40524]],[1528989871,null],[1528989875,[14,44,475,547,617,688,759,830,886,901]],[1528989878,[6157,6157,6157,6157,6157,6157,6157,6157,6157,6157]],[1528989882,null],[1528989886,[4071,4071,4071,4071,4071,4071,4071,4071,4071,4071]],[1528989889,[643,3539,6435,9331,9911,10490,11069,11648,12112,12228]],[1528989893,[1845,2057,2270,2483,2525,2568,2610,2653,2687,2696]],[1528989896,[15,19,776,786,2137,3489,4840,6192,7273,7544]],[1528989900,null],[1528989904,[16,81,172,1340,1616,1952,2410,2868,3235,3327]],[1528989907,[8,25,84,132,133,1929,3726,5522,6959,7319]],[1528989911,[522,10829,21137,31444,33506,35567,37629,39690,41339,41752]],[1528989914,null],[1528989918,[1228,1228,1228,1228,1228,1228,1228,1228,1228,1228]],[1528989922,[516,1573,2630,3687,3899,4110,4322,4533,4702,4745]],[1528989925,[9,60,185,651,930,1190,1414,1638,1818,1863]],[1528989929,null],[1528989932,[17,57,452,503,535,568,601,634,660,667]],[1528989936,[2573,2573,2573,2573,2573,2573,2573,2573,2573,2573]],[1528989940,[4530,4530,4530,4530,4530,4530,4530,4530,4530,4530]],[1528989943,[9350,9350,9350,9350,9350,9350,9350,9350,9350,9350]],[1528989947,[1490,20670,39851,43273,43958,44642,45327,46011,46559,46696]],[1528989950,null],[1528989954,null],[1528989958,[4706,4706,4706,4706,4706,4706,4706,4706,4706,4706]],[1528989961,null],[1528989965,[8,49,162,1010,1292,1545,1799,2052,2255,2306]],[1528989968,null],[1528989972,null],[1528989976,[9,39,118,153,160,570,980,1390,1718,1800]],[1528989979,[461,461,461,461,461,461,461,461,461,461]],[1528989983,[40988,40988,40988,40988,40988,40988,40988,40988,40988,40988]],[1528989986,[2318,2318,2318,2318,2318,2318,2318,2318,2318,2318]],[1528989990,null],[1528989994,[8,91,160,881,1048,1216,1722,2285,2735,2848]],[1528989997,null],[1528990001,null],[1528990004,[518,1426,2335,13377,15585,17793,20002,22210,23977,24419]],[1528990008,null],[1528990012,null],[1528990015,null],[1528990019,[10,143,481,1456,2014,2748,3832,4916,5783,6000]],[1528990022,[2811,2811,2811,2811,2811,2811,2811,2811,2811,2811]],[1528990026,[7,39,303,502,508,748,988,1228,1420,1468]],[1528990030,[1782,1782,1782,1782,1782,1782,1782,1782,1782,1782]],[1528990033,[620,2123,3627,5131,5432,5732,6033,6334,6574,6635]],[1528990037,[9,10,141,149,657,1164,1673,2180,2587,2689]],[1528990040,[7,51,164,357,422,669,916,1163,1361,1411]],[1528990044,null],[1528990048,[408,483,7150,18120,20716,23312,25909,28505,30582,31102]],[1528990051,null],[1528990055,[1736,1736,1736,1736,1736,1736,1736,1736,1736,1736]],[1528990058,[684,684,684,684,684,684,684,684,684,684]],[1528990062,[22142,22142,22142,22142,22142,22142,22142,22142,22142,22142]],[1528990066,null],[1528990069,null],[1528990073,[3081,3081,3081,3081,3081,3081,3081,3081,3081,3081]],[1528990076,[8,49,154,170,174,428,683,937,1141,1192]],[1528990080,[8,93,298,480,483,835,1188,1540,1822,1893]],[1528990084,[1534,1534,1534,1534,1534,1534,1534,1534,1534,1534]],[1528990087,[432,4175,7918,11661,12410,13159,13907,14656,15255,15405]],[1528990091,[8,49,122,177,195,363,531,699,834,868]],[1528990094,null],[1528990098,[12,47,133,189,207,444,682,920,1110,1158]],[1528990102,[491,2565,4640,6714,7129,7544,7959,8374,8706,8789]],[1528990105,null],[1528990109,[565,838,1111,1384,1438,1493,1547,1602,1646,1657]],[1528990112,[420,7402,14384,14655,14709,14763,14817,14871,14915,14926]],[1528990116,[1426,1426,1426,1426,1426,1426,1426,1426,1426,1426]],[1528990119,null],[1528990123,[1843,1843,1843,1843,1843,1843,1843,1843,1843,1843]],[1528990127,[14,49,152,171,177,412,648,884,1072,1120]],[1528990130,[8,14,85,350,467,584,701,818,912,936]],[1528990134,[460,997,1534,1624,1642,1660,1678,1696,1710,1714]],[1528990137,[151,315,479,5416,6403,7390,8378,9365,10155,10353]],[1528990141,[8,14,154,469,521,554,587,1115,1538,1644]],[1528990145,[403,4244,8086,11927,12695,13464,14232,15000,15615,15769]],[1528990148,null],[1528990152,null],[1528990155,[9,67,152,533,759,950,1072,1193,1290,1315]],[1528990159,[491,4655,8820,12984,13817,14650,15483,16316,16982,17149]],[1528990163,[543,556,6707,15870,17680,19490,21300,23110,24558,24920]],[1528990166,null],[1528990170,[9,34,147,207,215,424,634,843,1011,1053]],[1528990173,[486,1007,1528,5937,6819,7701,8583,9465,10170,10347]],[1528990177,null],[1528990181,null],[1528990184,null],[1528990188,null],[1528990191,[11,42,148,159,159,381,604,827,1005,1050]],[1528990195,[1394,1501,1608,1715,1736,1757,1779,1800,1817,1822]],[1528990199,[395,1301,2207,4495,4953,5410,5868,6326,6692,6784]],[1528990202,null],[1528990206,[70,166,519,860,865,1350,1835,2320,2708,2805]],[1528990209,[11,14,110,628,634,641,647,654,659,661]],[1528990213,[8,15,125,540,607,671,872,1548,2089,2225]],[1528990217,[56,413,553,2251,3257,4263,5269,6275,7080,7282]],[1528990220,[1466,1466,1466,1466,1466,1466,1466,1466,1466,1466]],[1528990224,[12,76,160,428,588,714,773,832,880,892]],[1528990227,[749,6557,12366,17740,18815,19890,20965,22040,22900,23115]],[1528990231,[484,568,4416,9308,9951,10594,11237,11880,12394,12523]],[1528990235,null],[1528990238,[1496,1496,1496,1496,1496,1496,1496,1496,1496,1496]],[1528990242,null],[1528990245,null],[1528990249,null],[1528990253,null],[1528990256,[13,56,187,270,292,634,976,1318,1592,1661]],[1528990260,null],[1528990263,[1861,1906,1951,1996,2005,2014,2023,2032,2040,2042]],[1528990267,[9,34,299,507,511,807,1103,1399,1636,1696]],[1528990271,[25,99,411,709,740,1000,1260,1520,1728,1780]],[1528990274,[547,873,1200,2088,2265,2443,2620,2798,2940,2976]],[1528990278,[13642,13642,13642,13642,13642,13642,13642,13642,13642,13642]],[1528990281,[865,5646,10428,15210,16166,17122,18079,19035,19800,19992]],[1528990285,[8,11,148,474,482,560,678,1181,1652,1770]],[1528990289,null],[1528990292,[10,70,151,383,492,591,673,753,818,835]],[1528990296,[11056,11056,11056,11056,11056,11056,11056,11056,11056,11056]],[1528990299,[570,3892,7214,10536,11200,11864,12529,13193,13725,13858]],[1528990303,[599,2307,4016,5725,6067,6408,6750,7092,7365,7434]],[1528990307,null],[1528990310,[420,1263,2106,2949,3118,3287,3455,3624,3759,3793]],[1528990314,null],[1528990317,null],[1528990321,null],[1528990325,null],[1528990328,[1390,1438,1487,1574,1592,1609,1627,1644,1658,1662]],[1528990332,[8,12,110,155,160,166,173,570,888,968]],[1528990335,null],[1528990339,[7,17,129,611,797,984,1171,1358,1507,1545]],[1528990343,[452,723,995,1267,1321,1375,1430,1484,1528,1539]],[1528990346,[11,18,234,507,514,517,521,1620,2500,2720]],[1528990350,[8,75,486,668,805,943,1420,1953,2380,2487]],[1528990353,[542,2537,4533,9596,10609,11621,12634,13647,14457,14660]],[1528990357,null],[1528990360,[613,613,613,613,613,613,613,613,613,613]],[1528990364,[547,787,1027,9438,11120,12802,14484,16166,17512,17849]],[1528990368,[595,919,1244,4095,4665,5236,5806,6376,6832,6947]],[1528990371,null],[1528990375,null],[1528990378,null],[1528990382,[12,44,144,174,181,415,649,883,1071,1118]],[1528990386,null],[1528990389,[2206,2206,2206,2206,2206,2206,2206,2206,2206,2206]],[1528990393,[10,16,182,527,539,578,618,1138,1554,1659]],[1528990396,[634,1087,1540,7345,8506,9667,10828,11989,12918,13151]],[1528990400,[9,38,316,532,540,818,1096,1374,1597,1653]],[1528990404,[555,673,2427,6488,7897,9305,10714,12122,13249,13531]],[1528990407,[583,583,583,583,583,583,583,583,583,583]],[1528990411,[6369,6369,6369,6369,6369,6369,6369,6369,6369,6369]],[1528990414,[3361,3361,3361,3361,3361,3361,3361,3361,3361,3361]],[1528990418,null],[1528990422,[27,29,144,585,621,658,694,731,760,768]],[1528990425,[23,38,176,681,755,908,1218,1528,1776,1839]],[1528990429,null],[1528990432,[583,1160,1737,8397,9729,11061,12393,13725,14791,15058]],[1528990436,null],[1528990440,null],[1528990443,[10,165,488,960,1522,2083,2389,2652,2862,2915]],[1528990447,[4119,4119,4119,4119,4119,4119,4119,4119,4119,4119]],[1528990450,[1343,1343,1343,1343,1343,1343,1343,1343,1343,1343]],[1528990454,[13,108,165,559,699,839,2272,3921,5241,5571]],[1528990458,[9,11,140,629,821,1013,1205,1397,1551,1590]],[1528990461,[515,1956,3398,4839,5127,5416,5704,5992,6223,6281]],[1528990465,null],[1528990468,null],[1528990472,null],[1528990476,[451,502,4711,11667,13326,14985,16644,18303,19631,19963]],[1528990479,[9,38,135,577,596,652,708,1074,1366,1440]],[1528990483,null],[1528990486,[11,48,174,222,229,379,530,680,800,831]],[1528990490,[508,5887,11267,16647,17723,18799,19875,20951,21811,22027]],[1528990494,[474,951,1428,1905,2001,2096,2192,2287,2363,2383]],[1528990497,[1635,1635,1635,1635,1635,1635,1635,1635,1635,1635]],[1528990501,[563,1477,2392,3307,3490,3673,3856,4039,4185,4222]],[1528990504,null],[1528990508,null],[1528990512,null],[1528990515,[1775,1775,1775,1775,1775,1775,1775,1775,1775,1775]],[1528990519,[9,44,149,162,164,513,863,1212,1492,1562]],[1528990522,[1577,1577,1577,1577,1577,1577,1577,1577,1577,1577]],[1528990526,[7,12,71,248,321,393,466,538,596,611]],[1528990530,[330,434,1150,1980,2070,2160,2250,2340,2412,2430]],[1528990533,[8,65,148,652,950,1186,1297,1409,1498,1521]],[1528990537,null],[1528990540,[1364,1364,1364,1364,1364,1364,1364,1364,1364,1364]],[1528990544,[477,539,4594,11756,13633,15510,17386,19263,20764,21140]],[1528990548,null],[1528990551,null],[1528990555,[15,52,318,581,613,866,1119,1372,1575,1626]],[1528990558,[1464,1464,1464,1464,1464,1464,1464,1464,1464,1464]],[1528990562,[8,35,119,160,169,365,561,757,913,953]],[1528990566,null],[1528990569,[9,11,66,328,452,576,701,825,925,950]],[1528990573,[11,285,464,1121,1702,3995,6289,7091,7732,7893]],[1528990576,null],[1528990580,[1620,1620,1620,1620,1620,1620,1620,1620,1620,1620]],[1528990584,[539,3762,6986,10210,10855,11499,12144,12789,13305,13434]],[1528990587,null],[1528990591,null],[1528990594,[8,111,156,1051,1301,1551,5059,11825,17237,18591]],[1528990598,null],[1528990601,[9,41,294,502,514,734,954,1174,1350,1394]],[1528990605,null],[1528990609,[782,3402,6023,8644,9168,9692,10216,10740,11160,11265]],[1528990612,[985,2795,4605,6415,6777,7139,7501,7863,8153,8226]],[1528990616,[1489,1513,1538,1611,1625,1640,1654,1669,1681,1684]],[1528990619,[8,17,126,150,253,473,658,716,763,775]],[1528990623,[479,517,556,1122,1235,1349,1462,1575,1666,1689]],[1528990627,[467,7129,13791,20453,21786,23118,24451,25783,26849,27116]],[1528990630,[2304,2304,2304,2304,2304,2304,2304,2304,2304,2304]],[1528990634,[7,35,280,466,471,780,1090,1400,1648,1710]],[1528990637,null],[1528990641,null],[1528990645,[2200,2200,2200,2200,2200,2200,2200,2200,2200,2200]],[1528990648,[553,1009,1466,4738,5393,6047,6702,7356,7880,8011]],[1528990652,[9,83,428,1100,1426,1926,2775,3624,4303,4473]],[1528990655,[487,6417,12348,18278,19464,20650,21836,23022,23971,24209]],[1528990659,null],[1528990663,[10,82,453,2257,3308,4045,4157,4268,4356,4379]],[1528990666,null],[1528990670,null],[1528990673,[10,48,151,182,190,448,706,964,1170,1222]],[1528990677,null],[1528990681,[581,873,1165,1457,1516,1574,1633,1691,1738,1750]],[1528990684,[458,1251,2399,3671,3904,4138,4371,4605,4792,4839]],[1528990688,[9,39,314,635,679,1063,1447,1831,2139,2216]],[1528990691,null],[1528990695,[7,12,121,488,502,531,628,962,1230,1297]],[1528990699,[103,620,921,1715,2114,2512,2912,3310,3630,3710]],[1528990702,[450,4143,7837,11531,12270,13008,13747,14486,15077,15225]],[1528990706,null],[1528990709,[543,3187,5831,8475,9004,9533,10062,10591,11014,11120]],[1528990713,null],[1528990717,[1931,1931,1931,1931,1931,1931,1931,1931,1931,1931]],[1528990720,[1686,1686,1686,1686,1686,1686,1686,1686,1686,1686]],[1528990724,null],[1528990727,[13,82,502,1013,1292,1817,2834,3852,4666,4870]],[1528990731,[505,3356,6208,9059,9629,10200,10770,11340,11796,11911]],[1528990735,[10,56,300,452,459,747,1036,1324,1555,1613]],[1528990738,null],[1528990742,[2021,2021,2021,2021,2021,2021,2021,2021,2021,2021]],[1528990745,null],[1528990749,[780,1564,2348,2388,2396,2404,2412,2420,2426,2428]],[1528990753,[9,48,143,389,468,646,824,1002,1145,1181]],[1528990756,[11,23,129,615,631,669,708,1691,2477,2674]],[1528990760,null],[1528990763,[599,3027,5455,7883,8369,8855,9340,9826,10214,10312]],[1528990767,[638,1531,2425,9481,10892,12304,13715,15126,16255,16538]],[1528990771,[10,78,733,826,858,1070,1643,2216,2674,2789]],[1528990774,[1701,1701,1701,1701,1701,1701,1701,1701,1701,1701]],[1528990778,[6,92,643,1191,1785,2379,2691,2957,3169,3223]],[1528990781,null],[1528990785,[2555,2555,2555,2555,2555,2555,2555,2555,2555,2555]],[1528990789,[589,7632,14675,21718,23126,24535,25943,27352,28479,28761]],[1528990792,null],[1528990796,null],[1528990799,[47,182,743,1685,1708,2283,3964,5645,6990,7327]],[1528990803,[5810,5810,5810,5810,5810,5810,5810,5810,5810,5810]],[1528990807,null],[1528990810,null],[1528990814,[997,5168,9339,13510,14345,15179,16013,16847,17515,17682]],[1528990817,null],[1528990821,[15,67,181,340,397,497,714,1315,2059,2246]],[1528990825,[19,56,470,872,949,1272,1596,6924,11187,12253]],[1528990828,[770,4965,9161,13357,14196,15035,15874,16713,17385,17553]],[1528990832,null],[1528990835,null],[1528990839,[573,1175,1777,4436,4968,5500,6032,6564,6989,7096]],[1528990842,null],[1528990846,[935,3886,6838,9790,10380,10970,11561,12151,12623,12742]],[1528990850,null],[1528990853,null],[1528990857,[25,108,490,824,845,1402,1959,2516,2962,3074]],[1528990860,[28,42,94,526,659,717,776,835,882,894]],[1528990864,null],[1528990868,null],[1528990871,[1598,1598,1598,1598,1598,1598,1598,1598,1598,1598]],[1528990875,[682,1790,2899,4008,4230,4451,4673,4895,5072,5117]],[1528990878,[1458,1777,2097,2417,2481,2545,2609,2673,2724,2737]],[1528990882,null],[1528990886,[1687,1687,1687,1687,1687,1687,1687,1687,1687,1687]],[1528990889,[31,81,240,956,1183,1286,1389,1492,1574,1595]],[1528990893,[10,36,215,750,765,781,797,813,825,829]],[1528990896,[20,64,158,1180,1189,1197,1278,1612,1879,1946]],[1528990900,[597,705,1186,2970,3774,4578,5382,6186,6829,6990]],[1528990904,[2185,2185,2185,2185,2185,2185,2185,2185,2185,2185]],[1528990907,[758,3210,5663,8116,8606,9097,9587,10078,10470,10569]],[1528990911,[570,3047,5524,8001,8496,8991,9487,9982,10378,10478]],[1528990914,[882,3868,6855,9841,10438,11036,11633,12230,12708,12828]],[1528990918,null],[1528990922,[18,45,126,231,243,401,560,718,845,877]],[1528990925,[51,673,780,803,1116,1429,1743,2056,2307,2370]],[1528990929,[930,3431,5932,8433,8933,9433,9933,10433,10833,10934]],[1528990932,null],[1528990936,null],[1528990940,[1527,1659,1791,13807,16210,18614,21017,23420,25343,25824]],[1528990943,null],[1528990947,null],[1528990950,[94,233,442,912,1165,1377,1509,1640,1745,1772]],[1528990954,[2073,2073,2073,2073,2073,2073,2073,2073,2073,2073]],[1528990958,[108,122,147,1914,1927,1940,1953,1966,1976,1979]],[1528990961,[53,170,1232,1397,1489,1580,3786,6344,8390,8902]],[1528990965,[178,466,754,1042,1100,1158,1215,1273,1319,1331]],[1528990968,[3061,4819,6577,8335,8686,9038,9389,9741,10022,10093]],[1528990972,[44,101,344,765,884,1002,1121,1239,1334,1358]],[1528990976,[1237,1753,2270,2517,2567,2616,2666,2715,2755,2765]],[1528990979,[2636,2636,2636,2636,2636,2636,2636,2636,2636,2636]],[1528990983,null],[1528990986,[34,50,305,1200,1257,1314,1371,1428,1474,1486]],[1528990990,[1972,2881,3791,4701,4883,5065,5247,5429,5574,5611]],[1528990994,[2253,6789,11326,15863,16770,17677,18585,19492,20218,20400]],[1528990997,null],[1528991001,[1336,1336,1336,1336,1336,1336,1336,1336,1336,1336]],[1528991004,[2231,4705,7179,10619,11307,11995,12683,13371,13922,14060]],[1528991008,[10,52,399,697,717,937,1158,1379,1555,1600]],[1528991012,[291,506,721,936,979,1022,1065,1108,1142,1151]],[1528991015,[45,112,479,543,635,727,819,911,985,1004]]]);
var responseTimeChart = new Highcharts.StockChart({
chart: {
renderTo: 'container',
zoomType: 'x'
},
colors: ['#C4FD90', '#7FF77F', '#6FF2AD', '#60ECE5', '#51A8E7', '#4353E2', '#7335DC', '#BC28D7', '#D11C97', '#C73905', 'Orange'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: { baseSeries: 9 },
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Response Time (ms)',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responseTimePercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responseTimePercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responseTimePercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responseTimePercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responseTimePercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responseTimePercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responseTimePercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responseTimePercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responseTimePercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responseTimePercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responseTimeChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var container_requests = unpack([[1528987422,[0,0, 0]],[1528987425,[2,0, 2]],[1528987429,[4,0, 4]],[1528987433,[0,0, 0]],[1528987436,[3,0, 3]],[1528987440,[2,0, 2]],[1528987443,[2,0, 2]],[1528987447,[0,0, 0]],[1528987451,[1,0, 1]],[1528987454,[0,0, 0]],[1528987458,[1,0, 1]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[0,0, 0]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[2,0, 2]],[1528987486,[2,0, 2]],[1528987490,[0,0, 0]],[1528987494,[2,0, 2]],[1528987497,[3,0, 3]],[1528987501,[2,0, 2]],[1528987504,[1,0, 1]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[1,0, 1]],[1528987519,[0,0, 0]],[1528987522,[2,0, 2]],[1528987526,[1,0, 1]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[0,0, 0]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[4,0, 4]],[1528987566,[2,1, 1]],[1528987569,[4,0, 4]],[1528987573,[1,0, 1]],[1528987576,[1,0, 1]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[0,0, 0]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[2,0, 2]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[1,0, 1]],[1528987620,[1,0, 1]],[1528987623,[4,0, 4]],[1528987627,[1,0, 1]],[1528987630,[0,0, 0]],[1528987634,[1,0, 1]],[1528987638,[2,0, 2]],[1528987641,[2,0, 2]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[1,0, 1]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[1,0, 1]],[1528987674,[2,0, 2]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[1,0, 1]],[1528987688,[2,0, 2]],[1528987692,[1,0, 1]],[1528987695,[2,0, 2]],[1528987699,[0,0, 0]],[1528987702,[0,0, 0]],[1528987706,[2,0, 2]],[1528987710,[0,0, 0]],[1528987713,[2,0, 2]],[1528987717,[1,0, 1]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[2,0, 2]],[1528987742,[2,0, 2]],[1528987745,[1,0, 1]],[1528987749,[0,0, 0]],[1528987753,[2,0, 2]],[1528987756,[3,0, 3]],[1528987760,[2,0, 2]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[1,0, 1]],[1528987774,[1,0, 1]],[1528987778,[0,0, 0]],[1528987781,[1,0, 1]],[1528987785,[0,0, 0]],[1528987789,[2,0, 2]],[1528987792,[1,0, 1]],[1528987796,[0,0, 0]],[1528987799,[1,0, 1]],[1528987803,[1,0, 1]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[2,0, 2]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[1,0, 1]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[4,0, 4]],[1528987850,[1,0, 1]],[1528987853,[1,0, 1]],[1528987857,[0,0, 0]],[1528987861,[1,0, 1]],[1528987864,[1,0, 1]],[1528987868,[2,0, 2]],[1528987871,[0,0, 0]],[1528987875,[1,0, 1]],[1528987879,[1,0, 1]],[1528987882,[1,0, 1]],[1528987886,[0,0, 0]],[1528987889,[2,0, 2]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[1,0, 1]],[1528987907,[1,0, 1]],[1528987911,[2,0, 2]],[1528987915,[0,0, 0]],[1528987918,[1,0, 1]],[1528987922,[2,0, 2]],[1528987925,[1,0, 1]],[1528987929,[0,0, 0]],[1528987933,[2,0, 2]],[1528987936,[0,0, 0]],[1528987940,[2,0, 2]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[2,0, 2]],[1528987961,[1,0, 1]],[1528987965,[0,0, 0]],[1528987968,[3,0, 3]],[1528987972,[0,0, 0]],[1528987976,[1,0, 1]],[1528987979,[1,0, 1]],[1528987983,[1,0, 1]],[1528987986,[0,0, 0]],[1528987990,[1,0, 1]],[1528987994,[0,0, 0]],[1528987997,[0,0, 0]],[1528988001,[3,0, 3]],[1528988004,[1,0, 1]],[1528988008,[1,0, 1]],[1528988012,[1,0, 1]],[1528988015,[0,0, 0]],[1528988019,[1,0, 1]],[1528988022,[0,0, 0]],[1528988026,[1,0, 1]],[1528988030,[0,0, 0]],[1528988033,[1,0, 1]],[1528988037,[2,0, 2]],[1528988040,[1,0, 1]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[1,0, 1]],[1528988055,[3,0, 3]],[1528988058,[1,0, 1]],[1528988062,[1,0, 1]],[1528988066,[0,0, 0]],[1528988069,[1,0, 1]],[1528988073,[0,0, 0]],[1528988076,[1,0, 1]],[1528988080,[0,0, 0]],[1528988084,[0,0, 0]],[1528988087,[1,0, 1]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[1,0, 1]],[1528988102,[1,0, 1]],[1528988105,[2,0, 2]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[1,0, 1]],[1528988120,[1,0, 1]],[1528988123,[3,0, 3]],[1528988127,[2,0, 2]],[1528988130,[0,0, 0]],[1528988134,[1,0, 1]],[1528988138,[1,0, 1]],[1528988141,[0,0, 0]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[1,0, 1]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[1,0, 1]],[1528988184,[0,0, 0]],[1528988188,[2,0, 2]],[1528988191,[2,0, 2]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[1,0, 1]],[1528988206,[2,0, 2]],[1528988209,[2,1, 1]],[1528988213,[0,0, 0]],[1528988217,[1,1, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[1,1, 0]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[1,1, 0]],[1528988249,[2,1, 1]],[1528988253,[2,1, 1]],[1528988256,[3,3, 0]],[1528988260,[2,2, 0]],[1528988263,[0,0, 0]],[1528988267,[2,2, 0]],[1528988271,[2,1, 1]],[1528988274,[1,1, 0]],[1528988278,[0,0, 0]],[1528988281,[1,0, 1]],[1528988285,[0,0, 0]],[1528988289,[3,1, 2]],[1528988292,[1,0, 1]],[1528988296,[0,0, 0]],[1528988299,[1,0, 1]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[2,0, 2]],[1528988314,[0,0, 0]],[1528988317,[2,0, 2]],[1528988321,[0,0, 0]],[1528988325,[1,0, 1]],[1528988328,[2,0, 2]],[1528988332,[3,0, 3]],[1528988335,[0,0, 0]],[1528988339,[1,0, 1]],[1528988343,[1,0, 1]],[1528988346,[2,0, 2]],[1528988350,[2,0, 2]],[1528988353,[0,0, 0]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[1,0, 1]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[0,0, 0]],[1528988386,[2,0, 2]],[1528988389,[3,1, 2]],[1528988393,[1,0, 1]],[1528988397,[0,0, 0]],[1528988400,[1,0, 1]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[0,0, 0]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[2,0, 2]],[1528988436,[0,0, 0]],[1528988440,[1,0, 1]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[2,0, 2]],[1528988454,[2,0, 2]],[1528988458,[5,1, 4]],[1528988461,[2,1, 1]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[1,0, 1]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[0,0, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[2,0, 2]],[1528988548,[0,0, 0]],[1528988551,[2,1, 1]],[1528988555,[2,0, 2]],[1528988558,[0,0, 0]],[1528988562,[3,0, 3]],[1528988566,[3,0, 3]],[1528988569,[0,0, 0]],[1528988573,[1,0, 1]],[1528988576,[1,0, 1]],[1528988580,[0,0, 0]],[1528988584,[1,0, 1]],[1528988587,[0,0, 0]],[1528988591,[0,0, 0]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[1,0, 1]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[1,0, 1]],[1528988638,[2,0, 2]],[1528988641,[1,0, 1]],[1528988645,[0,0, 0]],[1528988648,[2,1, 1]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[1,0, 1]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[1,0, 1]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[0,0, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[1,1, 0]],[1528988745,[1,1, 0]],[1528988749,[0,0, 0]],[1528988753,[1,1, 0]],[1528988756,[0,0, 0]],[1528988760,[1,1, 0]],[1528988763,[0,0, 0]],[1528988767,[0,0, 0]],[1528988771,[1,1, 0]],[1528988774,[0,0, 0]],[1528988778,[1,1, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[3,1, 2]],[1528988817,[2,0, 2]],[1528988821,[2,0, 2]],[1528988825,[1,0, 1]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[0,0, 0]],[1528988853,[2,0, 2]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[3,0, 3]],[1528988868,[1,0, 1]],[1528988871,[2,0, 2]],[1528988875,[1,0, 1]],[1528988879,[2,1, 1]],[1528988882,[0,0, 0]],[1528988886,[0,0, 0]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[2,1, 1]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[1,0, 1]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[1,1, 0]],[1528988932,[3,0, 3]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[2,0, 2]],[1528988947,[2,1, 1]],[1528988950,[1,0, 1]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[1,0, 1]],[1528988965,[0,0, 0]],[1528988968,[0,0, 0]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[2,0, 2]],[1528988983,[0,0, 0]],[1528988986,[1,0, 1]],[1528988990,[0,0, 0]],[1528988994,[2,0, 2]],[1528988997,[0,0, 0]],[1528989001,[1,0, 1]],[1528989004,[1,0, 1]],[1528989008,[1,0, 1]],[1528989012,[3,0, 3]],[1528989015,[0,0, 0]],[1528989019,[1,0, 1]],[1528989022,[1,0, 1]],[1528989026,[0,0, 0]],[1528989030,[0,0, 0]],[1528989033,[0,0, 0]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[1,0, 1]],[1528989051,[0,0, 0]],[1528989055,[3,0, 3]],[1528989058,[1,0, 1]],[1528989062,[1,0, 1]],[1528989066,[2,0, 2]],[1528989069,[0,0, 0]],[1528989073,[1,0, 1]],[1528989076,[0,0, 0]],[1528989080,[2,0, 2]],[1528989084,[1,0, 1]],[1528989087,[0,0, 0]],[1528989091,[2,0, 2]],[1528989094,[0,0, 0]],[1528989098,[1,0, 1]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[4,0, 4]],[1528989112,[1,0, 1]],[1528989116,[2,0, 2]],[1528989120,[0,0, 0]],[1528989123,[1,0, 1]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[1,0, 1]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[2,0, 2]],[1528989159,[1,0, 1]],[1528989163,[0,0, 0]],[1528989166,[2,0, 2]],[1528989170,[0,0, 0]],[1528989173,[4,0, 4]],[1528989177,[1,0, 1]],[1528989181,[1,0, 1]],[1528989184,[1,0, 1]],[1528989188,[1,0, 1]],[1528989191,[0,0, 0]],[1528989195,[2,0, 2]],[1528989199,[0,0, 0]],[1528989202,[2,0, 2]],[1528989206,[0,0, 0]],[1528989209,[1,0, 1]],[1528989213,[0,0, 0]],[1528989217,[1,0, 1]],[1528989220,[2,0, 2]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[2,0, 2]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[0,0, 0]],[1528989245,[2,0, 2]],[1528989249,[1,0, 1]],[1528989253,[2,0, 2]],[1528989256,[0,0, 0]],[1528989260,[2,0, 2]],[1528989263,[3,0, 3]],[1528989267,[1,0, 1]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[0,0, 0]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[2,0, 2]],[1528989292,[2,0, 2]],[1528989296,[2,0, 2]],[1528989299,[0,0, 0]],[1528989303,[1,0, 1]],[1528989307,[0,0, 0]],[1528989310,[1,0, 1]],[1528989314,[0,0, 0]],[1528989317,[2,0, 2]],[1528989321,[2,0, 2]],[1528989325,[0,0, 0]],[1528989328,[1,0, 1]],[1528989332,[1,0, 1]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[2,0, 2]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[1,0, 1]],[1528989357,[0,0, 0]],[1528989361,[0,0, 0]],[1528989364,[1,0, 1]],[1528989368,[2,0, 2]],[1528989371,[1,0, 1]],[1528989375,[1,0, 1]],[1528989379,[3,0, 3]],[1528989382,[2,0, 2]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[2,0, 2]],[1528989396,[0,0, 0]],[1528989400,[3,0, 3]],[1528989404,[0,0, 0]],[1528989407,[1,0, 1]],[1528989411,[0,0, 0]],[1528989414,[0,0, 0]],[1528989418,[1,0, 1]],[1528989422,[0,0, 0]],[1528989425,[1,0, 1]],[1528989429,[2,0, 2]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[2,0, 2]],[1528989447,[0,0, 0]],[1528989450,[1,0, 1]],[1528989454,[2,0, 2]],[1528989458,[0,0, 0]],[1528989461,[1,0, 1]],[1528989465,[1,0, 1]],[1528989468,[2,0, 2]],[1528989472,[0,0, 0]],[1528989476,[1,0, 1]],[1528989479,[2,0, 2]],[1528989483,[0,0, 0]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[1,0, 1]],[1528989497,[3,0, 3]],[1528989501,[1,0, 1]],[1528989504,[1,0, 1]],[1528989508,[1,0, 1]],[1528989512,[2,0, 2]],[1528989515,[0,0, 0]],[1528989519,[1,0, 1]],[1528989522,[2,0, 2]],[1528989526,[0,0, 0]],[1528989530,[1,0, 1]],[1528989533,[2,0, 2]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[1,0, 1]],[1528989555,[1,0, 1]],[1528989558,[1,0, 1]],[1528989562,[0,0, 0]],[1528989566,[3,0, 3]],[1528989569,[0,0, 0]],[1528989573,[1,0, 1]],[1528989576,[1,0, 1]],[1528989580,[2,0, 2]],[1528989584,[0,0, 0]],[1528989587,[1,0, 1]],[1528989591,[0,0, 0]],[1528989594,[2,0, 2]],[1528989598,[0,0, 0]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[1,0, 1]],[1528989612,[4,0, 4]],[1528989616,[0,0, 0]],[1528989620,[2,0, 2]],[1528989623,[1,0, 1]],[1528989627,[1,0, 1]],[1528989630,[1,0, 1]],[1528989634,[0,0, 0]],[1528989637,[0,0, 0]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[3,0, 3]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[2,0, 2]],[1528989673,[0,0, 0]],[1528989677,[3,0, 3]],[1528989681,[2,0, 2]],[1528989684,[1,0, 1]],[1528989688,[1,0, 1]],[1528989691,[0,0, 0]],[1528989695,[1,0, 1]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[1,0, 1]],[1528989717,[1,0, 1]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[0,0, 0]],[1528989735,[2,0, 2]],[1528989738,[4,0, 4]],[1528989742,[0,0, 0]],[1528989745,[4,0, 4]],[1528989749,[0,0, 0]],[1528989753,[1,0, 1]],[1528989756,[0,0, 0]],[1528989760,[0,0, 0]],[1528989763,[1,0, 1]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[1,0, 1]],[1528989778,[0,0, 0]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[3,0, 3]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[1,0, 1]],[1528989803,[1,0, 1]],[1528989807,[0,0, 0]],[1528989810,[2,0, 2]],[1528989814,[1,1, 0]],[1528989817,[0,0, 0]],[1528989821,[3,0, 3]],[1528989825,[1,0, 1]],[1528989828,[0,0, 0]],[1528989832,[1,0, 1]],[1528989835,[1,0, 1]],[1528989839,[1,0, 1]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[3,0, 3]],[1528989853,[1,0, 1]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[1,0, 1]],[1528989871,[0,0, 0]],[1528989875,[1,0, 1]],[1528989878,[0,0, 0]],[1528989882,[0,0, 0]],[1528989886,[0,0, 0]],[1528989889,[1,0, 1]],[1528989893,[1,0, 1]],[1528989896,[1,0, 1]],[1528989900,[0,0, 0]],[1528989904,[2,0, 2]],[1528989907,[2,0, 2]],[1528989911,[1,0, 1]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[1,0, 1]],[1528989925,[2,0, 2]],[1528989929,[0,0, 0]],[1528989932,[1,0, 1]],[1528989936,[0,0, 0]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[1,0, 1]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[2,0, 2]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[2,0, 2]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[2,0, 2]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[1,0, 1]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[2,0, 2]],[1528990022,[0,0, 0]],[1528990026,[2,0, 2]],[1528990030,[0,0, 0]],[1528990033,[1,0, 1]],[1528990037,[1,0, 1]],[1528990040,[2,0, 2]],[1528990044,[0,0, 0]],[1528990048,[1,0, 1]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[2,0, 2]],[1528990080,[2,0, 2]],[1528990084,[0,0, 0]],[1528990087,[1,0, 1]],[1528990091,[2,0, 2]],[1528990094,[0,0, 0]],[1528990098,[2,0, 2]],[1528990102,[1,0, 1]],[1528990105,[0,0, 0]],[1528990109,[1,0, 1]],[1528990112,[1,0, 1]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[2,0, 2]],[1528990130,[1,0, 1]],[1528990134,[1,0, 1]],[1528990137,[1,0, 1]],[1528990141,[3,0, 3]],[1528990145,[1,0, 1]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[2,0, 2]],[1528990159,[1,0, 1]],[1528990163,[1,0, 1]],[1528990166,[0,0, 0]],[1528990170,[2,0, 2]],[1528990173,[1,0, 1]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[2,0, 2]],[1528990195,[1,0, 1]],[1528990199,[1,0, 1]],[1528990202,[0,0, 0]],[1528990206,[2,0, 2]],[1528990209,[1,0, 1]],[1528990213,[3,0, 3]],[1528990217,[1,0, 1]],[1528990220,[0,0, 0]],[1528990224,[2,0, 2]],[1528990227,[1,0, 1]],[1528990231,[1,0, 1]],[1528990235,[0,0, 0]],[1528990238,[0,0, 0]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[2,0, 2]],[1528990260,[0,0, 0]],[1528990263,[1,0, 1]],[1528990267,[2,0, 2]],[1528990271,[2,0, 2]],[1528990274,[1,0, 1]],[1528990278,[0,0, 0]],[1528990281,[1,0, 1]],[1528990285,[3,0, 3]],[1528990289,[0,0, 0]],[1528990292,[2,0, 2]],[1528990296,[0,0, 0]],[1528990299,[1,0, 1]],[1528990303,[1,0, 1]],[1528990307,[0,0, 0]],[1528990310,[1,0, 1]],[1528990314,[0,0, 0]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[1,0, 1]],[1528990332,[3,0, 3]],[1528990335,[0,0, 0]],[1528990339,[1,0, 1]],[1528990343,[1,0, 1]],[1528990346,[4,1, 3]],[1528990350,[2,0, 2]],[1528990353,[1,0, 1]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[1,0, 1]],[1528990368,[1,0, 1]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[2,0, 2]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[3,0, 3]],[1528990396,[1,0, 1]],[1528990400,[2,0, 2]],[1528990404,[1,0, 1]],[1528990407,[0,0, 0]],[1528990411,[0,0, 0]],[1528990414,[0,0, 0]],[1528990418,[0,0, 0]],[1528990422,[1,0, 1]],[1528990425,[2,0, 2]],[1528990429,[0,0, 0]],[1528990432,[1,0, 1]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[2,0, 2]],[1528990447,[0,0, 0]],[1528990450,[0,0, 0]],[1528990454,[2,0, 2]],[1528990458,[1,0, 1]],[1528990461,[1,0, 1]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[1,0, 1]],[1528990479,[3,0, 3]],[1528990483,[0,0, 0]],[1528990486,[2,0, 2]],[1528990490,[1,0, 1]],[1528990494,[1,0, 1]],[1528990497,[0,0, 0]],[1528990501,[1,0, 1]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[2,0, 2]],[1528990522,[0,0, 0]],[1528990526,[1,0, 1]],[1528990530,[1,0, 1]],[1528990533,[2,0, 2]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[1,0, 1]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[2,0, 2]],[1528990558,[0,0, 0]],[1528990562,[2,0, 2]],[1528990566,[0,0, 0]],[1528990569,[1,0, 1]],[1528990573,[3,0, 3]],[1528990576,[0,0, 0]],[1528990580,[0,0, 0]],[1528990584,[1,0, 1]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[3,0, 3]],[1528990598,[0,0, 0]],[1528990601,[2,0, 2]],[1528990605,[0,0, 0]],[1528990609,[1,0, 1]],[1528990612,[1,0, 1]],[1528990616,[1,0, 1]],[1528990619,[3,0, 3]],[1528990623,[1,0, 1]],[1528990627,[1,0, 1]],[1528990630,[0,0, 0]],[1528990634,[2,0, 2]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[1,0, 1]],[1528990652,[2,0, 2]],[1528990655,[1,0, 1]],[1528990659,[0,0, 0]],[1528990663,[2,0, 2]],[1528990666,[0,0, 0]],[1528990670,[0,0, 0]],[1528990673,[2,0, 2]],[1528990677,[0,0, 0]],[1528990681,[1,0, 1]],[1528990684,[1,0, 1]],[1528990688,[2,0, 2]],[1528990691,[0,0, 0]],[1528990695,[3,0, 3]],[1528990699,[1,0, 1]],[1528990702,[1,0, 1]],[1528990706,[0,0, 0]],[1528990709,[1,0, 1]],[1528990713,[0,0, 0]],[1528990717,[0,0, 0]],[1528990720,[0,0, 0]],[1528990724,[0,0, 0]],[1528990727,[2,0, 2]],[1528990731,[1,0, 1]],[1528990735,[2,0, 2]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[1,0, 1]],[1528990753,[2,0, 2]],[1528990756,[4,1, 3]],[1528990760,[0,0, 0]],[1528990763,[1,0, 1]],[1528990767,[1,0, 1]],[1528990771,[2,0, 2]],[1528990774,[0,0, 0]],[1528990778,[2,0, 2]],[1528990781,[0,0, 0]],[1528990785,[0,0, 0]],[1528990789,[1,0, 1]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[2,0, 2]],[1528990803,[0,0, 0]],[1528990807,[0,0, 0]],[1528990810,[0,0, 0]],[1528990814,[1,0, 1]],[1528990817,[0,0, 0]],[1528990821,[4,0, 4]],[1528990825,[3,0, 3]],[1528990828,[1,0, 1]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[1,0, 1]],[1528990842,[0,0, 0]],[1528990846,[1,0, 1]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[2,0, 2]],[1528990860,[2,0, 2]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[1,0, 1]],[1528990878,[1,0, 1]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[2,0, 2]],[1528990893,[1,0, 1]],[1528990896,[3,0, 3]],[1528990900,[1,0, 1]],[1528990904,[0,0, 0]],[1528990907,[1,0, 1]],[1528990911,[1,0, 1]],[1528990914,[1,0, 1]],[1528990918,[0,0, 0]],[1528990922,[2,0, 2]],[1528990925,[1,0, 1]],[1528990929,[1,0, 1]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[1,0, 1]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[2,0, 2]],[1528990954,[0,0, 0]],[1528990958,[1,0, 1]],[1528990961,[2,0, 2]],[1528990965,[1,0, 1]],[1528990968,[1,0, 1]],[1528990972,[1,0, 1]],[1528990976,[1,0, 1]],[1528990979,[0,0, 0]],[1528990983,[0,0, 0]],[1528990986,[1,0, 1]],[1528990990,[1,0, 1]],[1528990994,[1,0, 1]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[1,0, 1]],[1528991008,[2,0, 2]],[1528991012,[1,0, 1]],[1528991015,[1,0, 1]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_requests',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Number of requests',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_requests[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of requests per second</span>',
useHTML: true
});
var container_responses = unpack([[1528987422,[0,0, 0]],[1528987425,[1,0, 1]],[1528987429,[3,0, 3]],[1528987433,[1,0, 1]],[1528987436,[2,0, 2]],[1528987440,[2,0, 2]],[1528987443,[2,0, 2]],[1528987447,[1,0, 1]],[1528987451,[0,0, 0]],[1528987454,[0,0, 0]],[1528987458,[1,0, 1]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[1,0, 1]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[2,0, 2]],[1528987486,[2,0, 2]],[1528987490,[0,0, 0]],[1528987494,[2,0, 2]],[1528987497,[2,0, 2]],[1528987501,[2,0, 2]],[1528987504,[1,0, 1]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[0,0, 0]],[1528987519,[1,0, 1]],[1528987522,[2,0, 2]],[1528987526,[1,0, 1]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[1,0, 1]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[4,0, 4]],[1528987566,[2,1, 1]],[1528987569,[3,0, 3]],[1528987573,[1,0, 1]],[1528987576,[1,0, 1]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[1,0, 1]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[2,0, 2]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[0,0, 0]],[1528987620,[1,0, 1]],[1528987623,[4,0, 4]],[1528987627,[1,0, 1]],[1528987630,[0,0, 0]],[1528987634,[0,0, 0]],[1528987638,[2,0, 2]],[1528987641,[2,0, 2]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[1,0, 1]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[1,0, 1]],[1528987674,[3,0, 3]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[0,0, 0]],[1528987688,[3,0, 3]],[1528987692,[1,0, 1]],[1528987695,[1,0, 1]],[1528987699,[1,0, 1]],[1528987702,[0,0, 0]],[1528987706,[2,0, 2]],[1528987710,[1,0, 1]],[1528987713,[2,0, 2]],[1528987717,[1,0, 1]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[2,0, 2]],[1528987742,[2,0, 2]],[1528987745,[0,0, 0]],[1528987749,[0,0, 0]],[1528987753,[1,0, 1]],[1528987756,[3,0, 3]],[1528987760,[2,0, 2]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[0,0, 0]],[1528987774,[2,0, 2]],[1528987778,[0,0, 0]],[1528987781,[0,0, 0]],[1528987785,[0,0, 0]],[1528987789,[1,0, 1]],[1528987792,[1,0, 1]],[1528987796,[0,0, 0]],[1528987799,[1,0, 1]],[1528987803,[2,0, 2]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[2,0, 2]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[1,0, 1]],[1528987839,[1,0, 1]],[1528987843,[0,0, 0]],[1528987846,[3,0, 3]],[1528987850,[2,0, 2]],[1528987853,[0,0, 0]],[1528987857,[0,0, 0]],[1528987861,[0,0, 0]],[1528987864,[1,0, 1]],[1528987868,[2,0, 2]],[1528987871,[0,0, 0]],[1528987875,[0,0, 0]],[1528987879,[1,0, 1]],[1528987882,[1,0, 1]],[1528987886,[0,0, 0]],[1528987889,[2,0, 2]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[1,0, 1]],[1528987907,[1,0, 1]],[1528987911,[2,0, 2]],[1528987915,[0,0, 0]],[1528987918,[0,0, 0]],[1528987922,[2,0, 2]],[1528987925,[1,0, 1]],[1528987929,[0,0, 0]],[1528987933,[2,0, 2]],[1528987936,[1,0, 1]],[1528987940,[2,0, 2]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[2,0, 2]],[1528987961,[1,0, 1]],[1528987965,[1,0, 1]],[1528987968,[2,0, 2]],[1528987972,[1,0, 1]],[1528987976,[0,0, 0]],[1528987979,[0,0, 0]],[1528987983,[2,0, 2]],[1528987986,[0,0, 0]],[1528987990,[0,0, 0]],[1528987994,[0,0, 0]],[1528987997,[1,0, 1]],[1528988001,[3,0, 3]],[1528988004,[1,0, 1]],[1528988008,[1,0, 1]],[1528988012,[1,0, 1]],[1528988015,[1,0, 1]],[1528988019,[1,0, 1]],[1528988022,[0,0, 0]],[1528988026,[1,0, 1]],[1528988030,[1,0, 1]],[1528988033,[1,0, 1]],[1528988037,[2,0, 2]],[1528988040,[1,0, 1]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[1,0, 1]],[1528988055,[2,0, 2]],[1528988058,[1,0, 1]],[1528988062,[2,0, 2]],[1528988066,[0,0, 0]],[1528988069,[1,0, 1]],[1528988073,[1,0, 1]],[1528988076,[0,0, 0]],[1528988080,[0,0, 0]],[1528988084,[1,0, 1]],[1528988087,[2,0, 2]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[0,0, 0]],[1528988102,[1,0, 1]],[1528988105,[2,0, 2]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[1,0, 1]],[1528988120,[1,0, 1]],[1528988123,[3,0, 3]],[1528988127,[3,0, 3]],[1528988130,[0,0, 0]],[1528988134,[1,0, 1]],[1528988138,[1,0, 1]],[1528988141,[1,0, 1]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[1,0, 1]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[1,0, 1]],[1528988184,[0,0, 0]],[1528988188,[3,0, 3]],[1528988191,[2,0, 2]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[0,0, 0]],[1528988206,[2,0, 2]],[1528988209,[1,0, 1]],[1528988213,[0,0, 0]],[1528988217,[1,1, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[2,1, 1]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[1,1, 0]],[1528988249,[2,1, 1]],[1528988253,[2,1, 1]],[1528988256,[3,3, 0]],[1528988260,[2,2, 0]],[1528988263,[0,0, 0]],[1528988267,[2,2, 0]],[1528988271,[2,1, 1]],[1528988274,[1,1, 0]],[1528988278,[0,0, 0]],[1528988281,[1,0, 1]],[1528988285,[0,0, 0]],[1528988289,[3,1, 2]],[1528988292,[1,0, 1]],[1528988296,[0,0, 0]],[1528988299,[0,0, 0]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[1,0, 1]],[1528988314,[0,0, 0]],[1528988317,[2,0, 2]],[1528988321,[0,0, 0]],[1528988325,[1,0, 1]],[1528988328,[1,0, 1]],[1528988332,[3,0, 3]],[1528988335,[0,0, 0]],[1528988339,[0,0, 0]],[1528988343,[0,0, 0]],[1528988346,[1,0, 1]],[1528988350,[3,0, 3]],[1528988353,[1,0, 1]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[0,0, 0]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[1,0, 1]],[1528988386,[2,0, 2]],[1528988389,[3,0, 3]],[1528988393,[2,1, 1]],[1528988397,[0,0, 0]],[1528988400,[1,0, 1]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[1,0, 1]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[1,0, 1]],[1528988436,[0,0, 0]],[1528988440,[1,0, 1]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[1,0, 1]],[1528988454,[2,0, 2]],[1528988458,[4,0, 4]],[1528988461,[2,1, 1]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[0,0, 0]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[1,1, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[1,0, 1]],[1528988548,[1,0, 1]],[1528988551,[2,1, 1]],[1528988555,[1,0, 1]],[1528988558,[0,0, 0]],[1528988562,[3,0, 3]],[1528988566,[3,0, 3]],[1528988569,[1,0, 1]],[1528988573,[0,0, 0]],[1528988576,[1,0, 1]],[1528988580,[0,0, 0]],[1528988584,[0,0, 0]],[1528988587,[0,0, 0]],[1528988591,[1,0, 1]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[2,0, 2]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[1,0, 1]],[1528988638,[3,0, 3]],[1528988641,[1,0, 1]],[1528988645,[0,0, 0]],[1528988648,[1,0, 1]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[1,0, 1]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[1,0, 1]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[1,1, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[0,0, 0]],[1528988745,[1,1, 0]],[1528988749,[0,0, 0]],[1528988753,[1,1, 0]],[1528988756,[0,0, 0]],[1528988760,[1,1, 0]],[1528988763,[0,0, 0]],[1528988767,[1,1, 0]],[1528988771,[1,1, 0]],[1528988774,[0,0, 0]],[1528988778,[1,1, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[3,1, 2]],[1528988817,[2,0, 2]],[1528988821,[2,0, 2]],[1528988825,[1,0, 1]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[1,0, 1]],[1528988853,[1,0, 1]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[3,0, 3]],[1528988868,[1,0, 1]],[1528988871,[1,0, 1]],[1528988875,[1,0, 1]],[1528988879,[1,0, 1]],[1528988882,[0,0, 0]],[1528988886,[1,0, 1]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[2,1, 1]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[0,0, 0]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[1,1, 0]],[1528988932,[3,0, 3]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[2,0, 2]],[1528988947,[3,1, 2]],[1528988950,[1,0, 1]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[0,0, 0]],[1528988965,[0,0, 0]],[1528988968,[1,0, 1]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[2,0, 2]],[1528988983,[1,0, 1]],[1528988986,[0,0, 0]],[1528988990,[0,0, 0]],[1528988994,[2,0, 2]],[1528988997,[0,0, 0]],[1528989001,[1,0, 1]],[1528989004,[1,0, 1]],[1528989008,[0,0, 0]],[1528989012,[3,0, 3]],[1528989015,[0,0, 0]],[1528989019,[1,0, 1]],[1528989022,[0,0, 0]],[1528989026,[1,0, 1]],[1528989030,[0,0, 0]],[1528989033,[1,0, 1]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[1,0, 1]],[1528989051,[1,0, 1]],[1528989055,[3,0, 3]],[1528989058,[1,0, 1]],[1528989062,[1,0, 1]],[1528989066,[2,0, 2]],[1528989069,[1,0, 1]],[1528989073,[0,0, 0]],[1528989076,[0,0, 0]],[1528989080,[2,0, 2]],[1528989084,[1,0, 1]],[1528989087,[0,0, 0]],[1528989091,[1,0, 1]],[1528989094,[1,0, 1]],[1528989098,[1,0, 1]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[4,0, 4]],[1528989112,[1,0, 1]],[1528989116,[2,0, 2]],[1528989120,[0,0, 0]],[1528989123,[1,0, 1]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[1,0, 1]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[2,0, 2]],[1528989159,[0,0, 0]],[1528989163,[0,0, 0]],[1528989166,[2,0, 2]],[1528989170,[0,0, 0]],[1528989173,[3,0, 3]],[1528989177,[1,0, 1]],[1528989181,[1,0, 1]],[1528989184,[1,0, 1]],[1528989188,[1,0, 1]],[1528989191,[0,0, 0]],[1528989195,[1,0, 1]],[1528989199,[0,0, 0]],[1528989202,[2,0, 2]],[1528989206,[0,0, 0]],[1528989209,[0,0, 0]],[1528989213,[1,0, 1]],[1528989217,[0,0, 0]],[1528989220,[2,0, 2]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[2,0, 2]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[1,0, 1]],[1528989245,[1,0, 1]],[1528989249,[1,0, 1]],[1528989253,[2,0, 2]],[1528989256,[0,0, 0]],[1528989260,[1,0, 1]],[1528989263,[2,0, 2]],[1528989267,[1,0, 1]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[1,0, 1]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[1,0, 1]],[1528989292,[2,0, 2]],[1528989296,[2,0, 2]],[1528989299,[0,0, 0]],[1528989303,[0,0, 0]],[1528989307,[0,0, 0]],[1528989310,[1,0, 1]],[1528989314,[0,0, 0]],[1528989317,[1,0, 1]],[1528989321,[2,0, 2]],[1528989325,[1,0, 1]],[1528989328,[1,0, 1]],[1528989332,[1,0, 1]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[2,0, 2]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[0,0, 0]],[1528989357,[1,0, 1]],[1528989361,[0,0, 0]],[1528989364,[1,0, 1]],[1528989368,[2,0, 2]],[1528989371,[0,0, 0]],[1528989375,[0,0, 0]],[1528989379,[3,0, 3]],[1528989382,[2,0, 2]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[2,0, 2]],[1528989396,[0,0, 0]],[1528989400,[2,0, 2]],[1528989404,[0,0, 0]],[1528989407,[0,0, 0]],[1528989411,[0,0, 0]],[1528989414,[1,0, 1]],[1528989418,[1,0, 1]],[1528989422,[1,0, 1]],[1528989425,[1,0, 1]],[1528989429,[2,0, 2]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[2,0, 2]],[1528989447,[1,0, 1]],[1528989450,[1,0, 1]],[1528989454,[3,0, 3]],[1528989458,[0,0, 0]],[1528989461,[0,0, 0]],[1528989465,[1,0, 1]],[1528989468,[2,0, 2]],[1528989472,[0,0, 0]],[1528989476,[0,0, 0]],[1528989479,[2,0, 2]],[1528989483,[1,0, 1]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[1,0, 1]],[1528989497,[3,0, 3]],[1528989501,[1,0, 1]],[1528989504,[0,0, 0]],[1528989508,[0,0, 0]],[1528989512,[2,0, 2]],[1528989515,[0,0, 0]],[1528989519,[1,0, 1]],[1528989522,[2,0, 2]],[1528989526,[0,0, 0]],[1528989530,[0,0, 0]],[1528989533,[2,0, 2]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[1,0, 1]],[1528989555,[1,0, 1]],[1528989558,[1,0, 1]],[1528989562,[0,0, 0]],[1528989566,[3,0, 3]],[1528989569,[1,0, 1]],[1528989573,[0,0, 0]],[1528989576,[1,0, 1]],[1528989580,[2,0, 2]],[1528989584,[1,0, 1]],[1528989587,[1,0, 1]],[1528989591,[0,0, 0]],[1528989594,[1,0, 1]],[1528989598,[1,0, 1]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[0,0, 0]],[1528989612,[4,0, 4]],[1528989616,[1,0, 1]],[1528989620,[1,0, 1]],[1528989623,[1,0, 1]],[1528989627,[0,0, 0]],[1528989630,[1,0, 1]],[1528989634,[0,0, 0]],[1528989637,[1,0, 1]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[3,0, 3]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[1,0, 1]],[1528989673,[1,0, 1]],[1528989677,[2,0, 2]],[1528989681,[3,0, 3]],[1528989684,[1,0, 1]],[1528989688,[1,0, 1]],[1528989691,[0,0, 0]],[1528989695,[0,0, 0]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[1,0, 1]],[1528989717,[1,0, 1]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[1,0, 1]],[1528989735,[2,0, 2]],[1528989738,[3,0, 3]],[1528989742,[1,0, 1]],[1528989745,[3,0, 3]],[1528989749,[1,0, 1]],[1528989753,[0,0, 0]],[1528989756,[1,0, 1]],[1528989760,[0,0, 0]],[1528989763,[1,0, 1]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[0,0, 0]],[1528989778,[1,0, 1]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[3,0, 3]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[1,0, 1]],[1528989803,[0,0, 0]],[1528989807,[0,0, 0]],[1528989810,[1,0, 1]],[1528989814,[2,1, 1]],[1528989817,[0,0, 0]],[1528989821,[2,0, 2]],[1528989825,[1,0, 1]],[1528989828,[0,0, 0]],[1528989832,[1,0, 1]],[1528989835,[0,0, 0]],[1528989839,[1,0, 1]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[3,0, 3]],[1528989853,[2,0, 2]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[0,0, 0]],[1528989871,[0,0, 0]],[1528989875,[1,0, 1]],[1528989878,[0,0, 0]],[1528989882,[1,0, 1]],[1528989886,[0,0, 0]],[1528989889,[1,0, 1]],[1528989893,[0,0, 0]],[1528989896,[1,0, 1]],[1528989900,[0,0, 0]],[1528989904,[2,0, 2]],[1528989907,[2,0, 2]],[1528989911,[1,0, 1]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[1,0, 1]],[1528989925,[2,0, 2]],[1528989929,[0,0, 0]],[1528989932,[1,0, 1]],[1528989936,[1,0, 1]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[1,0, 1]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[1,0, 1]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[1,0, 1]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[2,0, 2]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[0,0, 0]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[1,0, 1]],[1528990022,[1,0, 1]],[1528990026,[2,0, 2]],[1528990030,[1,0, 1]],[1528990033,[0,0, 0]],[1528990037,[1,0, 1]],[1528990040,[2,0, 2]],[1528990044,[0,0, 0]],[1528990048,[1,0, 1]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[2,0, 2]],[1528990080,[1,0, 1]],[1528990084,[1,0, 1]],[1528990087,[0,0, 0]],[1528990091,[1,0, 1]],[1528990094,[0,0, 0]],[1528990098,[2,0, 2]],[1528990102,[1,0, 1]],[1528990105,[0,0, 0]],[1528990109,[0,0, 0]],[1528990112,[1,0, 1]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[3,0, 3]],[1528990130,[1,0, 1]],[1528990134,[1,0, 1]],[1528990137,[0,0, 0]],[1528990141,[3,0, 3]],[1528990145,[0,0, 0]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[2,0, 2]],[1528990159,[1,0, 1]],[1528990163,[1,0, 1]],[1528990166,[0,0, 0]],[1528990170,[2,0, 2]],[1528990173,[1,0, 1]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[2,0, 2]],[1528990195,[0,0, 0]],[1528990199,[1,0, 1]],[1528990202,[0,0, 0]],[1528990206,[2,0, 2]],[1528990209,[2,0, 2]],[1528990213,[2,0, 2]],[1528990217,[1,0, 1]],[1528990220,[0,0, 0]],[1528990224,[2,0, 2]],[1528990227,[1,0, 1]],[1528990231,[1,0, 1]],[1528990235,[0,0, 0]],[1528990238,[1,0, 1]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[2,0, 2]],[1528990260,[0,0, 0]],[1528990263,[0,0, 0]],[1528990267,[2,0, 2]],[1528990271,[2,0, 2]],[1528990274,[0,0, 0]],[1528990278,[1,0, 1]],[1528990281,[0,0, 0]],[1528990285,[3,0, 3]],[1528990289,[0,0, 0]],[1528990292,[2,0, 2]],[1528990296,[0,0, 0]],[1528990299,[0,0, 0]],[1528990303,[1,0, 1]],[1528990307,[0,0, 0]],[1528990310,[1,0, 1]],[1528990314,[1,0, 1]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[3,0, 3]],[1528990335,[1,1, 0]],[1528990339,[1,0, 1]],[1528990343,[1,0, 1]],[1528990346,[3,0, 3]],[1528990350,[2,0, 2]],[1528990353,[2,1, 1]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[1,0, 1]],[1528990368,[1,0, 1]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[2,0, 2]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[3,0, 3]],[1528990396,[1,0, 1]],[1528990400,[1,0, 1]],[1528990404,[1,0, 1]],[1528990407,[0,0, 0]],[1528990411,[1,0, 1]],[1528990414,[0,0, 0]],[1528990418,[1,0, 1]],[1528990422,[1,0, 1]],[1528990425,[2,0, 2]],[1528990429,[0,0, 0]],[1528990432,[1,0, 1]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[2,0, 2]],[1528990447,[1,0, 1]],[1528990450,[0,0, 0]],[1528990454,[2,0, 2]],[1528990458,[1,0, 1]],[1528990461,[1,0, 1]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[1,0, 1]],[1528990479,[3,0, 3]],[1528990483,[0,0, 0]],[1528990486,[2,0, 2]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[1,0, 1]],[1528990501,[0,0, 0]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[2,0, 2]],[1528990522,[0,0, 0]],[1528990526,[1,0, 1]],[1528990530,[1,0, 1]],[1528990533,[2,0, 2]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[1,0, 1]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[2,0, 2]],[1528990558,[0,0, 0]],[1528990562,[2,0, 2]],[1528990566,[0,0, 0]],[1528990569,[1,0, 1]],[1528990573,[3,0, 3]],[1528990576,[0,0, 0]],[1528990580,[1,0, 1]],[1528990584,[0,0, 0]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[2,0, 2]],[1528990598,[0,0, 0]],[1528990601,[1,0, 1]],[1528990605,[0,0, 0]],[1528990609,[0,0, 0]],[1528990612,[1,0, 1]],[1528990616,[0,0, 0]],[1528990619,[4,0, 4]],[1528990623,[1,0, 1]],[1528990627,[0,0, 0]],[1528990630,[1,0, 1]],[1528990634,[2,0, 2]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[1,0, 1]],[1528990652,[2,0, 2]],[1528990655,[1,0, 1]],[1528990659,[0,0, 0]],[1528990663,[1,0, 1]],[1528990666,[0,0, 0]],[1528990670,[1,0, 1]],[1528990673,[2,0, 2]],[1528990677,[0,0, 0]],[1528990681,[0,0, 0]],[1528990684,[1,0, 1]],[1528990688,[2,0, 2]],[1528990691,[0,0, 0]],[1528990695,[2,0, 2]],[1528990699,[1,0, 1]],[1528990702,[1,0, 1]],[1528990706,[0,0, 0]],[1528990709,[0,0, 0]],[1528990713,[0,0, 0]],[1528990717,[1,0, 1]],[1528990720,[1,0, 1]],[1528990724,[0,0, 0]],[1528990727,[1,0, 1]],[1528990731,[1,0, 1]],[1528990735,[2,0, 2]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[0,0, 0]],[1528990753,[2,0, 2]],[1528990756,[3,0, 3]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[2,0, 2]],[1528990774,[1,0, 1]],[1528990778,[2,0, 2]],[1528990781,[1,0, 1]],[1528990785,[0,0, 0]],[1528990789,[1,0, 1]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[2,0, 2]],[1528990803,[0,0, 0]],[1528990807,[1,0, 1]],[1528990810,[0,0, 0]],[1528990814,[0,0, 0]],[1528990817,[0,0, 0]],[1528990821,[3,0, 3]],[1528990825,[4,0, 4]],[1528990828,[0,0, 0]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[1,0, 1]],[1528990842,[0,0, 0]],[1528990846,[1,0, 1]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[2,0, 2]],[1528990860,[2,0, 2]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[0,0, 0]],[1528990878,[1,0, 1]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[1,0, 1]],[1528990893,[1,0, 1]],[1528990896,[3,0, 3]],[1528990900,[1,0, 1]],[1528990904,[0,0, 0]],[1528990907,[1,0, 1]],[1528990911,[0,0, 0]],[1528990914,[0,0, 0]],[1528990918,[0,0, 0]],[1528990922,[1,0, 1]],[1528990925,[2,0, 2]],[1528990929,[1,0, 1]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[1,0, 1]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[2,0, 2]],[1528990954,[0,0, 0]],[1528990958,[1,0, 1]],[1528990961,[2,0, 2]],[1528990965,[1,0, 1]],[1528990968,[1,0, 1]],[1528990972,[1,0, 1]],[1528990976,[1,0, 1]],[1528990979,[1,0, 1]],[1528990983,[0,0, 0]],[1528990986,[1,0, 1]],[1528990990,[0,0, 0]],[1528990994,[1,0, 1]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[0,0, 0]],[1528991008,[2,0, 2]],[1528991012,[1,0, 1]],[1528991015,[2,0, 2]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_responses',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'