diff --git a/site-modules/profile/files/munin/stats_export/export-rrd b/site-modules/profile/files/munin/stats_export/export-rrd deleted file mode 100755 index 78c44c9e..00000000 --- a/site-modules/profile/files/munin/stats_export/export-rrd +++ /dev/null @@ -1,128 +0,0 @@ -#!/usr/bin/env python3 - -"""Script to execute the export of softwareheritage's rrds data. - -""" - -import click -import json -import os -import subprocess - - -DIRPATH='/var/lib/munin/softwareheritage.org/' -FILENAME_PATTERN="prado.softwareheritage.org-softwareheritage_objects_softwareheritage-###-g.rrd" -# The data source used at rrd creation time -DS=42 - -ENTITIES=[ - "content", - "origin", - "revision", - # "directory_entry_dir", - # "directory_entry_file", - # "directory_entry_rev", - # "directory", - # "entity", - # "occurrence_history", - # "person", - # "project", - # "release", - # "revision_history", - # "skipped_content", - # "visit", -] - -def compute_cmd(dirpath, - start, - step=86400): - """Compute the command to execute to retrieve the needed data. - - Returns: - The command as string. - - """ - cmd = ['rrdtool', 'xport', '--json', '--start', str(start), '--end', 'now-1d', - '--step', str(step)] - for entity in ENTITIES: - filename = FILENAME_PATTERN.replace('###', entity) - filepath = os.path.join(dirpath, filename) - - if os.path.exists(filepath): - cmd.extend(['DEF:out-%s1=%s:%s:AVERAGE' % (entity, filepath, DS), - 'XPORT:out-%s1:%s' % (entity, entity)]) - - return cmd - - -def retrieve_json(cmd): - """Given the cmd command, execute and returns the right json format. - - Args: - cmd: the command to execute to retrieve the desired json. - - Returns: - The desired result as json string. - """ - cmdpipe = subprocess.Popen(cmd, stdout=subprocess.PIPE) - data = b'' - while True: - line = cmdpipe.stdout.readline() - if not line: - break - # Hack: the json output is not well-formed... - line = line.replace(b'\'', b'"') - line = line.replace(b'about: ', b'"about": ') - line = line.replace(b'meta:', b'"meta": ') - data += line - - cmdpipe.stdout.close() - return json.loads(data.decode('utf-8')) - - -def prepare_data(data): - """Prepare the data with x,y coordinate. - - x is the time, y is the actual value. - """ - # javascript has a ratio of 1000... - step = data['meta']['step'] * 1000 # nb of milliseconds - start_ts = data['meta']['start'] * 1000 # starting ts - - legends = data['meta']['legend'] - - # The legends, something like - # ["content-avg", "content-min", "content-max", "directory_entry_dir-avg", ...] - r = {} - day_ts = start_ts - for day, values in enumerate(data['data']): - day_ts += step - for col, value in enumerate(values): - if value is None: - continue - legend_col = legends[col] - l = r.get(legend_col, []) - l.append((day_ts, value)) - r[legend_col] = l - - return r - - -@click.command() -@click.option('--dirpath', default=DIRPATH, help="Default path to look for rrd files.") -@click.option('--start', default=1434499200, help="Default starting timestamp") # Default to 2015-05-12T16:51:25Z -@click.option('--step', default=86400, help="Compute the data step (default to 86400).") -def main(dirpath, start, step): - - # Delegate the execution to the system - run_cmd = compute_cmd(dirpath, start, step) - data = retrieve_json(run_cmd) - - # Format data - data = prepare_data(data) - - print(json.dumps(data)) - - -if __name__ == '__main__': - main() diff --git a/site-modules/profile/files/stats_exporter/export-archive_counters.py b/site-modules/profile/files/stats_exporter/export-archive_counters.py new file mode 100755 index 00000000..06d0afce --- /dev/null +++ b/site-modules/profile/files/stats_exporter/export-archive_counters.py @@ -0,0 +1,51 @@ +#!/usr/bin/python3 + +import requests +import json +import time + +def clean_item(item): + """Javascript expects timestamps to be in milliseconds + and counter values as floats + + """ + timestamp = int(item[0]) + counter_value = item[1] + return [timestamp*1000, float(counter_value)] + + +def get_timestamp_history(label): + result = [] + rrd_data = [] + now = int(time.time()) + url = 'http://pergamon.internal.softwareheritage.org:9090/api/v1/query_range?' + url = url + 'query=sum(sql_swh_archive_object_count) by (object_type)' + url = url + '&start=1544543227&end=%s&step=12h' % now + + # We only want to process timevalues for Source files + if (label == "content"): + # Historical data has already been processed for javascript usage + # No need to clean it further + with open("/usr/local/share/swh-data/history-counters.munin.json", "r") as f: + rrd_data = json.load(f)[label] + + response = requests.get(url) + if response.ok: + data = response.json() + # In contrast, Prometheus-provided data has to be adapted to + # Javascript expectations + result = [clean_item(i) for i in + data['data']['result'][0]['values']] + return rrd_data + result + + +def main(): + result = {} + for label in ['content', 'origin', 'revision']: + result[label] = get_timestamp_history(label) + return result + + +if __name__ == '__main__': + r = main() + print(json.dumps(r)) diff --git a/site-modules/profile/files/stats_exporter/history-counters.munin.json b/site-modules/profile/files/stats_exporter/history-counters.munin.json new file mode 100644 index 00000000..517e2355 --- /dev/null +++ b/site-modules/profile/files/stats_exporter/history-counters.munin.json @@ -0,0 +1 @@ +{"content": [[1444348800000, 220307136.07], [1444435200000, 220307136.07], [1444521600000, 220307136.07], [1444608000000, 220307136.07], [1444694400000, 220307136.07], [1444780800000, 220307136.07], [1444867200000, 220307136.07], [1444953600000, 306574115.84], [1445040000000, 306574115.84], [1445126400000, 306574115.84], [1445212800000, 306574115.84], [1445299200000, 306574115.84], [1445385600000, 306574115.84], [1445472000000, 306574115.84], [1445558400000, 438815813.08], [1445644800000, 438815813.08], [1445731200000, 438815813.08], [1445817600000, 438815813.08], [1445904000000, 438815813.08], [1445990400000, 438815813.08], [1446076800000, 438815813.08], [1446163200000, 584557475.72], [1446249600000, 584557475.72], [1446336000000, 584557475.72], [1446422400000, 584557475.72], [1446508800000, 584557475.72], [1446595200000, 584557475.72], [1446681600000, 584557475.72], [1446768000000, 722269076.3], [1446854400000, 722269076.3], [1446940800000, 722269076.3], [1447027200000, 722269076.3], [1447113600000, 722269076.3], [1447200000000, 722269076.3], [1447286400000, 722269076.3], [1447372800000, 851212248.07], [1447459200000, 851212248.07], [1447545600000, 851212248.07], [1447632000000, 851212248.07], [1447718400000, 851212248.07], [1447804800000, 851212248.07], [1447891200000, 851212248.07], [1447977600000, 966222889.01], [1448064000000, 966222889.01], [1448150400000, 966222889.01], [1448236800000, 966222889.01], [1448323200000, 966222889.01], [1448409600000, 966222889.01], [1448496000000, 966222889.01], [1448582400000, 1075138884.8], [1448668800000, 1075138884.8], [1448755200000, 1075138884.8], [1448841600000, 1075138884.8], [1448928000000, 1075138884.8], [1449014400000, 1075138884.8], [1449100800000, 1075138884.8], [1449187200000, 1164211880.1], [1449273600000, 1164211880.1], [1449360000000, 1164211880.1], [1449446400000, 1164211880.1], [1449532800000, 1164211880.1], [1449619200000, 1164211880.1], [1449705600000, 1164211880.1], [1449792000000, 1226246110.8], [1449878400000, 1226246110.8], [1449964800000, 1226246110.8], [1450051200000, 1226246110.8], [1450137600000, 1226246110.8], [1450224000000, 1226246110.8], [1450310400000, 1226246110.8], [1450396800000, 1309871671.9], [1450483200000, 1309871671.9], [1450569600000, 1309871671.9], [1450656000000, 1309871671.9], [1450742400000, 1309871671.9], [1450828800000, 1309871671.9], [1450915200000, 1309871671.9], [1451001600000, 1411125400.7], [1451088000000, 1411125400.7], [1451174400000, 1411125400.7], [1451260800000, 1411125400.7], [1451347200000, 1411125400.7], [1451433600000, 1411125400.7], [1451520000000, 1411125400.7], [1451606400000, 1502309510.0], [1451692800000, 1502309510.0], [1451779200000, 1502309510.0], [1451865600000, 1502309510.0], [1451952000000, 1502309510.0], [1452038400000, 1502309510.0], [1452124800000, 1502309510.0], [1452211200000, 1584411348.0], [1452297600000, 1584411348.0], [1452384000000, 1584411348.0], [1452470400000, 1584411348.0], [1452556800000, 1584411348.0], [1452643200000, 1584411348.0], [1452729600000, 1584411348.0], [1452816000000, 1671332828.1], [1452902400000, 1671332828.1], [1452988800000, 1671332828.1], [1453075200000, 1671332828.1], [1453161600000, 1671332828.1], [1453248000000, 1671332828.1], [1453334400000, 1671332828.1], [1453420800000, 1687132778.0], [1453507200000, 1687132778.0], [1453593600000, 1687132778.0], [1453680000000, 1687132778.0], [1453766400000, 1687132778.0], [1453852800000, 1687132778.0], [1453939200000, 1687132778.0], [1454025600000, 1687132778.0], [1454112000000, 1687132778.0], [1454198400000, 1687132778.0], [1454284800000, 1687132778.0], [1454371200000, 1687132778.0], [1454457600000, 1687132778.0], [1454544000000, 1687132778.0], [1454630400000, 1687132778.0], [1454716800000, 1687132778.0], [1454803200000, 1687132778.0], [1454889600000, 1687132778.0], [1454976000000, 1687132778.0], [1455062400000, 1687132778.0], [1455148800000, 1687132778.0], [1455235200000, 1687132778.0], [1455321600000, 1687132778.0], [1455408000000, 1687132778.0], [1455494400000, 1687132778.0], [1455580800000, 1687132778.0], [1455667200000, 1687132778.0], [1455753600000, 1687132778.0], [1455840000000, 1688017903.9], [1455926400000, 1688017903.9], [1456012800000, 1688017903.9], [1456099200000, 1688017903.9], [1456185600000, 1688017903.9], [1456272000000, 1688017903.9], [1456358400000, 1688017903.9], [1456444800000, 1727368775.3], [1456531200000, 1727368775.3], [1456617600000, 1727368775.3], [1456704000000, 1727368775.3], [1456790400000, 1727368775.3], [1456876800000, 1727368775.3], [1456963200000, 1727368775.3], [1457049600000, 1800029760.6], [1457136000000, 1800029760.6], [1457222400000, 1800029760.6], [1457308800000, 1800029760.6], [1457395200000, 1800029760.6], [1457481600000, 1800029760.6], [1457568000000, 1800029760.6], [1457654400000, 1878494398.7], [1457740800000, 1878494398.7], [1457827200000, 1878494398.7], [1457913600000, 1878494398.7], [1458000000000, 1878494398.7], [1458086400000, 1878494398.7], [1458172800000, 1878494398.7], [1458259200000, 1970166583.0], [1458345600000, 1970166583.0], [1458432000000, 1970166583.0], [1458518400000, 1970166583.0], [1458604800000, 1970166583.0], [1458691200000, 1970166583.0], [1458777600000, 1970166583.0], [1458864000000, 2040921551.2], [1458950400000, 2040921551.2], [1459036800000, 2040921551.2], [1459123200000, 2040921551.2], [1459209600000, 2040921551.2], [1459296000000, 2040921551.2], [1459382400000, 2040921551.2], [1459468800000, 2089293765.3], [1459555200000, 2089293765.3], [1459641600000, 2089293765.3], [1459728000000, 2089293765.3], [1459814400000, 2089293765.3], [1459900800000, 2089293765.3], [1459987200000, 2089293765.3], [1460073600000, 2102191753.3], [1460160000000, 2102191753.3], [1460246400000, 2102191753.3], [1460332800000, 2102191753.3], [1460419200000, 2102191753.3], [1460505600000, 2102191753.3], [1460592000000, 2102191753.3], [1460678400000, 2168940947.8], [1460764800000, 2168940947.8], [1460851200000, 2168940947.8], [1460937600000, 2168940947.8], [1461024000000, 2168940947.8], [1461110400000, 2168940947.8], [1461196800000, 2168940947.8], [1461283200000, 2233968053.6], [1461369600000, 2233968053.6], [1461456000000, 2233968053.6], [1461542400000, 2233968053.6], [1461628800000, 2233968053.6], [1461715200000, 2233968053.6], [1461801600000, 2233968053.6], [1461888000000, 2269876784.6], [1461974400000, 2269876784.6], [1462060800000, 2269876784.6], [1462147200000, 2269876784.6], [1462233600000, 2269876784.6], [1462320000000, 2269876784.6], [1462406400000, 2269876784.6], [1462492800000, 2339681113.8], [1462579200000, 2339681113.8], [1462665600000, 2339681113.8], [1462752000000, 2339681113.8], [1462838400000, 2339681113.8], [1462924800000, 2339681113.8], [1463011200000, 2339681113.8], [1463097600000, 2424104827.5], [1463184000000, 2424104827.5], [1463270400000, 2424104827.5], [1463356800000, 2424104827.5], [1463443200000, 2424104827.5], [1463529600000, 2424104827.5], [1463616000000, 2424104827.5], [1463702400000, 2496199546.4], [1463788800000, 2496199546.4], [1463875200000, 2496199546.4], [1463961600000, 2496199546.4], [1464048000000, 2496199546.4], [1464134400000, 2496199546.4], [1464220800000, 2496199546.4], [1464307200000, 2520942090.1], [1464393600000, 2520942090.1], [1464480000000, 2520942090.1], [1464566400000, 2520942090.1], [1464652800000, 2520942090.1], [1464739200000, 2520942090.1], [1464825600000, 2520942090.1], [1464912000000, 2560552020.3], [1464998400000, 2560552020.3], [1465084800000, 2560552020.3], [1465171200000, 2560552020.3], [1465257600000, 2560552020.3], [1465344000000, 2560552020.3], [1465430400000, 2560552020.3], [1465516800000, 2636172692.2], [1465603200000, 2636172692.2], [1465689600000, 2636172692.2], [1465776000000, 2636172692.2], [1465862400000, 2636172692.2], [1465948800000, 2636172692.2], [1466035200000, 2636172692.2], [1466121600000, 2674180960.5], [1466208000000, 2674180960.5], [1466294400000, 2674180960.5], [1466380800000, 2674180960.5], [1466467200000, 2674180960.5], [1466553600000, 2674180960.5], [1466640000000, 2674180960.5], [1466726400000, 2674769407.0], [1466812800000, 2674769407.0], [1466899200000, 2674769407.0], [1466985600000, 2674769407.0], [1467072000000, 2674769407.0], [1467158400000, 2674769407.0], [1467244800000, 2674769407.0], [1467331200000, 2674769407.0], [1467417600000, 2674769407.0], [1467504000000, 2674769407.0], [1467590400000, 2674769407.0], [1467676800000, 2674769407.0], [1467763200000, 2674769407.0], [1467849600000, 2674769407.0], [1467936000000, 2674769407.0], [1468022400000, 2674769407.0], [1468108800000, 2674769407.0], [1468195200000, 2674769407.0], [1468281600000, 2674769407.0], [1468368000000, 2674769407.0], [1468454400000, 2674769407.0], [1468540800000, 2674769407.0], [1468627200000, 2674769407.0], [1468713600000, 2674769407.0], [1468800000000, 2674769407.0], [1468886400000, 2674769407.0], [1468972800000, 2674769407.0], [1469059200000, 2674769407.0], [1469145600000, 2677904750.2], [1469232000000, 2677904750.2], [1469318400000, 2677904750.2], [1469404800000, 2677904750.2], [1469491200000, 2677904750.2], [1469577600000, 2677904750.2], [1469664000000, 2677904750.2], [1469750400000, 2706687916.2], [1469836800000, 2706687916.2], [1469923200000, 2706687916.2], [1470009600000, 2706687916.2], [1470096000000, 2706687916.2], [1470182400000, 2706687916.2], [1470268800000, 2706687916.2], [1470355200000, 2736496505.8], [1470441600000, 2736496505.8], [1470528000000, 2736496505.8], [1470614400000, 2736496505.8], [1470700800000, 2736496505.8], [1470787200000, 2736496505.8], [1470873600000, 2736496505.8], [1470960000000, 2770247638.5], [1471046400000, 2770247638.5], [1471132800000, 2770247638.5], [1471219200000, 2770247638.5], [1471305600000, 2770247638.5], [1471392000000, 2770247638.5], [1471478400000, 2770247638.5], [1471564800000, 2831698788.5], [1471651200000, 2831698788.5], [1471737600000, 2831698788.5], [1471824000000, 2831698788.5], [1471910400000, 2831698788.5], [1471996800000, 2831698788.5], [1472083200000, 2831698788.5], [1472169600000, 2910289354.5], [1472256000000, 2910289354.5], [1472342400000, 2910289354.5], [1472428800000, 2910289354.5], [1472515200000, 2910289354.5], [1472601600000, 2910289354.5], [1472688000000, 2910289354.5], [1472774400000, 2937536525.1], [1472860800000, 2937536525.1], [1472947200000, 2937536525.1], [1473033600000, 2937536525.1], [1473120000000, 2937536525.1], [1473206400000, 2937536525.1], [1473292800000, 2937536525.1], [1473379200000, 2952919167.4], [1473465600000, 2952919167.4], [1473552000000, 2952919167.4], [1473638400000, 2952919167.4], [1473724800000, 2952919167.4], [1473811200000, 2952919167.4], [1473897600000, 2952919167.4], [1473984000000, 2989469788.8], [1474070400000, 2989469788.8], [1474156800000, 2989469788.8], [1474243200000, 2989469788.8], [1474329600000, 2989469788.8], [1474416000000, 2989469788.8], [1474502400000, 2989469788.8], [1474588800000, 3038660352.1], [1474675200000, 3038660352.1], [1474761600000, 3038660352.1], [1474848000000, 3038660352.1], [1474934400000, 3038660352.1], [1475020800000, 3038660352.1], [1475107200000, 3038660352.1], [1475193600000, 3060164062.1], [1475280000000, 3060164062.1], [1475366400000, 3060164062.1], [1475452800000, 3060164062.1], [1475539200000, 3060164062.1], [1475625600000, 3060164062.1], [1475712000000, 3060164062.1], [1475798400000, 3069791211.0], [1475884800000, 3069791211.0], [1475971200000, 3069791211.0], [1476057600000, 3069791211.0], [1476144000000, 3069791211.0], [1476230400000, 3069791211.0], [1476316800000, 3069791211.0], [1476403200000, 3077967605.3], [1476489600000, 3077967605.3], [1476576000000, 3077967605.3], [1476662400000, 3077967605.3], [1476748800000, 3077967605.3], [1476835200000, 3077967605.3], [1476921600000, 3077967605.3], [1477008000000, 3086911292.0], [1477094400000, 3086911292.0], [1477180800000, 3086911292.0], [1477267200000, 3086911292.0], [1477353600000, 3086911292.0], [1477440000000, 3086911292.0], [1477526400000, 3086911292.0], [1477612800000, 3093069133.6], [1477699200000, 3093069133.6], [1477785600000, 3093069133.6], [1477872000000, 3093069133.6], [1477958400000, 3093069133.6], [1478044800000, 3093069133.6], [1478131200000, 3093069133.6], [1478217600000, 3098286129.1], [1478304000000, 3098286129.1], [1478390400000, 3098286129.1], [1478476800000, 3098286129.1], [1478563200000, 3098286129.1], [1478649600000, 3098286129.1], [1478736000000, 3098286129.1], [1478822400000, 3100076588.9], [1478908800000, 3100076588.9], [1478995200000, 3100076588.9], [1479081600000, 3100076588.9], [1479168000000, 3100076588.9], [1479254400000, 3100076588.9], [1479340800000, 3100076588.9], [1479427200000, 3100447015.0], [1479513600000, 3100447015.0], [1479600000000, 3100447015.0], [1479686400000, 3100447015.0], [1479772800000, 3100447015.0], [1479859200000, 3100447015.0], [1479945600000, 3100447015.0], [1480032000000, 3100447015.0], [1480118400000, 3100447015.0], [1480204800000, 3100447015.0], [1480291200000, 3100447015.0], [1480377600000, 3100447015.0], [1480464000000, 3100447015.0], [1480550400000, 3100447015.0], [1480636800000, 3108188640.7], [1480723200000, 3108188640.7], [1480809600000, 3108188640.7], [1480896000000, 3108188640.7], [1480982400000, 3108188640.7], [1481068800000, 3108188640.7], [1481155200000, 3108188640.7], [1481241600000, 3117631896.9], [1481328000000, 3117631896.9], [1481414400000, 3117631896.9], [1481500800000, 3117631896.9], [1481587200000, 3117631896.9], [1481673600000, 3117631896.9], [1481760000000, 3117631896.9], [1481846400000, 3127016045.0], [1481932800000, 3127016045.0], [1482019200000, 3127016045.0], [1482105600000, 3127016045.0], [1482192000000, 3127016045.0], [1482278400000, 3127016045.0], [1482364800000, 3127016045.0], [1482451200000, 3134166808.4], [1482537600000, 3134166808.4], [1482624000000, 3134166808.4], [1482710400000, 3134166808.4], [1482796800000, 3134166808.4], [1482883200000, 3134166808.4], [1482969600000, 3134166808.4], [1483056000000, 3141230838.1], [1483142400000, 3141230838.1], [1483228800000, 3141230838.1], [1483315200000, 3141230838.1], [1483401600000, 3141230838.1], [1483488000000, 3141230838.1], [1483574400000, 3141230838.1], [1483660800000, 3144874246.9], [1483747200000, 3144874246.9], [1483833600000, 3144874246.9], [1483920000000, 3144874246.9], [1484006400000, 3144874246.9], [1484092800000, 3144874246.9], [1484179200000, 3144874246.9], [1484265600000, 3147703602.1], [1484352000000, 3147703602.1], [1484438400000, 3147703602.1], [1484524800000, 3147703602.1], [1484611200000, 3147703602.1], [1484697600000, 3147703602.1], [1484784000000, 3147703602.1], [1484870400000, 3153467614.7], [1484956800000, 3153467614.7], [1485043200000, 3153467614.7], [1485129600000, 3153467614.7], [1485216000000, 3153467614.7], [1485302400000, 3153467614.7], [1485388800000, 3153467614.7], [1485475200000, 3159890691.3], [1485561600000, 3159890691.3], [1485648000000, 3159890691.3], [1485734400000, 3159890691.3], [1485820800000, 3159890691.3], [1485907200000, 3159890691.3], [1485993600000, 3159890691.3], [1486080000000, 3164232521.8], [1486166400000, 3164232521.8], [1486252800000, 3164232521.8], [1486339200000, 3164232521.8], [1486425600000, 3164232521.8], [1486512000000, 3164232521.8], [1486598400000, 3164232521.8], [1486684800000, 3173695067.4], [1486771200000, 3173695067.4], [1486857600000, 3173695067.4], [1486944000000, 3173695067.4], [1487030400000, 3173695067.4], [1487116800000, 3173695067.4], [1487203200000, 3173695067.4], [1487289600000, 3182485132.5], [1487376000000, 3182485132.5], [1487462400000, 3182485132.5], [1487548800000, 3182485132.5], [1487635200000, 3182485132.5], [1487721600000, 3182485132.5], [1487808000000, 3182485132.5], [1487894400000, 3197962348.0], [1487980800000, 3197962348.0], [1488067200000, 3197962348.0], [1488153600000, 3197962348.0], [1488240000000, 3197962348.0], [1488326400000, 3197962348.0], [1488412800000, 3197962348.0], [1488499200000, 3205575651.9], [1488585600000, 3205575651.9], [1488672000000, 3205575651.9], [1488758400000, 3205575651.9], [1488844800000, 3205575651.9], [1488931200000, 3205575651.9], [1489017600000, 3205575651.9], [1489104000000, 3211867967.3], [1489190400000, 3211867967.3], [1489276800000, 3211867967.3], [1489363200000, 3211867967.3], [1489449600000, 3211867967.3], [1489536000000, 3211867967.3], [1489622400000, 3211867967.3], [1489708800000, 3216990646.7], [1489795200000, 3216990646.7], [1489881600000, 3216990646.7], [1489968000000, 3216990646.7], [1490054400000, 3216990646.7], [1490140800000, 3216990646.7], [1490227200000, 3216990646.7], [1490313600000, 3239711486.4], [1490400000000, 3239711486.4], [1490486400000, 3239711486.4], [1490572800000, 3239711486.4], [1490659200000, 3239711486.4], [1490745600000, 3239711486.4], [1490832000000, 3239711486.4], [1490918400000, 3257992944.4], [1491004800000, 3257992944.4], [1491091200000, 3257992944.4], [1491177600000, 3257992944.4], [1491264000000, 3257992944.4], [1491350400000, 3257992944.4], [1491436800000, 3257992944.4], [1491523200000, 3262986485.2], [1491609600000, 3262986485.2], [1491696000000, 3262986485.2], [1491782400000, 3262986485.2], [1491868800000, 3262986485.2], [1491955200000, 3262986485.2], [1492041600000, 3262986485.2], [1492128000000, 3264879286.0], [1492214400000, 3264879286.0], [1492300800000, 3264879286.0], [1492387200000, 3264879286.0], [1492473600000, 3264879286.0], [1492560000000, 3264879286.0], [1492646400000, 3264879286.0], [1492732800000, 3290480754.2], [1492819200000, 3290480754.2], [1492905600000, 3290480754.2], [1492992000000, 3290480754.2], [1493078400000, 3290480754.2], [1493164800000, 3290480754.2], [1493251200000, 3290480754.2], [1493337600000, 3310557876.0], [1493424000000, 3310557876.0], [1493510400000, 3310557876.0], [1493596800000, 3310557876.0], [1493683200000, 3310557876.0], [1493769600000, 3310557876.0], [1493856000000, 3310557876.0], [1493942400000, 3368250330.1], [1494028800000, 3368250330.1], [1494115200000, 3368250330.1], [1494201600000, 3368250330.1], [1494288000000, 3368250330.1], [1494374400000, 3368250330.1], [1494460800000, 3368250330.1], [1494547200000, 3399239580.9], [1494633600000, 3399239580.9], [1494720000000, 3399239580.9], [1494806400000, 3399239580.9], [1494892800000, 3399239580.9], [1494979200000, 3399239580.9], [1495065600000, 3399239580.9], [1495152000000, 3423518074.9], [1495238400000, 3423518074.9], [1495324800000, 3423518074.9], [1495411200000, 3423518074.9], [1495497600000, 3423518074.9], [1495584000000, 3423518074.9], [1495670400000, 3423518074.9], [1495756800000, 3433154462.7], [1495843200000, 3433154462.7], [1495929600000, 3433154462.7], [1496016000000, 3433154462.7], [1496102400000, 3433154462.7], [1496188800000, 3433154462.7], [1496275200000, 3433154462.7], [1496361600000, 3444769730.3], [1496448000000, 3444769730.3], [1496534400000, 3444769730.3], [1496620800000, 3444769730.3], [1496707200000, 3444769730.3], [1496793600000, 3444769730.3], [1496880000000, 3444769730.3], [1496966400000, 3454376161.3], [1497052800000, 3454376161.3], [1497139200000, 3454376161.3], [1497225600000, 3454376161.3], [1497312000000, 3454376161.3], [1497398400000, 3454376161.3], [1497484800000, 3454376161.3], [1497571200000, 3464912029.8], [1497657600000, 3464912029.8], [1497744000000, 3464912029.8], [1497830400000, 3464912029.8], [1497916800000, 3464912029.8], [1498003200000, 3464912029.8], [1498089600000, 3464912029.8], [1498176000000, 3474144788.4], [1498262400000, 3474144788.4], [1498348800000, 3474144788.4], [1498435200000, 3474144788.4], [1498521600000, 3474144788.4], [1498608000000, 3474144788.4], [1498694400000, 3474144788.4], [1498780800000, 3517324250.1], [1498867200000, 3517324250.1], [1498953600000, 3517324250.1], [1499040000000, 3517324250.1], [1499126400000, 3517324250.1], [1499212800000, 3517324250.1], [1499299200000, 3517324250.1], [1499385600000, 3533711969.5], [1499472000000, 3533711969.5], [1499558400000, 3533711969.5], [1499644800000, 3533711969.5], [1499731200000, 3533711969.5], [1499817600000, 3533711969.5], [1499904000000, 3533711969.5], [1499990400000, 3551552890.9], [1500076800000, 3551552890.9], [1500163200000, 3551552890.9], [1500249600000, 3551552890.9], [1500336000000, 3551552890.9], [1500422400000, 3551552890.9], [1500508800000, 3551552890.9], [1500595200000, 3559047989.8], [1500681600000, 3559047989.8], [1500768000000, 3559047989.8], [1500854400000, 3559047989.8], [1500940800000, 3559047989.8], [1501027200000, 3559047989.8], [1501113600000, 3559047989.8], [1501200000000, 3561680645.0], [1501286400000, 3561680645.0], [1501372800000, 3561680645.0], [1501459200000, 3561680645.0], [1501545600000, 3561680645.0], [1501632000000, 3561680645.0], [1501718400000, 3561680645.0], [1501804800000, 3565947018.0], [1501891200000, 3565947018.0], [1501977600000, 3565947018.0], [1502064000000, 3565947018.0], [1502150400000, 3565947018.0], [1502236800000, 3565947018.0], [1502323200000, 3565947018.0], [1502409600000, 3567510826.0], [1502496000000, 3567510826.0], [1502582400000, 3567510826.0], [1502668800000, 3567510826.0], [1502755200000, 3567510826.0], [1502841600000, 3567510826.0], [1502928000000, 3567510826.0], [1503014400000, 3567510826.0], [1503100800000, 3567510826.0], [1503187200000, 3567510826.0], [1503273600000, 3567510826.0], [1503360000000, 3567510826.0], [1503446400000, 3567510826.0], [1503532800000, 3567510826.0], [1503619200000, 3567510826.0], [1503705600000, 3567510826.0], [1503792000000, 3567510826.0], [1503878400000, 3567510826.0], [1503964800000, 3567510826.0], [1504051200000, 3567510826.0], [1504137600000, 3567510826.0], [1504224000000, 3572668452.7], [1504310400000, 3572668452.7], [1504396800000, 3572668452.7], [1504483200000, 3572668452.7], [1504569600000, 3572668452.7], [1504656000000, 3572668452.7], [1504742400000, 3572668452.7], [1504828800000, 3627132019.8], [1504915200000, 3627132019.8], [1505001600000, 3627132019.8], [1505088000000, 3627132019.8], [1505174400000, 3627132019.8], [1505260800000, 3627132019.8], [1505347200000, 3627132019.8], [1505433600000, 3683115614.5], [1505520000000, 3683115614.5], [1505606400000, 3683115614.5], [1505692800000, 3683115614.5], [1505779200000, 3683115614.5], [1505865600000, 3683115614.5], [1505952000000, 3683115614.5], [1506038400000, 3707356297.4], [1506124800000, 3707356297.4], [1506211200000, 3707356297.4], [1506297600000, 3707356297.4], [1506384000000, 3707356297.4], [1506470400000, 3707356297.4], [1506556800000, 3707356297.4], [1506643200000, 3747144522.5], [1506729600000, 3747144522.5], [1506816000000, 3747144522.5], [1506902400000, 3747144522.5], [1506988800000, 3747144522.5], [1507075200000, 3747144522.5], [1507161600000, 3747144522.5], [1507248000000, 3769623386.7], [1507334400000, 3769623386.7], [1507420800000, 3769623386.7], [1507507200000, 3769623386.7], [1507593600000, 3769623386.7], [1507680000000, 3769623386.7], [1507766400000, 3769623386.7], [1507852800000, 3824023756.3], [1507939200000, 3824023756.3], [1508025600000, 3824023756.3], [1508112000000, 3824023756.3], [1508198400000, 3824023756.3], [1508284800000, 3824023756.3], [1508371200000, 3824023756.3], [1508457600000, 3839165864.7], [1508544000000, 3839165864.7], [1508630400000, 3839165864.7], [1508716800000, 3839165864.7], [1508803200000, 3839165864.7], [1508889600000, 3839165864.7], [1508976000000, 3839165864.7], [1509062400000, 3839931553.0], [1509148800000, 3839931553.0], [1509235200000, 3839931553.0], [1509321600000, 3839931553.0], [1509408000000, 3839931553.0], [1509494400000, 3839931553.0], [1509580800000, 3839931553.0], [1509667200000, 3848888369.5], [1509753600000, 3848888369.5], [1509840000000, 3848888369.5], [1509926400000, 3848888369.5], [1510012800000, 3848888369.5], [1510099200000, 3848888369.5], [1510185600000, 3848888369.5], [1510272000000, 3852008408.6], [1510358400000, 3852008408.6], [1510444800000, 3852008408.6], [1510531200000, 3852008408.6], [1510617600000, 3852008408.6], [1510704000000, 3852008408.6], [1510790400000, 3852008408.6], [1510876800000, 3853152259.7], [1510963200000, 3853152259.7], [1511049600000, 3853152259.7], [1511136000000, 3853152259.7], [1511222400000, 3853152259.7], [1511308800000, 3853152259.7], [1511395200000, 3853152259.7], [1511481600000, 3854751135.1], [1511568000000, 3854751135.1], [1511654400000, 3854751135.1], [1511740800000, 3854751135.1], [1511827200000, 3854751135.1], [1511913600000, 3854751135.1], [1512000000000, 3854751135.1], [1512086400000, 3865332394.2], [1512172800000, 3865332394.2], [1512259200000, 3865332394.2], [1512345600000, 3865332394.2], [1512432000000, 3865332394.2], [1512518400000, 3865332394.2], [1512604800000, 3865332394.2], [1512691200000, 3913754882.4], [1512777600000, 3913754882.4], [1512864000000, 3913754882.4], [1512950400000, 3913754882.4], [1513036800000, 3913754882.4], [1513123200000, 3913754882.4], [1513209600000, 3913754882.4], [1513296000000, 3961599594.0], [1513382400000, 3961599594.0], [1513468800000, 3961599594.0], [1513555200000, 3961599594.0], [1513641600000, 3961599594.0], [1513728000000, 3961599594.0], [1513814400000, 3961599594.0], [1513900800000, 4006371914.5], [1513987200000, 4006371914.5], [1514073600000, 4006371914.5], [1514160000000, 4006371914.5], [1514246400000, 4006371914.5], [1514332800000, 4006371914.5], [1514419200000, 4006371914.5], [1514505600000, 4036966874.6], [1514592000000, 4036966874.6], [1514678400000, 4036966874.6], [1514764800000, 4036966874.6], [1514851200000, 4036966874.6], [1514937600000, 4036966874.6], [1515024000000, 4036966874.6], [1515110400000, 4094629146.6], [1515196800000, 4094629146.6], [1515283200000, 4094629146.6], [1515369600000, 4094629146.6], [1515456000000, 4094629146.6], [1515542400000, 4094629146.6], [1515628800000, 4094629146.6], [1515715200000, 4121388430.3], [1515801600000, 4121388430.3], [1515888000000, 4121388430.3], [1515974400000, 4121388430.3], [1516060800000, 4121388430.3], [1516147200000, 4121388430.3], [1516233600000, 4121388430.3], [1516320000000, 4130367685.4], [1516406400000, 4130367685.4], [1516492800000, 4130367685.4], [1516579200000, 4130367685.4], [1516665600000, 4130367685.4], [1516752000000, 4130367685.4], [1516838400000, 4130367685.4], [1516924800000, 4130492226.0], [1517011200000, 4130492226.0], [1517097600000, 4130492226.0], [1517184000000, 4130492226.0], [1517270400000, 4130492226.0], [1517356800000, 4130492226.0], [1517443200000, 4130492226.0], [1517529600000, 4130492226.0], [1517616000000, 4130492226.0], [1517702400000, 4130492226.0], [1517788800000, 4130492226.0], [1517875200000, 4130492226.0], [1517961600000, 4130492226.0], [1518048000000, 4130492226.0], [1518134400000, 4137425464.6], [1518220800000, 4137425464.6], [1518307200000, 4137425464.6], [1518393600000, 4137425464.6], [1518480000000, 4137425464.6], [1518566400000, 4137425464.6], [1518652800000, 4137425464.6], [1518739200000, 4163188852.0], [1518825600000, 4163188852.0], [1518912000000, 4163188852.0], [1518998400000, 4163188852.0], [1519084800000, 4163188852.0], [1519171200000, 4163188852.0], [1519257600000, 4163188852.0], [1519344000000, 4188009091.6], [1519430400000, 4188009091.6], [1519516800000, 4188009091.6], [1519603200000, 4188009091.6], [1519689600000, 4188009091.6], [1519776000000, 4188009091.6], [1519862400000, 4188009091.6], [1519948800000, 4201958584.4], [1520035200000, 4201958584.4], [1520121600000, 4201958584.4], [1520208000000, 4201958584.4], [1520294400000, 4201958584.4], [1520380800000, 4201958584.4], [1520467200000, 4201958584.4], [1520553600000, 4229810198.6], [1520640000000, 4229810198.6], [1520726400000, 4229810198.6], [1520812800000, 4229810198.6], [1520899200000, 4229810198.6], [1520985600000, 4229810198.6], [1521072000000, 4229810198.6], [1521158400000, 4250833200.9], [1521244800000, 4250833200.9], [1521331200000, 4250833200.9], [1521417600000, 4250833200.9], [1521504000000, 4250833200.9], [1521590400000, 4250833200.9], [1521676800000, 4250833200.9], [1521763200000, 4289586633.8], [1521849600000, 4289586633.8], [1521936000000, 4289586633.8], [1522022400000, 4289586633.8], [1522108800000, 4289586633.8], [1522195200000, 4289586633.8], [1522281600000, 4289586633.8], [1522368000000, 4340918633.5], [1522454400000, 4340918633.5], [1522540800000, 4340918633.5], [1522627200000, 4340918633.5], [1522713600000, 4340918633.5], [1522800000000, 4340918633.5], [1522886400000, 4340918633.5], [1522972800000, 4389524454.7], [1523059200000, 4389524454.7], [1523145600000, 4389524454.7], [1523232000000, 4389524454.7], [1523318400000, 4389524454.7], [1523404800000, 4389524454.7], [1523491200000, 4389524454.7], [1523577600000, 4415776600.0], [1523664000000, 4415776600.0], [1523750400000, 4415776600.0], [1523836800000, 4415776600.0], [1523923200000, 4415776600.0], [1524009600000, 4415776600.0], [1524096000000, 4415776600.0], [1524182400000, 4448152410.1], [1524268800000, 4448152410.1], [1524355200000, 4448152410.1], [1524441600000, 4448152410.1], [1524528000000, 4448152410.1], [1524614400000, 4448152410.1], [1524700800000, 4448152410.1], [1524787200000, 4481219472.7], [1524873600000, 4481219472.7], [1524960000000, 4481219472.7], [1525046400000, 4481219472.7], [1525132800000, 4481219472.7], [1525219200000, 4481219472.7], [1525305600000, 4481219472.7], [1525392000000, 4509558579.1], [1525478400000, 4509558579.1], [1525564800000, 4509558579.1], [1525651200000, 4509558579.1], [1525737600000, 4509558579.1], [1525824000000, 4509558579.1], [1525910400000, 4509558579.1], [1525996800000, 4515240524.1], [1526083200000, 4515240524.1], [1526169600000, 4515240524.1], [1526256000000, 4515240524.1], [1526342400000, 4515240524.1], [1526428800000, 4515240524.1], [1526515200000, 4515240524.1], [1526601600000, 4533993353.4], [1526688000000, 4533993353.4], [1526774400000, 4533993353.4], [1526860800000, 4533993353.4], [1526947200000, 4533993353.4], [1527033600000, 4533993353.4], [1527120000000, 4533993353.4], [1527206400000, 4536257204.0], [1527292800000, 4536257204.0], [1527379200000, 4536257204.0], [1527465600000, 4536257204.0], [1527552000000, 4536257204.0], [1527638400000, 4536257204.0], [1527724800000, 4536257204.0], [1527811200000, 4561189705.6], [1527897600000, 4561189705.6], [1527984000000, 4561189705.6], [1528070400000, 4561189705.6], [1528156800000, 4561189705.6], [1528243200000, 4561189705.6], [1528329600000, 4561189705.6], [1528416000000, 4579162535.4], [1528502400000, 4579162535.4], [1528588800000, 4579162535.4], [1528675200000, 4579162535.4], [1528761600000, 4579162535.4], [1528848000000, 4579162535.4], [1528934400000, 4579162535.4], [1529020800000, 4579199413.0], [1529107200000, 4579199413.0], [1529193600000, 4579199413.0], [1529280000000, 4579199413.0], [1529366400000, 4579199413.0], [1529452800000, 4579199413.0], [1529539200000, 4579199413.0], [1529625600000, 4579230272.4], [1529712000000, 4579230272.4], [1529798400000, 4579230272.4], [1529884800000, 4579230272.4], [1529971200000, 4579230272.4], [1530057600000, 4579230272.4], [1530144000000, 4579230272.4], [1530230400000, 4611610161.9], [1530316800000, 4611610161.9], [1530403200000, 4611610161.9], [1530489600000, 4611610161.9], [1530576000000, 4611610161.9], [1530662400000, 4611610161.9], [1530748800000, 4611610161.9], [1530835200000, 4668906585.7], [1530921600000, 4668906585.7], [1531008000000, 4668906585.7], [1531094400000, 4668906585.7], [1531180800000, 4668906585.7], [1531267200000, 4668906585.7], [1531353600000, 4668906585.7], [1531440000000, 4711454679.5], [1531526400000, 4711454679.5], [1531612800000, 4711454679.5], [1531699200000, 4711454679.5], [1531785600000, 4711454679.5], [1531872000000, 4711454679.5], [1531958400000, 4711454679.5], [1532044800000, 4747686979.8], [1532131200000, 4747686979.8], [1532217600000, 4747686979.8], [1532304000000, 4747686979.8], [1532390400000, 4747686979.8], [1532476800000, 4747686979.8], [1532563200000, 4747686979.8], [1532649600000, 4772156580.9], [1532736000000, 4772156580.9], [1532822400000, 4772156580.9], [1532908800000, 4772156580.9], [1532995200000, 4772156580.9], [1533081600000, 4772156580.9], [1533168000000, 4772156580.9], [1533254400000, 4780442196.0], [1533340800000, 4780442196.0], [1533427200000, 4780442196.0], [1533513600000, 4780442196.0], [1533600000000, 4780442196.0], [1533686400000, 4780442196.0], [1533772800000, 4780442196.0], [1533859200000, 4781805127.9], [1533945600000, 4781805127.9], [1534032000000, 4781805127.9], [1534118400000, 4781805127.9], [1534204800000, 4781805127.9], [1534291200000, 4781805127.9], [1534377600000, 4781805127.9], [1534464000000, 4782088322.8], [1534550400000, 4782088322.8], [1534636800000, 4782088322.8], [1534723200000, 4782088322.8], [1534809600000, 4782088322.8], [1534896000000, 4782088322.8], [1534982400000, 4782088322.8], [1535068800000, 4782131719.0], [1535155200000, 4782131719.0], [1535241600000, 4782131719.0], [1535328000000, 4782131719.0], [1535414400000, 4782131719.0], [1535500800000, 4782131719.0], [1535587200000, 4782131719.0], [1535673600000, 4782131719.0], [1535760000000, 4782131719.0], [1535846400000, 4782131719.0], [1535932800000, 4782131719.0], [1536019200000, 4782131719.0], [1536105600000, 4782131719.0], [1536192000000, 4782131719.0], [1536278400000, 4782131719.0], [1536364800000, 4782131719.0], [1536451200000, 4782131719.0], [1536537600000, 4782131719.0], [1536624000000, 4782131719.0], [1536710400000, 4782131719.0], [1536796800000, 4782131719.0], [1536883200000, 4880892606.3], [1536969600000, 4880892606.3], [1537056000000, 4880892606.3], [1537142400000, 4880892606.3], [1537228800000, 4880892606.3], [1537315200000, 4880892606.3], [1537401600000, 4880892606.3], [1537488000000, 4984423896.1], [1537574400000, 4984423896.1], [1537660800000, 4984423896.1], [1537747200000, 4984423896.1], [1537833600000, 4984423896.1], [1537920000000, 4984423896.1], [1538006400000, 4984423896.1], [1538092800000, 5009103270.4], [1538179200000, 5009103270.4], [1538265600000, 5009103270.4], [1538352000000, 5009103270.4], [1538438400000, 5009103270.4], [1538524800000, 5009103270.4], [1538611200000, 5009103270.4], [1538697600000, 5041689025.3], [1538784000000, 5041689025.3], [1538870400000, 5041689025.3], [1538956800000, 5041689025.3], [1539043200000, 5041689025.3], [1539129600000, 5041689025.3], [1539216000000, 5041689025.3], [1539302400000, 5097672356.1], [1539388800000, 5097672356.1], [1539475200000, 5097672356.1], [1539561600000, 5097672356.1], [1539648000000, 5097672356.1], [1539734400000, 5097672356.1], [1539820800000, 5097672356.1], [1539907200000, 5121956379.0], [1539993600000, 5121956379.0], [1540080000000, 5121956379.0], [1540166400000, 5121956379.0], [1540252800000, 5121956379.0], [1540339200000, 5121956379.0], [1540425600000, 5121956379.0], [1540512000000, 5180409982.3], [1540598400000, 5180409982.3], [1540684800000, 5180409982.3], [1540771200000, 5180409982.3], [1540857600000, 5180409982.3], [1540944000000, 5180409982.3], [1541030400000, 5180409982.3], [1541116800000, 5239346453.4], [1541203200000, 5239346453.4], [1541289600000, 5239346453.4], [1541376000000, 5239346453.4], [1541462400000, 5239346453.4], [1541548800000, 5239346453.4], [1541635200000, 5239346453.4], [1541721600000, 5273622660.8], [1541808000000, 5273622660.8], [1541894400000, 5273622660.8], [1541980800000, 5273622660.8], [1542067200000, 5273622660.8], [1542153600000, 5273622660.8], [1542240000000, 5273622660.8], [1542326400000, 5305475989.8], [1542412800000, 5305475989.8], [1542499200000, 5305475989.8], [1542585600000, 5305475989.8], [1542672000000, 5305475989.8], [1542758400000, 5305475989.8], [1542844800000, 5305475989.8], [1542931200000, 5326421652.1], [1543017600000, 5326421652.1], [1543104000000, 5326421652.1], [1543190400000, 5326421652.1], [1543276800000, 5326421652.1], [1543363200000, 5326421652.1], [1543449600000, 5326421652.1], [1543536000000, 5338819199.4], [1543622400000, 5338819199.4], [1543708800000, 5338819199.4], [1543795200000, 5338819199.4], [1543881600000, 5338819199.4], [1543968000000, 5338819199.4], [1544054400000, 5338819199.4], [1544140800000, 5362215171.7], [1544227200000, 5362215171.7], [1544313600000, 5362215171.7], [1544400000000, 5362215171.7], [1544486400000, 5362215171.7], [1544572800000, 5362215171.7], [1544659200000, 5362215171.7], [1544745600000, 5388943186.6], [1544832000000, 5388943186.6], [1544918400000, 5388943186.6], [1545004800000, 5388943186.6], [1545091200000, 5388943186.6], [1545177600000, 5388943186.6], [1545264000000, 5388943186.6], [1545350400000, 5429292655.6], [1545436800000, 5429292655.6], [1545523200000, 5429292655.6], [1545609600000, 5429292655.6], [1545696000000, 5429292655.6], [1545782400000, 5429292655.6], [1545868800000, 5429292655.6], [1545955200000, 5483835682.0], [1546041600000, 5483835682.0], [1546128000000, 5483835682.0], [1546214400000, 5483835682.0], [1546300800000, 5483835682.0], [1546387200000, 5483835682.0], [1546473600000, 5483835682.0], [1546560000000, 5527388245.6], [1546646400000, 5527388245.6], [1546732800000, 5527388245.6], [1546819200000, 5527388245.6], [1546905600000, 5527388245.6], [1546992000000, 5527388245.6], [1547078400000, 5527388245.6], [1547164800000, 5563602655.9], [1547251200000, 5563602655.9], [1547337600000, 5563602655.9], [1547424000000, 5563602655.9], [1547510400000, 5563602655.9], [1547596800000, 5563602655.9], [1547683200000, 5563602655.9], [1547769600000, 5592666279.0], [1547856000000, 5592666279.0], [1547942400000, 5592666279.0], [1548028800000, 5592666279.0], [1548115200000, 5592666279.0], [1548201600000, 5592666279.0], [1548288000000, 5592666279.0], [1548374400000, 5621174744.7], [1548460800000, 5621174744.7], [1548547200000, 5621174744.7], [1548633600000, 5621174744.7], [1548720000000, 5621174744.7], [1548806400000, 5621174744.7], [1548892800000, 5621174744.7], [1548979200000, 5655184653.4], [1549065600000, 5655184653.4], [1549152000000, 5655184653.4], [1549238400000, 5655184653.4], [1549324800000, 5655184653.4], [1549411200000, 5655184653.4], [1549497600000, 5655184653.4], [1549584000000, 5685682899.0], [1549670400000, 5685682899.0], [1549756800000, 5685682899.0], [1549843200000, 5685682899.0], [1549929600000, 5685682899.0], [1550016000000, 5685682899.0], [1550102400000, 5685682899.0], [1550188800000, 5685682899.0], [1550275200000, 5685682899.0], [1550361600000, 5685682899.0], [1550448000000, 5685682899.0], [1550534400000, 5685682899.0], [1550620800000, 5685682899.0], [1550707200000, 5685682899.0], [1550793600000, 5685682899.0], [1550880000000, 5685682899.0], [1550966400000, 5685682899.0], [1551052800000, 5685682899.0], [1551139200000, 5685682899.0], [1551225600000, 5685682899.0], [1551312000000, 5685682899.0], [1551398400000, 5685682899.0], [1551484800000, 5685682899.0], [1551571200000, 5685682899.0], [1551657600000, 5685682899.0], [1551744000000, 5685682899.0], [1551830400000, 5685682899.0], [1551916800000, 5685682899.0], [1552003200000, 5685682899.0], [1552089600000, 5685682899.0], [1552176000000, 5685682899.0], [1552262400000, 5685682899.0], [1552348800000, 5685682899.0], [1552435200000, 5685682899.0], [1552521600000, 5685682899.0], [1552608000000, 5685682899.0], [1552694400000, 5685682899.0], [1552780800000, 5685682899.0], [1552867200000, 5685682899.0], [1552953600000, 5685682899.0], [1553040000000, 5685682899.0], [1553126400000, 5685682899.0], [1553212800000, 5685682899.0], [1553299200000, 5685682899.0], [1553385600000, 5685682899.0], [1553472000000, 5685682899.0], [1553558400000, 5685682899.0], [1553644800000, 5685682899.0], [1553731200000, 5685682899.0], [1553817600000, 5812586422.1], [1553904000000, 5812586422.1], [1553990400000, 5812586422.1], [1554076800000, 5812586422.1], [1554163200000, 5812586422.1], [1554249600000, 5812586422.1], [1554336000000, 5812586422.1], [1554422400000, 5848103230.6], [1554508800000, 5848103230.6], [1554595200000, 5848103230.6], [1554681600000, 5848103230.6], [1554768000000, 5848103230.6], [1554854400000, 5848103230.6], [1554940800000, 5848103230.6], [1555027200000, 5867793950.8], [1555113600000, 5867793950.8], [1555200000000, 5867793950.8], [1555286400000, 5867793950.8], [1555372800000, 5867793950.8], [1555459200000, 5867793950.8], [1555545600000, 5867793950.8], [1555632000000, 5878495920.2], [1555718400000, 5878495920.2], [1555804800000, 5878495920.2], [1555891200000, 5878495920.2], [1555977600000, 5878495920.2], [1556064000000, 5878495920.2], [1556150400000, 5878495920.2], [1556236800000, 5902796526.1], [1556323200000, 5902796526.1], [1556409600000, 5902796526.1], [1556496000000, 5902796526.1], [1556582400000, 5902796526.1], [1556668800000, 5902796526.1], [1556755200000, 5902796526.1], [1556841600000, 5921197125.1], [1556928000000, 5921197125.1], [1557014400000, 5921197125.1], [1557100800000, 5921197125.1], [1557187200000, 5921197125.1], [1557273600000, 5921197125.1], [1557360000000, 5921197125.1], [1557446400000, 5924743567.0], [1557532800000, 5924743567.0], [1557619200000, 5924743567.0], [1557705600000, 5924743567.0], [1557792000000, 5924743567.0], [1557878400000, 5924743567.0], [1557964800000, 5924743567.0], [1558051200000, 5935206630.2], [1558137600000, 5935206630.2], [1558224000000, 5935206630.2], [1558310400000, 5935206630.2], [1558396800000, 5935206630.2], [1558483200000, 5935206630.2], [1558569600000, 5935206630.2], [1558656000000, 5952888617.7], [1558742400000, 5952888617.7], [1558828800000, 5952888617.7], [1558915200000, 5952888617.7], [1559001600000, 5952888617.7], [1559088000000, 5952888617.7], [1559174400000, 5952888617.7], [1559260800000, 5957273357.3], [1559347200000, 5957273357.3], [1559433600000, 5957273357.3], [1559520000000, 5957273357.3], [1559606400000, 5957273357.3], [1559692800000, 5957273357.3], [1559779200000, 5957273357.3], [1559865600000, 5960812924.0], [1559952000000, 5960812924.0], [1560038400000, 5960812924.0], [1560124800000, 5960812924.0], [1560211200000, 5960812924.0], [1560297600000, 5960812924.0], [1560384000000, 5960812924.0]], "origin": [[1521417600000, 83797299.781], [1521504000000, 83797299.781], [1521590400000, 83797299.781], [1521676800000, 83797299.781], [1521763200000, 83797826.562], [1521849600000, 83797826.562], [1521936000000, 83797826.562], [1522022400000, 83797826.562], [1522108800000, 83798437.909], [1522195200000, 83798437.909], [1522281600000, 83798437.909], [1522368000000, 83798437.909], [1522454400000, 83799151.255], [1522540800000, 83799151.255], [1522627200000, 83799151.255], [1522713600000, 83799151.255], [1522800000000, 83799701.744], [1522886400000, 83799701.744], [1522972800000, 83799701.744], [1523059200000, 83799701.744], [1523145600000, 83800104.171], [1523232000000, 83800104.171], [1523318400000, 83800104.171], [1523404800000, 83800104.171], [1523491200000, 83800517.545], [1523577600000, 83800517.545], [1523664000000, 83800517.545], [1523750400000, 83800517.545], [1523836800000, 83801525.886], [1523923200000, 83801525.886], [1524009600000, 83801525.886], [1524096000000, 83801525.886], [1524182400000, 83801554.576], [1524268800000, 83801554.576], [1524355200000, 83801554.576], [1524441600000, 83801554.576], [1524528000000, 83801601.006], [1524614400000, 83801601.006], [1524700800000, 83801601.006], [1524787200000, 83801601.006], [1524873600000, 83801632.16], [1524960000000, 83801632.16], [1525046400000, 83801632.16], [1525132800000, 83801632.16], [1525219200000, 83801648.614], [1525305600000, 83801648.614], [1525392000000, 83801648.614], [1525478400000, 83801648.614], [1525564800000, 83801679.332], [1525651200000, 83801679.332], [1525737600000, 83801679.332], [1525824000000, 83801679.332], [1525910400000, 83801698.351], [1525996800000, 83801698.351], [1526083200000, 83801698.351], [1526169600000, 83801698.351], [1526256000000, 83801733.787], [1526342400000, 83801733.787], [1526428800000, 83801733.787], [1526515200000, 83801733.787], [1526601600000, 83801785.367], [1526688000000, 83801785.367], [1526774400000, 83801785.367], [1526860800000, 83801785.367], [1526947200000, 83801797.0], [1527033600000, 83801797.0], [1527120000000, 83801797.0], [1527206400000, 83801797.0], [1527292800000, 83801797.0], [1527379200000, 83801797.0], [1527465600000, 83801797.0], [1527552000000, 83801797.0], [1527638400000, 83803487.095], [1527724800000, 83803487.095], [1527811200000, 83803487.095], [1527897600000, 83803487.095], [1527984000000, 83821424.973], [1528070400000, 83821424.973], [1528156800000, 83821424.973], [1528243200000, 83821424.973], [1528329600000, 83834738.035], [1528416000000, 83834738.035], [1528502400000, 83834738.035], [1528588800000, 83834738.035], [1528675200000, 83835219.682], [1528761600000, 83835219.682], [1528848000000, 83835219.682], [1528934400000, 83835219.682], [1529020800000, 83835273.283], [1529107200000, 83835273.283], [1529193600000, 83835273.283], [1529280000000, 83835273.283], [1529366400000, 83835274.0], [1529452800000, 83835274.0], [1529539200000, 83835274.0], [1529625600000, 83835274.0], [1529712000000, 83835274.0], [1529798400000, 83835274.0], [1529884800000, 83835274.0], [1529971200000, 83835274.0], [1530057600000, 83838069.081], [1530144000000, 83838069.081], [1530230400000, 83838069.081], [1530316800000, 83838069.081], [1530403200000, 83866757.094], [1530489600000, 83866757.094], [1530576000000, 83866757.094], [1530662400000, 83866757.094], [1530748800000, 83904339.598], [1530835200000, 83904339.598], [1530921600000, 83904339.598], [1531008000000, 83904339.598], [1531094400000, 83936703.098], [1531180800000, 83936703.098], [1531267200000, 83936703.098], [1531353600000, 83936703.098], [1531440000000, 83970967.575], [1531526400000, 83970967.575], [1531612800000, 83970967.575], [1531699200000, 83970967.575], [1531785600000, 84013267.917], [1531872000000, 84013267.917], [1531958400000, 84013267.917], [1532044800000, 84013267.917], [1532131200000, 84628660.056], [1532217600000, 84628660.056], [1532304000000, 84628660.056], [1532390400000, 84628660.056], [1532476800000, 84644921.608], [1532563200000, 84644921.608], [1532649600000, 84644921.608], [1532736000000, 84644921.608], [1532822400000, 84652962.277], [1532908800000, 84652962.277], [1532995200000, 84652962.277], [1533081600000, 84652962.277], [1533168000000, 84657684.12], [1533254400000, 84657684.12], [1533340800000, 84657684.12], [1533427200000, 84657684.12], [1533513600000, 84659249.42], [1533600000000, 84659249.42], [1533686400000, 84659249.42], [1533772800000, 84659249.42], [1533859200000, 84659714.893], [1533945600000, 84659714.893], [1534032000000, 84659714.893], [1534118400000, 84659714.893], [1534204800000, 84659811.537], [1534291200000, 84659811.537], [1534377600000, 84659811.537], [1534464000000, 84659811.537], [1534550400000, 84660341.048], [1534636800000, 84660341.048], [1534723200000, 84660341.048], [1534809600000, 84660341.048], [1534896000000, 84670682.784], [1534982400000, 84670682.784], [1535068800000, 84670682.784], [1535155200000, 84670682.784], [1535241600000, 84691813.483], [1535328000000, 84691813.483], [1535414400000, 84691813.483], [1535500800000, 84691813.483], [1535587200000, 84717961.459], [1535673600000, 84717961.459], [1535760000000, 84717961.459], [1535846400000, 84717961.459], [1535932800000, 84756987.747], [1536019200000, 84756987.747], [1536105600000, 84756987.747], [1536192000000, 84756987.747], [1536278400000, 84807156.696], [1536364800000, 84807156.696], [1536451200000, 84807156.696], [1536537600000, 84807156.696], [1536624000000, 84862113.899], [1536710400000, 84862113.899], [1536796800000, 84862113.899], [1536883200000, 84862113.899], [1536969600000, 84880824.665], [1537056000000, 84880824.665], [1537142400000, 84880824.665], [1537228800000, 84880824.665], [1537315200000, 84946509.399], [1537401600000, 84946509.399], [1537488000000, 84946509.399], [1537574400000, 84946509.399], [1537660800000, 85117928.077], [1537747200000, 85117928.077], [1537833600000, 85117928.077], [1537920000000, 85117928.077], [1538006400000, 85151877.448], [1538092800000, 85151877.448], [1538179200000, 85151877.448], [1538265600000, 85151877.448], [1538352000000, 85195274.03], [1538438400000, 85195274.03], [1538524800000, 85195274.03], [1538611200000, 85195274.03], [1538697600000, 85213868.535], [1538784000000, 85213868.535], [1538870400000, 85213868.535], [1538956800000, 85213868.535], [1539043200000, 85263763.555], [1539129600000, 85263763.555], [1539216000000, 85263763.555], [1539302400000, 85263763.555], [1539388800000, 85339873.564], [1539475200000, 85339873.564], [1539561600000, 85339873.564], [1539648000000, 85339873.564], [1539734400000, 85492951.692], [1539820800000, 85492951.692], [1539907200000, 85492951.692], [1539993600000, 85492951.692], [1540080000000, 85643831.24], [1540166400000, 85643831.24], [1540252800000, 85643831.24], [1540339200000, 85643831.24], [1540425600000, 85748002.197], [1540512000000, 85748002.197], [1540598400000, 85748002.197], [1540684800000, 85748002.197], [1540771200000, 85860877.327], [1540857600000, 85860877.327], [1540944000000, 85860877.327], [1541030400000, 85860877.327], [1541116800000, 85977347.845], [1541203200000, 85977347.845], [1541289600000, 85977347.845], [1541376000000, 85977347.845], [1541462400000, 86080902.281], [1541548800000, 86080902.281], [1541635200000, 86080902.281], [1541721600000, 86080902.281], [1541808000000, 86178273.357], [1541894400000, 86178273.357], [1541980800000, 86178273.357], [1542067200000, 86178273.357], [1542153600000, 86287227.035], [1542240000000, 86287227.035], [1542326400000, 86287227.035], [1542412800000, 86287227.035], [1542499200000, 86382677.247], [1542585600000, 86382677.247], [1542672000000, 86382677.247], [1542758400000, 86382677.247], [1542844800000, 86451289.953], [1542931200000, 86451289.953], [1543017600000, 86451289.953], [1543104000000, 86451289.953], [1543190400000, 86517425.006], [1543276800000, 86517425.006], [1543363200000, 86517425.006], [1543449600000, 86517425.006], [1543536000000, 86563100.171], [1543622400000, 86563100.171], [1543708800000, 86563100.171], [1543795200000, 86563100.171], [1543881600000, 86606209.243], [1543968000000, 86606209.243], [1544054400000, 86606209.243], [1544140800000, 86606209.243], [1544227200000, 86707918.215], [1544313600000, 86707918.215], [1544400000000, 86707918.215], [1544486400000, 86707918.215], [1544572800000, 86838767.03], [1544659200000, 86838767.03], [1544745600000, 86838767.03], [1544832000000, 86838767.03], [1544918400000, 86918211.635], [1545004800000, 86918211.635], [1545091200000, 86918211.635], [1545177600000, 86918211.635], [1545264000000, 87057779.888], [1545350400000, 87057779.888], [1545436800000, 87057779.888], [1545523200000, 87057779.888], [1545609600000, 87580814.427], [1545696000000, 87580814.427], [1545782400000, 87580814.427], [1545868800000, 87580814.427], [1545955200000, 88070465.494], [1546041600000, 88070465.494], [1546128000000, 88070465.494], [1546214400000, 88070465.494], [1546300800000, 88090183.39], [1546387200000, 88090183.39], [1546473600000, 88090183.39], [1546560000000, 88090183.39], [1546646400000, 88090648.861], [1546732800000, 88090648.861], [1546819200000, 88090648.861], [1546905600000, 88090648.861], [1546992000000, 88091069.223], [1547078400000, 88091069.223], [1547164800000, 88091069.223], [1547251200000, 88091069.223], [1547337600000, 88091773.443], [1547424000000, 88091773.443], [1547510400000, 88091773.443], [1547596800000, 88091773.443], [1547683200000, 88274454.771], [1547769600000, 88274454.771], [1547856000000, 88274454.771], [1547942400000, 88274454.771], [1548028800000, 88288393.804], [1548115200000, 88288393.804], [1548201600000, 88288393.804], [1548288000000, 88288393.804], [1548374400000, 88289573.711], [1548460800000, 88289573.711], [1548547200000, 88289573.711], [1548633600000, 88289573.711], [1548720000000, 88290192.882], [1548806400000, 88290192.882], [1548892800000, 88290192.882], [1548979200000, 88290192.882], [1549065600000, 88290600.116], [1549152000000, 88290600.116], [1549238400000, 88290600.116], [1549324800000, 88290600.116], [1549411200000, 88291347.162], [1549497600000, 88291347.162], [1549584000000, 88291347.162], [1549670400000, 88291347.162], [1549756800000, 88291473.0], [1549843200000, 88291473.0], [1549929600000, 88291473.0], [1550016000000, 88291473.0], [1550102400000, 88291736.571], [1550188800000, 88291736.571], [1550275200000, 88291736.571], [1550361600000, 88291736.571], [1550448000000, 88293238.46], [1550534400000, 88293238.46], [1550620800000, 88293238.46], [1550707200000, 88293238.46], [1550793600000, 88293899.684], [1550880000000, 88293899.684], [1550966400000, 88293899.684], [1551052800000, 88293899.684], [1551139200000, 88294309.49], [1551225600000, 88294309.49], [1551312000000, 88294309.49], [1551398400000, 88294309.49], [1551484800000, 88294318.782], [1551571200000, 88294318.782], [1551657600000, 88294318.782], [1551744000000, 88294318.782], [1551830400000, 88294320.0], [1551916800000, 88294320.0], [1552003200000, 88294320.0], [1552089600000, 88294320.0], [1552176000000, 88294334.673], [1552262400000, 88294334.673], [1552348800000, 88294334.673], [1552435200000, 88294334.673], [1552521600000, 88295190.409], [1552608000000, 88295190.409], [1552694400000, 88295190.409], [1552780800000, 88295190.409], [1552867200000, 88297546.969], [1552953600000, 88297546.969], [1553040000000, 88297546.969], [1553126400000, 88297546.969], [1553212800000, 88297582.024], [1553299200000, 88297582.024], [1553385600000, 88297582.024], [1553472000000, 88297582.024], [1553558400000, 88297586.0], [1553644800000, 88297586.0], [1553731200000, 88297586.0], [1553817600000, 88297586.0], [1553904000000, 88297600.556], [1553990400000, 88297600.556], [1554076800000, 88297600.556], [1554163200000, 88297600.556], [1554249600000, 88297612.232], [1554336000000, 88297612.232], [1554422400000, 88297612.232], [1554508800000, 88297612.232], [1554595200000, 88297677.569], [1554681600000, 88297677.569], [1554768000000, 88297677.569], [1554854400000, 88297677.569], [1554940800000, 88352782.448], [1555027200000, 88352782.448], [1555113600000, 88352782.448], [1555200000000, 88352782.448], [1555286400000, 89248845.516], [1555372800000, 89248845.516], [1555459200000, 89248845.516], [1555545600000, 89248845.516], [1555632000000, 89251175.1], [1555718400000, 89251175.1], [1555804800000, 89251175.1], [1555891200000, 89251175.1], [1555977600000, 89255516.567], [1556064000000, 89255516.567], [1556150400000, 89255516.567], [1556236800000, 89255516.567], [1556323200000, 89255527.731], [1556409600000, 89255527.731], [1556496000000, 89255527.731], [1556582400000, 89255527.731], [1556668800000, 89255530.0], [1556755200000, 89255530.0], [1556841600000, 89255530.0], [1556928000000, 89255530.0], [1557014400000, 89255542.221], [1557100800000, 89255542.221], [1557187200000, 89255542.221], [1557273600000, 89255542.221], [1557360000000, 89255546.616], [1557446400000, 89255546.616], [1557532800000, 89255546.616], [1557619200000, 89255546.616], [1557705600000, 89255550.912], [1557792000000, 89255550.912], [1557878400000, 89255550.912], [1557964800000, 89255550.912], [1558051200000, 89269730.223], [1558137600000, 89269730.223], [1558224000000, 89269730.223], [1558310400000, 89269730.223], [1558396800000, 89279199.924], [1558483200000, 89279199.924], [1558569600000, 89279199.924], [1558656000000, 89279199.924], [1558742400000, 89279203.564], [1558828800000, 89279203.564], [1558915200000, 89279203.564], [1559001600000, 89279203.564], [1559088000000, 89288593.455], [1559174400000, 89288593.455], [1559260800000, 89288593.455], [1559347200000, 89288593.455], [1559433600000, 89297983.604], [1559520000000, 89297983.604], [1559606400000, 89297983.604], [1559692800000, 89297983.604], [1559779200000, 89298656.272], [1559865600000, 89298656.272], [1559952000000, 89298656.272], [1560038400000, 89298656.272], [1560124800000, 89299093.404], [1560211200000, 89299093.404], [1560297600000, 89299093.404], [1560384000000, 89299093.404]], "revision": [[1521417600000, 974655669.1], [1521504000000, 974655669.1], [1521590400000, 974655669.1], [1521676800000, 974655669.1], [1521763200000, 979068871.16], [1521849600000, 979068871.16], [1521936000000, 979068871.16], [1522022400000, 979068871.16], [1522108800000, 984003431.12], [1522195200000, 984003431.12], [1522281600000, 984003431.12], [1522368000000, 984003431.12], [1522454400000, 989843918.99], [1522540800000, 989843918.99], [1522627200000, 989843918.99], [1522713600000, 989843918.99], [1522800000000, 995422166.31], [1522886400000, 995422166.31], [1522972800000, 995422166.31], [1523059200000, 995422166.31], [1523145600000, 1000047974.4], [1523232000000, 1000047974.4], [1523318400000, 1000047974.4], [1523404800000, 1000047974.4], [1523491200000, 1002152722.9], [1523577600000, 1002152722.9], [1523664000000, 1002152722.9], [1523750400000, 1002152722.9], [1523836800000, 1006717295.8], [1523923200000, 1006717295.8], [1524009600000, 1006717295.8], [1524096000000, 1006717295.8], [1524182400000, 1009661579.3], [1524268800000, 1009661579.3], [1524355200000, 1009661579.3], [1524441600000, 1009661579.3], [1524528000000, 1013687779.4], [1524614400000, 1013687779.4], [1524700800000, 1013687779.4], [1524787200000, 1013687779.4], [1524873600000, 1016412029.3], [1524960000000, 1016412029.3], [1525046400000, 1016412029.3], [1525132800000, 1016412029.3], [1525219200000, 1019473519.1], [1525305600000, 1019473519.1], [1525392000000, 1019473519.1], [1525478400000, 1019473519.1], [1525564800000, 1021088944.1], [1525651200000, 1021088944.1], [1525737600000, 1021088944.1], [1525824000000, 1021088944.1], [1525910400000, 1021317229.6], [1525996800000, 1021317229.6], [1526083200000, 1021317229.6], [1526169600000, 1021317229.6], [1526256000000, 1022034778.6], [1526342400000, 1022034778.6], [1526428800000, 1022034778.6], [1526515200000, 1022034778.6], [1526601600000, 1024739584.1], [1526688000000, 1024739584.1], [1526774400000, 1024739584.1], [1526860800000, 1024739584.1], [1526947200000, 1025931256.0], [1527033600000, 1025931256.0], [1527120000000, 1025931256.0], [1527206400000, 1025931256.0], [1527292800000, 1025931256.0], [1527379200000, 1025931256.0], [1527465600000, 1025931256.0], [1527552000000, 1025931256.0], [1527638400000, 1026977759.4], [1527724800000, 1026977759.4], [1527811200000, 1026977759.4], [1527897600000, 1026977759.4], [1527984000000, 1032764397.8], [1528070400000, 1032764397.8], [1528156800000, 1032764397.8], [1528243200000, 1032764397.8], [1528329600000, 1036902827.7], [1528416000000, 1036902827.7], [1528502400000, 1036902827.7], [1528588800000, 1036902827.7], [1528675200000, 1037016758.2], [1528761600000, 1037016758.2], [1528848000000, 1037016758.2], [1528934400000, 1037016758.2], [1529020800000, 1037021406.0], [1529107200000, 1037021406.0], [1529193600000, 1037021406.0], [1529280000000, 1037021406.0], [1529366400000, 1037021406.0], [1529452800000, 1037021406.0], [1529539200000, 1037021406.0], [1529625600000, 1037021406.0], [1529712000000, 1037021406.0], [1529798400000, 1037021406.0], [1529884800000, 1037021406.0], [1529971200000, 1037021406.0], [1530057600000, 1038749978.7], [1530144000000, 1038749978.7], [1530230400000, 1038749978.7], [1530316800000, 1038749978.7], [1530403200000, 1047539525.0], [1530489600000, 1047539525.0], [1530576000000, 1047539525.0], [1530662400000, 1047539525.0], [1530748800000, 1055962382.8], [1530835200000, 1055962382.8], [1530921600000, 1055962382.8], [1531008000000, 1055962382.8], [1531094400000, 1061655034.8], [1531180800000, 1061655034.8], [1531267200000, 1061655034.8], [1531353600000, 1061655034.8], [1531440000000, 1066834629.2], [1531526400000, 1066834629.2], [1531612800000, 1066834629.2], [1531699200000, 1066834629.2], [1531785600000, 1070995300.8], [1531872000000, 1070995300.8], [1531958400000, 1070995300.8], [1532044800000, 1070995300.8], [1532131200000, 1074487054.6], [1532217600000, 1074487054.6], [1532304000000, 1074487054.6], [1532390400000, 1074487054.6], [1532476800000, 1077431390.7], [1532563200000, 1077431390.7], [1532649600000, 1077431390.7], [1532736000000, 1077431390.7], [1532822400000, 1079516345.4], [1532908800000, 1079516345.4], [1532995200000, 1079516345.4], [1533081600000, 1079516345.4], [1533168000000, 1080576765.3], [1533254400000, 1080576765.3], [1533340800000, 1080576765.3], [1533427200000, 1080576765.3], [1533513600000, 1080814167.8], [1533600000000, 1080814167.8], [1533686400000, 1080814167.8], [1533772800000, 1080814167.8], [1533859200000, 1080885892.0], [1533945600000, 1080885892.0], [1534032000000, 1080885892.0], [1534118400000, 1080885892.0], [1534204800000, 1080887640.1], [1534291200000, 1080887640.1], [1534377600000, 1080887640.1], [1534464000000, 1080887640.1], [1534550400000, 1080997776.4], [1534636800000, 1080997776.4], [1534723200000, 1080997776.4], [1534809600000, 1080997776.4], [1534896000000, 1081002442.0], [1534982400000, 1081002442.0], [1535068800000, 1081002442.0], [1535155200000, 1081002442.0], [1535241600000, 1081002442.0], [1535328000000, 1081002442.0], [1535414400000, 1081002442.0], [1535500800000, 1081002442.0], [1535587200000, 1081002442.0], [1535673600000, 1081002442.0], [1535760000000, 1081002442.0], [1535846400000, 1081002442.0], [1535932800000, 1081002442.0], [1536019200000, 1081002442.0], [1536105600000, 1081002442.0], [1536192000000, 1081002442.0], [1536278400000, 1081002442.0], [1536364800000, 1081002442.0], [1536451200000, 1081002442.0], [1536537600000, 1081002442.0], [1536624000000, 1081002442.0], [1536710400000, 1081002442.0], [1536796800000, 1081002442.0], [1536883200000, 1081002442.0], [1536969600000, 1093795098.7], [1537056000000, 1093795098.7], [1537142400000, 1093795098.7], [1537228800000, 1093795098.7], [1537315200000, 1117918667.8], [1537401600000, 1117918667.8], [1537488000000, 1117918667.8], [1537574400000, 1117918667.8], [1537660800000, 1121752736.0], [1537747200000, 1121752736.0], [1537833600000, 1121752736.0], [1537920000000, 1121752736.0], [1538006400000, 1125354079.3], [1538092800000, 1125354079.3], [1538179200000, 1125354079.3], [1538265600000, 1125354079.3], [1538352000000, 1126348335.0], [1538438400000, 1126348335.0], [1538524800000, 1126348335.0], [1538611200000, 1126348335.0], [1538697600000, 1130523335.2], [1538784000000, 1130523335.2], [1538870400000, 1130523335.2], [1538956800000, 1130523335.2], [1539043200000, 1136959838.4], [1539129600000, 1136959838.4], [1539216000000, 1136959838.4], [1539302400000, 1136959838.4], [1539388800000, 1143758715.7], [1539475200000, 1143758715.7], [1539561600000, 1143758715.7], [1539648000000, 1143758715.7], [1539734400000, 1148672535.4], [1539820800000, 1148672535.4], [1539907200000, 1148672535.4], [1539993600000, 1148672535.4], [1540080000000, 1148956138.0], [1540166400000, 1148956138.0], [1540252800000, 1148956138.0], [1540339200000, 1148956138.0], [1540425600000, 1153110961.1], [1540512000000, 1153110961.1], [1540598400000, 1153110961.1], [1540684800000, 1153110961.1], [1540771200000, 1166338659.7], [1540857600000, 1166338659.7], [1540944000000, 1166338659.7], [1541030400000, 1166338659.7], [1541116800000, 1170959900.9], [1541203200000, 1170959900.9], [1541289600000, 1170959900.9], [1541376000000, 1170959900.9], [1541462400000, 1175457939.1], [1541548800000, 1175457939.1], [1541635200000, 1175457939.1], [1541721600000, 1175457939.1], [1541808000000, 1179142494.6], [1541894400000, 1179142494.6], [1541980800000, 1179142494.6], [1542067200000, 1179142494.6], [1542153600000, 1182889098.2], [1542240000000, 1182889098.2], [1542326400000, 1182889098.2], [1542412800000, 1182889098.2], [1542499200000, 1186042371.8], [1542585600000, 1186042371.8], [1542672000000, 1186042371.8], [1542758400000, 1186042371.8], [1542844800000, 1188232038.0], [1542931200000, 1188232038.0], [1543017600000, 1188232038.0], [1543104000000, 1188232038.0], [1543190400000, 1190172102.8], [1543276800000, 1190172102.8], [1543363200000, 1190172102.8], [1543449600000, 1190172102.8], [1543536000000, 1191514855.1], [1543622400000, 1191514855.1], [1543708800000, 1191514855.1], [1543795200000, 1191514855.1], [1543881600000, 1192528950.0], [1543968000000, 1192528950.0], [1544054400000, 1192528950.0], [1544140800000, 1192528950.0], [1544227200000, 1196204815.2], [1544313600000, 1196204815.2], [1544400000000, 1196204815.2], [1544486400000, 1196204815.2], [1544572800000, 1199706896.5], [1544659200000, 1199706896.5], [1544745600000, 1199706896.5], [1544832000000, 1199706896.5], [1544918400000, 1201747973.0], [1545004800000, 1201747973.0], [1545091200000, 1201747973.0], [1545177600000, 1201747973.0], [1545264000000, 1205300265.6], [1545350400000, 1205300265.6], [1545436800000, 1205300265.6], [1545523200000, 1205300265.6], [1545609600000, 1211843118.6], [1545696000000, 1211843118.6], [1545782400000, 1211843118.6], [1545868800000, 1211843118.6], [1545955200000, 1218258299.9], [1546041600000, 1218258299.9], [1546128000000, 1218258299.9], [1546214400000, 1218258299.9], [1546300800000, 1226545272.0], [1546387200000, 1226545272.0], [1546473600000, 1226545272.0], [1546560000000, 1226545272.0], [1546646400000, 1231953844.0], [1546732800000, 1231953844.0], [1546819200000, 1231953844.0], [1546905600000, 1231953844.0], [1546992000000, 1235916119.7], [1547078400000, 1235916119.7], [1547164800000, 1235916119.7], [1547251200000, 1235916119.7], [1547337600000, 1241771030.0], [1547424000000, 1241771030.0], [1547510400000, 1241771030.0], [1547596800000, 1241771030.0], [1547683200000, 1243705138.9], [1547769600000, 1243705138.9], [1547856000000, 1243705138.9], [1547942400000, 1243705138.9], [1548028800000, 1248389319.0], [1548115200000, 1248389319.0], [1548201600000, 1248389319.0], [1548288000000, 1248389319.0], [1548374400000, 1251349255.9], [1548460800000, 1251349255.9], [1548547200000, 1251349255.9], [1548633600000, 1251349255.9], [1548720000000, 1254135192.0], [1548806400000, 1254135192.0], [1548892800000, 1254135192.0], [1548979200000, 1254135192.0], [1549065600000, 1258175737.0], [1549152000000, 1258175737.0], [1549238400000, 1258175737.0], [1549324800000, 1258175737.0], [1549411200000, 1262321770.0], [1549497600000, 1262321770.0], [1549584000000, 1262321770.0], [1549670400000, 1262321770.0], [1549756800000, 1262321770.0], [1549843200000, 1262321770.0], [1549929600000, 1262321770.0], [1550016000000, 1262321770.0], [1550102400000, 1262321770.0], [1550188800000, 1262321770.0], [1550275200000, 1262321770.0], [1550361600000, 1262321770.0], [1550448000000, 1262321770.0], [1550534400000, 1262321770.0], [1550620800000, 1262321770.0], [1550707200000, 1262321770.0], [1550793600000, 1262321770.0], [1550880000000, 1262321770.0], [1550966400000, 1262321770.0], [1551052800000, 1262321770.0], [1551139200000, 1262321770.0], [1551225600000, 1262321770.0], [1551312000000, 1262321770.0], [1551398400000, 1262321770.0], [1551484800000, 1262321770.0], [1551571200000, 1262321770.0], [1551657600000, 1262321770.0], [1551744000000, 1262321770.0], [1551830400000, 1262321770.0], [1551916800000, 1262321770.0], [1552003200000, 1262321770.0], [1552089600000, 1262321770.0], [1552176000000, 1262321770.0], [1552262400000, 1262321770.0], [1552348800000, 1262321770.0], [1552435200000, 1262321770.0], [1552521600000, 1262321770.0], [1552608000000, 1262321770.0], [1552694400000, 1262321770.0], [1552780800000, 1262321770.0], [1552867200000, 1262321770.0], [1552953600000, 1262321770.0], [1553040000000, 1262321770.0], [1553126400000, 1262321770.0], [1553212800000, 1262321770.0], [1553299200000, 1262321770.0], [1553385600000, 1262321770.0], [1553472000000, 1262321770.0], [1553558400000, 1266214854.9], [1553644800000, 1266214854.9], [1553731200000, 1266214854.9], [1553817600000, 1266214854.9], [1553904000000, 1288250515.2], [1553990400000, 1288250515.2], [1554076800000, 1288250515.2], [1554163200000, 1288250515.2], [1554249600000, 1292164078.2], [1554336000000, 1292164078.2], [1554422400000, 1292164078.2], [1554508800000, 1292164078.2], [1554595200000, 1294373475.8], [1554681600000, 1294373475.8], [1554768000000, 1294373475.8], [1554854400000, 1294373475.8], [1554940800000, 1298059447.0], [1555027200000, 1298059447.0], [1555113600000, 1298059447.0], [1555200000000, 1298059447.0], [1555286400000, 1299703291.9], [1555372800000, 1299703291.9], [1555459200000, 1299703291.9], [1555545600000, 1299703291.9], [1555632000000, 1300369846.6], [1555718400000, 1300369846.6], [1555804800000, 1300369846.6], [1555891200000, 1300369846.6], [1555977600000, 1301968572.1], [1556064000000, 1301968572.1], [1556150400000, 1301968572.1], [1556236800000, 1301968572.1], [1556323200000, 1304644027.4], [1556409600000, 1304644027.4], [1556496000000, 1304644027.4], [1556582400000, 1304644027.4], [1556668800000, 1307819489.9], [1556755200000, 1307819489.9], [1556841600000, 1307819489.9], [1556928000000, 1307819489.9], [1557014400000, 1309261987.7], [1557100800000, 1309261987.7], [1557187200000, 1309261987.7], [1557273600000, 1309261987.7], [1557360000000, 1309791295.1], [1557446400000, 1309791295.1], [1557532800000, 1309791295.1], [1557619200000, 1309791295.1], [1557705600000, 1310406607.9], [1557792000000, 1310406607.9], [1557878400000, 1310406607.9], [1557964800000, 1310406607.9], [1558051200000, 1311780433.4], [1558137600000, 1311780433.4], [1558224000000, 1311780433.4], [1558310400000, 1311780433.4], [1558396800000, 1314737418.8], [1558483200000, 1314737418.8], [1558569600000, 1314737418.8], [1558656000000, 1314737418.8], [1558742400000, 1316714079.2], [1558828800000, 1316714079.2], [1558915200000, 1316714079.2], [1559001600000, 1316714079.2], [1559088000000, 1317277608.6], [1559174400000, 1317277608.6], [1559260800000, 1317277608.6], [1559347200000, 1317277608.6], [1559433600000, 1317718958.1], [1559520000000, 1317718958.1], [1559606400000, 1317718958.1], [1559692800000, 1317718958.1], [1559779200000, 1318481892.0], [1559865600000, 1318481892.0], [1559952000000, 1318481892.0], [1560038400000, 1318481892.0], [1560124800000, 1318481892.0], [1560211200000, 1318481892.0], [1560297600000, 1318481892.0], [1560384000000, 1318481892.0]]} diff --git a/site-modules/profile/manifests/munin/stats_export.pp b/site-modules/profile/manifests/export_archive_counters.pp similarity index 67% rename from site-modules/profile/manifests/munin/stats_export.pp rename to site-modules/profile/manifests/export_archive_counters.pp index cc558734..fede0385 100644 --- a/site-modules/profile/manifests/munin/stats_export.pp +++ b/site-modules/profile/manifests/export_archive_counters.pp @@ -1,34 +1,42 @@ # stats_export master class class profile::munin::stats_export { $export_path = lookup('stats_export::export_path') $export_file = lookup('stats_export::export_file') $packages = ['python3-click'] package {$packages: ensure => present, } - file {'/usr/local/bin/export-rrd': + file {'/usr/local/bin/export-archive_counters.py': ensure => present, owner => 'root', group => 'root', mode => '0755', - source => 'puppet:///modules/profile/munin/stats_export/export-rrd', + source => 'puppet:///modules/profile/stats_exporter/export-archive_counters.py', require => Package[$packages], } + file {'/usr/local/share/swh-date/history-counters.munin.json': + ensure => present, + owner => 'root', + group => 'root', + mode => '0644', + source => 'puppet:///modules/profile/stats_exporter/history-counters.munin.json', + } + cron {'stats_export': ensure => present, user => 'www-data', command => "/usr/local/bin/export-rrd > ${export_file}.tmp && /bin/mv ${export_file}.tmp ${export_file}", hour => fqdn_rand(24, 'stats_export_hour'), minute => fqdn_rand(60, 'stats_export_minute'), month => '*', monthday => '*', weekday => '*', require => [ File['/usr/local/bin/export-rrd'], ], } }