diff --git a/src/skdh/__init__.py b/src/skdh/__init__.py index caa38d26..0d4e293d 100644 --- a/src/skdh/__init__.py +++ b/src/skdh/__init__.py @@ -39,6 +39,7 @@ from skdh import sit2stand from skdh import features from skdh import context +from skdh import completeness __skdh_version__ = __version__ @@ -56,5 +57,6 @@ "features", "utility", "context", + "completeness", "__skdh_version__", ] diff --git a/src/skdh/completeness/__init__.py b/src/skdh/completeness/__init__.py new file mode 100644 index 00000000..8e33d539 --- /dev/null +++ b/src/skdh/completeness/__init__.py @@ -0,0 +1,4 @@ +from skdh.completeness import complete +from skdh.completeness.complete import AssessCompleteness + +__all__ = ["complete", "AssessCompleteness"] \ No newline at end of file diff --git a/src/skdh/completeness/complete.py b/src/skdh/completeness/complete.py new file mode 100644 index 00000000..22cd7e90 --- /dev/null +++ b/src/skdh/completeness/complete.py @@ -0,0 +1,540 @@ +import os +import warnings +import pickle +import copy + +import numpy as np +import pandas as pd + +from skdh.base import BaseProcess, handle_process_returns +from skdh.completeness.helpers import from_unix +from skdh.completeness.utils import check_hyperparameters_init, check_hyperparameters_load, check_hyperparameters_figures, clean_df, find_time_periods_overlap, find_time_periods_overlap_fraction +from skdh.completeness.visualizations import visualize_overview_plot, plot_completeness, plot_data_gaps, plot_timescale_completeness + + + +class AssessCompleteness(BaseProcess): + r""" + Pipeline for assessing signal completeness. + """ + + def __init__( + self, + ranges=None, + data_gaps=None, + time_periods=None, + timescales=None): + + check_hyperparameters_init( + ranges, + data_gaps, + time_periods, + timescales) + + super().__init__( + ranges=ranges, + data_gaps=data_gaps, + time_periods=time_periods, + timescales=timescales) + + self.ranges = ranges + self.data_gaps = data_gaps + self.time_periods = time_periods + self.timescales = timescales + + def load_subject_data(self, subject_folder, subject, measures): + + check_hyperparameters_load( + subject_folder, + subject, + measures) + + data_dic = {'Subject ID': subject, + 'Measurement Streams': {}} + + data_files = measures + if 'Charging Indicator.csv' in os.listdir(subject_folder): + data_files = data_files + ['Charging Indicator'] + if 'Wear Indicator.csv' in os.listdir(subject_folder): + data_files = data_files + ['Wear Indicator'] + + for measure in data_files: + fname = subject_folder + '/' + measure + '.csv' + df_raw = pd.read_csv(fname) + + assert 'Time Unix (ms)' in df_raw.keys(), '"Time Unix (ms)" column is missing from file ' + fname + assert 'Sampling Frequency (Hz)' in df_raw.keys(), '"Sampling Frequency (Hz)" column is missing from file ' + fname + assert measure in df_raw.keys(), measure + ' column is missing from file ' + fname + assert df_raw['Time Unix (ms)'].iloc[0] < 10 ** 13 and df_raw['Time Unix (ms)'].iloc[0] > 10 ** 11, \ + 'Unix times are too small or too big, they need to be in ms and should therefore be ~10^12' + assert df_raw['Sampling Frequency (Hz)'].dtype in [float, int], 'sfreq must be a number (int/float)' + + if not 'Device ID' in df_raw.keys(): + df_raw['Device ID'] = 'n/a' + + if not 'Timezone' in df_raw.keys(): + warnings.warn('No timezone key given, will presume the timezone is EST (-5).') + times = [from_unix(df_raw['Time Unix (ms)'], time_unit='ms', utc_offset=-5)] + df_raw.set_index(times, inplace=True) + else: + times = [from_unix(df_raw['Time Unix (ms)'], time_unit='ms', utc_offset=df_raw['Timezone'])] + df_raw.set_index(times, inplace=True) + + df_raw['Sampling Frequency (Hz)'] = np.array(1 / df_raw['Sampling Frequency (Hz)'] * 10 ** 9, + 'timedelta64[ns]') + df_raw = df_raw.iloc[np.where(~np.isnan(df_raw[measure]))[0]] + df_raw = df_raw.iloc[np.argsort(df_raw['Time Unix (ms)'])] + + if not self.ranges is None: + if measure in self.ranges.keys(): + df_raw = clean_df(df_raw, measure, self.ranges[measure][0], self.ranges[measure][1]) + if len(df_raw) > 1: + if measure in ['Charging Indicator', 'Wear Indicator']: + data_dic.update({measure: df_raw}) + else: + data_dic['Measurement Streams'].update({measure: df_raw}) + + return data_dic + + @handle_process_returns(results_to_kwargs=True) + def predict(self, + data_dic, + measures, + fpath_output=None, + **kwargs): + """ + Compute completeness and save results. Create and save figures if generate_figures is True. + """ + + assert os.path.isdir(fpath_output), 'fpath_output does not appear to exist' + + super().predict( + expect_days=False, + expect_wear=False, + **kwargs, + ) + + if self.time_periods is None: + self.time_periods = [(np.min([x.index[0] for x in data_dic['Measurement Streams'].values()]), + np.max([x.index[-1] for x in data_dic['Measurement Streams'].values()]))] + elif self.time_periods == 'daily': + t0 = np.min([x.index[0] for x in data_dic['Measurement Streams'].values()]) + t1 = np.max([x.index[-1] for x in data_dic['Measurement Streams'].values()]) + no_days = int(np.ceil((t1 - t0) / np.timedelta64(24, 'h'))) + self.time_periods = [(t0 + k * np.timedelta64(24, 'h'), t0 + (k + 1) * np.timedelta64(24, 'h') if + t1 > t0 + (k + 1) * np.timedelta64(24, 'h') else t1) for k in range(no_days)] + + # Compute completeness metrics + self.completeness_master_dic = self.compute_completeness_master(data_dic, + data_gaps=self.data_gaps, + time_periods=self.time_periods, + timescales=self.timescales) + + # Save raw results and summary metrics + if not fpath_output is None: + pickle.dump(self.completeness_master_dic, + open(fpath_output + '/raw_completeness', 'wb')) + self.df_summary = self.compute_summary_metrics(self.completeness_master_dic, self.time_periods, self.timescales, + measures) # Daily wear time, charging, data gaps, native completeness + + ###### Vida specific metrics + if 'Wear Indicator' in data_dic.keys(): + wear_basic = self.compute_wear_basic(data_dic, self.time_periods) + df_wear_basic = pd.DataFrame(wear_basic) + self.df_summary = pd.concat([df_wear_basic, self.df_summary]) + ###### Vida metrics end + + if not fpath_output is None: + self.df_summary.to_csv(fpath_output + '/summary_metrics.csv') + + return {"Completeness": {'data_dic' : data_dic, 'compl_dic' : self.completeness_master_dic, + 'df_summary' : self.df_summary}} + + def compute_completeness_master(self, data_dic, data_gaps=None, time_periods=None, timescales=None): + for time_period in time_periods: + assert isinstance(time_period, tuple) and len(time_period) == 2 and \ + isinstance(time_period[0], pd._libs.tslibs.timestamps.Timestamp) \ + and isinstance(time_period[1], pd._libs.tslibs.timestamps.Timestamp) \ + and time_period[1] > time_period[0], \ + 'time_period has to be a tuple with two date-time elements where time_period[1] is after time_period[0]' + if not data_gaps is None: + assert isinstance(data_gaps, np.ndarray) and \ + np.array([isinstance(data_gap, np.timedelta64) for data_gap in data_gaps]).all(), \ + 'data_gaps has to be an array of np.timedelta64 elements' + if not timescales is None: + assert isinstance(timescales, np.ndarray) and \ + np.array([isinstance(timescale, np.timedelta64) for timescale in timescales]).all(), \ + 'timescales has to be an array of np.timedelta64 elements' + + completeness_master_dic = {} + + completeness_master_dic.update({'Wear': {'all': None}}) + completeness_master_dic.update({'Charging': {'all': None}}) + for x in list(data_dic.keys()): + if x in ['Charging Indicator', 'Wear Indicator']: + completeness_master_dic.update({x.split(' ')[0]: {'all': self.find_periods(data_dic, key=x)}}) + for time_period in time_periods: + completeness_master_dic[x.split(' ')[0]].update({time_period: { + key: find_time_periods_overlap(completeness_master_dic[x.split(' ')[0]]['all'][key], time_period)[0] for + key in + completeness_master_dic[x.split(' ')[0]]['all'].keys()}}) + + for measure in data_dic['Measurement Streams'].keys(): + deltas = self.find_gap_codes(data_dic, measure, completeness_master_dic['Charging']['all'], + completeness_master_dic['Wear']['all']) + completeness_master_dic.update({measure: {'Completeness': + self.compute_completeness(deltas, time_periods=time_periods, + timescales=timescales, + last_time= + data_dic['Measurement Streams'][ + measure].index[-1])}}) + if not data_gaps is None: + completeness_master_dic[measure].update( + {'data_gaps': self.compute_data_gaps(deltas, time_periods, data_gaps)}) + + return completeness_master_dic + + + def find_periods(self, data_dic, key): + """ + + :param data_dic: + :param key: str 'Wear Indicator' | 'Charging Indicator' + :return: + """ + + assert key in ['Wear Indicator', 'Charging Indicator'], "'key' needs to be either 'Wear Indicator' or 'Charging Indicator'" + + on_indicator = np.array([np.nan] * (len(data_dic[key][key]) - 1)) + time_periods = np.array([[data_dic[key].index[c], data_dic[key].index[c + 1]] for c in + range(len(data_dic[key]) - 1)]) + for c in range(len(time_periods)): + if (time_periods[c][1] - time_periods[c][0]) <= \ + data_dic[key]['Sampling Frequency (Hz)'].iloc[1:].iloc[c]: + if data_dic[key][key].iloc[c] == \ + data_dic[key][key].iloc[c + 1]: + on_indicator[c] = data_dic[key][key].iloc[c] + on_times = [] + no_on_times = [] + unknown_times = [] + if on_indicator[0] == 1: + on_times.append([time_periods[0][0], -1]) + current_ind = 1 + if on_indicator[0] == 0: + no_on_times.append([time_periods[0][0], -1]) + current_ind = 0 + if np.isnan(on_indicator[0]): + unknown_times.append([time_periods[0][0], -1]) + current_ind = np.nan + for c, time_period in enumerate(time_periods): + if not on_indicator[c] == current_ind and not np.array([np.isnan(on_indicator[c]), np.isnan(current_ind)]).all(): + if current_ind == 1: + on_times[-1][1] = time_periods[c - 1][1] + if current_ind == 0: + no_on_times[-1][1] = time_periods[c - 1][1] + if np.isnan(current_ind): + unknown_times[-1][1] = time_periods[c - 1][1] + current_ind = on_indicator[c] + if on_indicator[c] == 1: + on_times.append([time_period[0], -1]) + current_ind = 1 + if on_indicator[c] == 0: + no_on_times.append([time_period[0], -1]) + current_ind = 0 + if np.isnan(on_indicator[c]): + unknown_times.append([time_period[0], -1]) + current_ind = np.nan + if on_indicator[-1] == 1: + on_times[-1][1] = time_periods[-1][1] + if on_indicator[-1] == 0: + no_on_times[-1][1] = time_periods[-1][1] + if np.isnan(on_indicator[-1]): + unknown_times[-1][1] = time_periods[-1][1] + on_times = np.array(on_times) + no_on_times = np.array(no_on_times) + unknown_times = np.array(unknown_times) + results_dic = {key.split(' ')[0] + '_times' : on_times, + 'no_' + key.split(' ')[0] + '_times' : no_on_times, + 'unknown_' + key.split(' ')[0] + '_times' : unknown_times} + return results_dic + + def compute_wear_basic(self, data_dic, time_periods): + + wear_basics = {} + for time_period in time_periods: + wear_basics.update({time_period: {}}) + wear_ind = data_dic['Wear Indicator'].iloc[np.array([ + data_dic['Wear Indicator'].index >= time_period[0], + data_dic['Wear Indicator'].index < time_period[1]]).all(axis=0)] + wear_basics[time_period].update({'wear_time_basic': + np.sum( + wear_ind['Wear Indicator'] * wear_ind['Sampling Frequency (Hz)'])}) + wear_basics[time_period].update({'non_wear_time_basic': np.sum(wear_ind['Sampling Frequency (Hz)'].iloc[ + np.where( + wear_ind['Wear Indicator'] == 0.)[ + 0]])}) + wear_basics[time_period].update({'nan_time_basic': np.sum(np.isnan(wear_ind['Wear Indicator']) * + wear_ind['Sampling Frequency (Hz)'])}) + assert np.array([pd.isnull(x) for x in list(wear_basics[time_period].values())]).any() == False, 'Nan values in wear_basics' + return wear_basics + + def find_gap_codes(self, data_dic, measure, charging_periods, wearing_periods): + + dts = np.diff(data_dic['Measurement Streams'][measure].index) + gap_codes = pd.DataFrame(data={'unknown': np.ones(len(dts)), + 'normal': np.zeros(len(dts)), + 'charging': np.zeros(len(dts)), + 'no_wear': np.zeros(len(dts)), + 'dts': dts, + 'Sampling Frequency (Hz)': data_dic['Measurement Streams'][measure][ + 'Sampling Frequency (Hz)'][:-1]}, + index=data_dic['Measurement Streams'][measure].index[:-1]) + data_gaps = np.where((dts > data_dic['Measurement Streams'][measure]['Sampling Frequency (Hz)'][:-1]))[0] + normals = np.where(dts <= data_dic['Measurement Streams'][measure]['Sampling Frequency (Hz)'][:-1])[0] + gap_codes.iloc[normals, gap_codes.columns.get_loc('unknown')] = 0 + gap_codes.iloc[normals, gap_codes.columns.get_loc('normal')] = 1 + + # Assign gap codes based on share of data gap + for row_ind in data_gaps: + data_gap_start = data_dic['Measurement Streams'][measure].index[row_ind] + data_gap_end = data_dic['Measurement Streams'][measure].index[row_ind + 1] + data_gap_duration = data_gap_end - data_gap_start + + # Charging + charging_time = np.timedelta64(0) + if not charging_periods is None: + if not charging_periods['Charging_times'] is None: + overlap = find_time_periods_overlap(charging_periods['Charging_times'], [data_gap_start, data_gap_end])[0] + charging_time = np.sum(overlap[:, 1] - overlap[:, 0]) + + # Non-wearing + nonwear_time = np.timedelta64(0) + if not wearing_periods is None: + if not wearing_periods['no_Wear_times'] is None: + overlap = \ + find_time_periods_overlap(wearing_periods['no_Wear_times'], [data_gap_start, data_gap_end])[0] + nonwear_time = np.sum(overlap[:, 1] - overlap[:, 0]) + + unknown_time = data_gap_duration - (nonwear_time + charging_time) + + gap_codes.iloc[row_ind, gap_codes.columns.get_loc('unknown')] = unknown_time / data_gap_duration + gap_codes.iloc[row_ind, gap_codes.columns.get_loc('charging')] = charging_time / data_gap_duration + gap_codes.iloc[row_ind, gap_codes.columns.get_loc('no_wear')] = nonwear_time / data_gap_duration + + assert np.sum(gap_codes.iloc[row_ind, gap_codes.columns.get_loc('unknown')] + + gap_codes.iloc[row_ind, gap_codes.columns.get_loc('normal')] + + gap_codes.iloc[row_ind, gap_codes.columns.get_loc('charging')] + + gap_codes.iloc[ + row_ind, gap_codes.columns.get_loc('no_wear')]) == 1, 'Sum of data gap reasons != 1' + + gap_codes.measure = measure + + return gap_codes + + + def compute_summary_metrics(self, completeness_master_dic, time_periods, timescales, measures): + dic_summary = {} + for period in time_periods: + period_summary = [] + + # Wearing and Charging + for key in ['Wear', 'Charging']: + if completeness_master_dic[key]['all'] is None: + wear_time = None + else: + wear_time = np.sum(completeness_master_dic[key][period][key + '_times'][:, 1] - + completeness_master_dic[key][period][key + '_times'][:, 0]) + period_summary.append([key + '_times', wear_time]) + no_wear_time = np.sum(completeness_master_dic[key][period]['no_' + key + '_times'][:, 1] - + completeness_master_dic[key][period]['no_' + key + '_times'][:, 0]) + period_summary.append(['no_' + key + '_times', no_wear_time]) + unknown_wear_time = np.sum(completeness_master_dic[key][period]['unknown_' + key + '_times'][:, 1] - + completeness_master_dic[key][period]['unknown_' + key + '_times'][:, 0]) + period_summary.append(['unknown_' + key + '_times', unknown_wear_time]) + + # Measures + for measure in measures: + if not measure in list(completeness_master_dic.keys()): + period_summary.append([measure + ' completeness: 0 (no valid values)', 0]) + else: + for key in completeness_master_dic[measure]['Completeness']['native'][period].items(): + period_summary.append([measure + ', ' + key[0] + ', native', key[1]]) + if not timescales is None: + for timescale in timescales: + for key in completeness_master_dic[measure]['Completeness'][timescale][period].items(): + period_summary.append([measure + ', ' + str(key[0]) + ', ' + str(timescale), key[1]]) + if 'data_gaps' in completeness_master_dic[measure].keys(): + for data_gap in completeness_master_dic[measure]['data_gaps'][period].items(): + for reason in data_gap[1].items(): + period_summary.append( + [measure + ', data gap ' + str(data_gap[0]) + ', reason: ' + reason[0], reason[1]]) + + period_summary = np.array(period_summary) + dic_summary.update({period: period_summary[:, 1]}) + df_summary = pd.DataFrame(dic_summary, index=period_summary[:, 0]) + + return df_summary + + def calculate_completeness_timescale(self, deltas, time_periods, timescale, last_time): + assert type(timescale) in [np.timedelta64, pd.core.series.Series, np.ndarray], \ + 'type(timescale) must be np.timedelta64, pd.core.series.Series or np.ndarray' + assert type(deltas) == pd.core.frame.DataFrame and 'dts' in deltas.keys(), 'deltas must be a Pandas dataframe' + if type(timescale) == np.timedelta64: + timescale = np.array([timescale] * len(deltas)) + timescale = np.array(timescale / np.timedelta64(1, 'ns'), + dtype='timedelta64[ns]') # To avoid rounding errors due to int64 + dts_inds = np.where(deltas['dts'] > timescale)[0] + if len(dts_inds) == 0: + observation_periods = np.array([[deltas.index[0], last_time]]) + else: + observation_periods = [[deltas.index[0], deltas.index[dts_inds[0]] + timescale[dts_inds[0]] / 2]] + for c in range(len(dts_inds) - 1): + observation_periods.append([deltas.index[dts_inds[c] + 1] - timescale[dts_inds[c] + 1] / 2, + deltas.index[dts_inds[c + 1]] + timescale[dts_inds[c + 1]] / 2]) + if dts_inds[-1] == len(deltas) - 1: + observation_periods.append([last_time - timescale[dts_inds[-1]] / 2, last_time]) + else: + observation_periods.append( + [deltas.index[dts_inds[-1] + 1] - timescale[dts_inds[-1] + 1] / 2, last_time]) + observation_periods = np.array(observation_periods) + reason_periods = {'periods': {}, 'weights': {}} + for reason in ['normal', 'charging', 'no_wear', 'unknown']: + reason_inds = np.where(deltas.iloc[dts_inds][reason] > 0)[0] + reason_periods['weights'].update({reason: np.array(deltas.iloc[dts_inds][reason])}) + if len(reason_inds) > 0: + if dts_inds[reason_inds][-1] == len(deltas) - 1: + reason_periods['periods'].update( + {reason: np.array( + [deltas.index[dts_inds[reason_inds[:-1]]] + timescale[dts_inds[reason_inds[:-1]]] / 2, + deltas.index[dts_inds[reason_inds[:-1]] + 1] - timescale[ + dts_inds[reason_inds[:-1]] + 1] / 2]).T.reshape(len(reason_inds[:-1]), 2)}) + reason_periods['periods'].update( + {reason: np.concatenate((reason_periods['periods'][reason], np.array( + [deltas.index[dts_inds[reason_inds[-1]]] + timescale[dts_inds[reason_inds[-1]]] / 2, + last_time - timescale[-1] / 2], dtype=np.datetime64).T.reshape((1, 2))), axis=0)}) + else: + reason_periods['periods'].update( + {reason: np.array([deltas.index[dts_inds[reason_inds]] + timescale[dts_inds][reason_inds] / 2, + deltas.index[dts_inds[reason_inds] + 1] - timescale[ + dts_inds[reason_inds] + 1] / 2]).T.reshape(len(reason_inds), 2)}) + data_completeness = {} + if deltas.index[0] > time_periods[0][0]: + if 'unknown' in reason_periods['periods'].keys(): + reason_periods['periods'].update({'unknown': np.concatenate((np.array([[time_periods[0][0], + observation_periods[0][0]]], + dtype=np.datetime64), + reason_periods['periods']['unknown']), + axis=0)}) + reason_periods['weights'].update({'unknown': np.insert(reason_periods['weights']['unknown'], 0, 1)}) + else: + reason_periods['periods'].update( + {'unknown': np.array([[time_periods[0][0], observation_periods[0][0]]], dtype=np.datetime64)}) + reason_periods['weights'].update({'unknown': np.array([1])}) + if last_time < time_periods[-1][1]: + last_time_point = np.min([last_time + timescale[-1] / 2, time_periods[-1][1]]) + observation_periods = np.concatenate( + (observation_periods, np.array([[last_time, last_time_point]]))) + if 'unknown' in reason_periods['periods'].keys(): + reason_periods['periods'].update({'unknown': np.concatenate((reason_periods['periods']['unknown'], + np.array([[last_time_point, + time_periods[-1][1]]], + dtype=np.datetime64)), axis=0)}) + reason_periods['weights'].update({'unknown': np.append(reason_periods['weights']['unknown'], 1)}) + else: + reason_periods['periods'].update({'unknown': np.array([[last_time_point, time_periods[-1][1]]], + dtype=np.datetime64)}) + reason_periods['weights'].update({'unknown': np.array([1])}) + + for time_period in time_periods: + data_completeness.update( + {time_period: {'Completeness': find_time_periods_overlap_fraction(observation_periods, time_period)}}) + for reason in reason_periods['periods'].keys(): + weights = reason_periods['weights'][reason][np.where(reason_periods['weights'][reason] > 0)[0]] + data_completeness[time_period].update({'Missingness, ' + reason: find_time_periods_overlap_fraction( + reason_periods['periods'][reason], time_period, weights)}) + for dict_tp in data_completeness.values(): + assert np.abs(np.sum(list(dict_tp.values())) - 1) < .005, \ + 'Completeness + Missingness less than 99.5% (should be 100%). Something is wrong!' + + return data_completeness + + def compute_completeness(self, deltas, time_periods, last_time, timescales=None): + completeness = {'native': self.calculate_completeness_timescale(deltas=deltas, time_periods=time_periods, + timescale=deltas['Sampling Frequency (Hz)'], + last_time=last_time)} + if not timescales is None: + for timescale in timescales: + completeness.update( + {timescale: self.calculate_completeness_timescale(deltas=deltas, time_periods=time_periods, + timescale=timescale, last_time=last_time)}) + + return completeness + + def compute_data_gaps(self, deltas, time_periods, data_gaps): + + # Assign data gaps based on majority vote + reasons_ind = np.argmax(np.array([deltas['normal'], deltas['unknown'], deltas['no_wear'], deltas['charging']]), + axis=0) + deltas['gap_codes_majority'] = np.array(['normal', 'unknown', 'no_wear', 'charging'])[reasons_ind] + + data_gap_summary = {} + for time_period in time_periods: + data_gap_summary.update({time_period: {}}) + for data_gap in data_gaps: + data_gap_inds = np.where(np.array([deltas['dts'] >= data_gap, deltas['dts'].index >= time_period[0], + deltas['dts'].index < time_period[1]]).all(axis=0))[0] + reasons = deltas['gap_codes_majority'].unique() + data_gap_reason = {} + for reason in reasons: + data_gap_reason.update( + {reason: np.sum( + deltas.iloc[data_gap_inds, deltas.columns.get_loc('gap_codes_majority')] == reason)}) + data_gap_summary[time_period].update({data_gap: data_gap_reason}) + + return data_gap_summary + + def truncate_data_dic(self, data_dic, time_period): + data_dic_trunc = copy.deepcopy(data_dic) + for stream in data_dic_trunc['Measurement Streams'].keys(): + data_dic_trunc['Measurement Streams'][stream] = data_dic_trunc['Measurement Streams'][stream].iloc[ + np.where(np.array([data_dic_trunc['Measurement Streams'][stream].index >= time_period[0], + data_dic_trunc['Measurement Streams'][stream].index <= time_period[1]]).all(axis=0))[ + 0]] + data_dic_trunc['Wear Indicator'] = data_dic_trunc['Wear Indicator'].iloc[ + np.where(np.array([data_dic_trunc['Wear Indicator'].index >= time_period[0], + data_dic_trunc['Wear Indicator'].index <= time_period[1]]).all(axis=0))[0]] + data_dic_trunc['Charging Indicator'] = data_dic_trunc['Charging Indicator'].iloc[ + np.where(np.array([data_dic_trunc['Charging Indicator'].index >= time_period[0], + data_dic_trunc['Charging Indicator'].index <= time_period[1]]).all(axis=0))[0]] + + return data_dic_trunc + + def generate_figures(self, fpath_output, data_dic, resample_width_mins, gap_size_mins, fontsize=None): + + check_hyperparameters_figures(resample_width_mins, gap_size_mins) + # Create and save visualizations of results + figures = {} + overview_fig = visualize_overview_plot(data_dic=data_dic, fpath=fpath_output + 'overview.html', + resample_width_mins=resample_width_mins, gap_size_mins=gap_size_mins, + time_periods=self.time_periods, fontsize=fontsize) + reason_color_dic = {'normal' : 'blue', 'unknown' : 'magenta', 'charging' : 'orange', 'no_wear' : 'red'} + figures.update({'overview': overview_fig}) + completeness_fig = plot_completeness(self.completeness_master_dic, data_dic, self.time_periods, + fpath=fpath_output + 'completeness', reason_color_dic=reason_color_dic) + figures.update({'Completeness': completeness_fig}) + if not self.data_gaps is None: + data_gap_fig = plot_data_gaps(self.completeness_master_dic, data_dic, self.data_gaps, self.time_periods, + fpath=fpath_output + 'data_gaps', reason_color_dic=reason_color_dic) + figures.update({'data_gaps': data_gap_fig}) + if not self.timescales is None: + timescale_compl_fig = plot_timescale_completeness(self.completeness_master_dic, data_dic, self.time_periods, + self.timescales, + fpath=fpath_output + 'timescale_completeness', + reason_color_dic=reason_color_dic) + figures.update({'timescale_completeness': timescale_compl_fig}) + + return figures + + + + diff --git a/src/skdh/completeness/helpers.py b/src/skdh/completeness/helpers.py new file mode 100644 index 00000000..242812c0 --- /dev/null +++ b/src/skdh/completeness/helpers.py @@ -0,0 +1,50 @@ +import numpy as np + +def convert_sfreq_to_sampling_interval(x): + """ + Convert sfreq in Hz (samples/second) to sampling interval (timedelta64[ns]). + :param x: np.array | float | int, sampling frequency in samples/second (Hz). + :return: timedelta64[ns], sampling interval as a time delta. + """ + return np.timedelta64(1, 'ns') * (1 / x * 10 ** 9) + + +def from_unix(ts, time_unit='s', utc_offset=0): + """ + Utility function to convert a unix time to timestamp. + + Parameters + ---------- + ts : unix time in seconds or series of unix times + time_unit : 's' ! 'ms' Str, 's' if ts is ~10 ** 9, 'ms' if ts ~10 ** 12 + utc_offset : utc_offset due time zone in hours + + Return + ------ + float + + """ + time_start = np.datetime64("1970-01-01T00:00:00") + return ts * np.timedelta64(1, time_unit) + time_start + np.timedelta64(utc_offset * 60 ** 2, "s") + + +def to_unix(ts, time_unit='s', utc_offset=0): + """ + Utility function to convert a timestamp to unix time. + + Parameters + ---------- + ts : timestamp or series of timestamps + time_unit : 's' ! 'ms' Str, 's' if ts is ~10 ** 9, 'ms' if ts ~10 ** 12 + + Return + ------ + float + + """ + time_start = np.datetime64("1970-01-01T00:00:00") + return ((ts - time_start) - np.timedelta64(utc_offset, 'h')) / np.timedelta64(1, time_unit) + + + + diff --git a/src/skdh/completeness/meson.build b/src/skdh/completeness/meson.build new file mode 100644 index 00000000..7b5a7238 --- /dev/null +++ b/src/skdh/completeness/meson.build @@ -0,0 +1,11 @@ +py3.install_sources( + [ + '__init__.py', + 'complete.py', + 'helpers.py', + 'utils.py', + 'visualizations.py', + ], + pure: false, + subdir: 'skdh/completeness', +) \ No newline at end of file diff --git a/src/skdh/completeness/utils.py b/src/skdh/completeness/utils.py new file mode 100644 index 00000000..36d45c0a --- /dev/null +++ b/src/skdh/completeness/utils.py @@ -0,0 +1,129 @@ +import warnings +import os + +import pandas as pd +import numpy as np + + + +def clean_df(df, col, val_min, val_max): + df_cleaned = df.iloc[np.where(np.array([val_min <= df[col], df[col] <= val_max]).all(axis=0))[0]] + if len(df_cleaned) == 0: + warnings.warn(col + ' had only one or no valid values. Removing from analysis.') + return df_cleaned + + +def check_hyperparameters_init(ranges, data_gaps, time_periods, timescales): + + if ranges is not None: + assert type(ranges) == dict, 'ranges has to be a dictionary' + for key in ranges.keys(): + assert ranges[key][1] > ranges[key][0], 'The second and first value in ranges are the upper and lower bounds, '+\ + 'respectively, so the upper value must therefore be larger than the first. This was not the case for ' + \ + str(key) + if data_gaps is not None: + assert type(data_gaps) == np.ndarray and data_gaps.dtype in ['timedelta64[s]', 'timedelta64[m]', 'timedelta64[h]'], \ + 'data_gaps must be a numpy array of dtype timedelta64' + assert len(np.unique(data_gaps)) == len(data_gaps), 'Each element in data_gaps must be unique' + if timescales is not None: + assert type(timescales) == np.ndarray and timescales.dtype in ['timedelta64[s]', 'timedelta64[m]', 'timedelta64[h]'], \ + 'timescales must be a numpy array of dtype timedelta64' + assert len(np.unique(timescales)) == len(timescales), 'Each element in timescales must be unique' + if time_periods is not None and not time_periods == 'daily': + assert type(time_periods) == list, 'time_periods must be a list' + for time_period in time_periods: + assert type(time_period) == tuple and len(time_period) == 2 and type(time_period[0]) == pd.Timestamp and \ + type(time_period[1]) == pd.Timestamp, 'each element in time_periods must be a tuple of two elements, ' +\ + 'both being pd.Timestamp types' + + print('All initial hyperparameters passed input controls.') + + return + + +def check_hyperparameters_load(subject_folder, subject, measures): + + assert type(subject) == str, 'subject parameter should be a string, identifying the subject' + assert os.path.isdir(subject_folder), 'subject_folder does not appear to exist' + for measure in measures: + assert os.path.isfile(subject_folder + measure + '.csv'), 'The file ' + subject_folder + measure + '.csv' +\ + 'could not be found' + + print('All loading hyperparameters passed input controls.') + + return + + +def check_hyperparameters_figures(resample_width_mins, gap_size_mins): + + try: + import plotly + except ImportError: + raise ImportError("plotly is required for generating figures in this module") + + assert type(resample_width_mins) in [int, float], str(resample_width_mins) + ' parameter has to be an int or float' + assert type(gap_size_mins) in [int, float], str(gap_size_mins) + ' parameter has to be an int or float' + assert gap_size_mins >= resample_width_mins, 'gap_size_mins should be greater or equal to resample_width_mins' + + print('All figure hyperparameters passed input controls.') + + return + + +def find_time_periods_overlap(periods, time_segment): + """ + Find overlap between periods (an array of time periods) and time_segment (one time period). Returns an array of + periods that overlap. If one period is partially inside time_segment, the portion inside will be added, so that + all overlap time will be inside time_segment. Periods have to be sorted in time and non-overlapping. + :param periods : np.array + :param time_segment : list with len(list) = 2 + :return: period_overlap : np.array + """ + period_overlap = np.array([], dtype=np.timedelta64).reshape(0, 2) + period_inds = np.array([]) + if not len(periods) == 0 and not len(time_segment) == 0: + periods = np.array(periods, dtype=np.datetime64) + assert np.array(np.diff(periods[:, 0]) > np.timedelta64(0)).all(), 'Periods have to be sorted in time' + assert np.array(periods[1:, 0] - periods[:-1, 1] >= np.timedelta64(0)).all(), 'Periods have to be non-overlapping' + time_segment = (pd.Timestamp.to_numpy(time_segment[0]), pd.Timestamp.to_numpy(time_segment[1])) + if np.array([periods[:, 0] <= time_segment[0], periods[:, 1] >= time_segment[1]]).all(axis=0).any(): + period_overlap = np.array([time_segment]) + period_inds = np.where(np.array([periods[:, 0] <= time_segment[0], + periods[:, 1] >= time_segment[1]]).all(axis=0))[0] + else: + obs_periods_fully_inside = np.where(np.array([periods[:, 0] >= time_segment[0], + periods[:, 1] <= time_segment[1]]).all(axis=0))[0] + obs_periods_beg = np.where(np.array([periods[:, 0] < time_segment[0], + periods[:, 1] > time_segment[0]]).all(axis=0))[0] + obs_periods_end = np.where(np.array([periods[:, 0] < time_segment[1], + periods[:, 1] > time_segment[1]]).all(axis=0))[0] + period_overlap = periods[obs_periods_fully_inside] + period_inds = np.concatenate((obs_periods_beg, obs_periods_fully_inside, obs_periods_end)) + if len(obs_periods_beg) == 1: + period_overlap = np.concatenate(([[time_segment[0], periods[:, 1][obs_periods_beg][0]]], period_overlap)) + if len(obs_periods_end) == 1: + period_overlap = np.concatenate((period_overlap, [[periods[:, 0][obs_periods_end][0], time_segment[1]]])) + + return period_overlap, period_inds + + +def find_time_periods_overlap_fraction(periods, time_segment, weights=None): + """ + Find overlap fraction between periods (np.array) and time_segment (single list with 2 elements). Overlap fraction + weighted by weights, which if given have to be the same size as periods. If not given, the overlap fraction will + be a straight quota. + :param periods: + :param time_segment: + :param weights: + :return: + """ + if weights is None: + weights = np.ones(len(periods)) + assert len(weights) == len(periods), 'weights and periods have to be equal size' + if np.array([periods[:, 0] <= time_segment[0], periods[:, 1] >= time_segment[1]]).all(axis=0).any(): + return np.sum(weights[np.where(np.array([periods[:, 0] <= time_segment[0], periods[:, 1] >= time_segment[1]]).all(axis=0))[0]]) + else: + period_overlap, period_inds = find_time_periods_overlap(periods, time_segment) + return np.sum((period_overlap[:, 1] - period_overlap[:, 0]) * weights[period_inds]) / (time_segment[1] - time_segment[0]) + + diff --git a/src/skdh/completeness/visualizations.py b/src/skdh/completeness/visualizations.py new file mode 100644 index 00000000..46859d24 --- /dev/null +++ b/src/skdh/completeness/visualizations.py @@ -0,0 +1,275 @@ +import copy +import warnings + +import numpy as np +import matplotlib.pyplot as plt +import plotly.graph_objects as go +import plotly.express as px +from plotly.subplots import make_subplots + +import skdh + +def plot_overview_one_device(data, resample_width_mins=1, device_changes=None, shared_xaxes=True, title=None, + gap_size_mins=5): + r"""Version of plot overview that plots several data streams for only one device/subject. + + :param data: list where each element is a df with one column and a time stamp index. Each df will be plotted in one + row and column title will be plotted as y-title. + """ + y_titles = [ele.name for ele in data] + fig = make_subplots(rows=len(data), cols=1, x_title='Date', shared_xaxes=shared_xaxes) + colors = px.colors.qualitative.Alphabet + + for c, data_section in enumerate(data): + first_df = data_section.resample(str(resample_width_mins) + 'min').median() + lo, so, vo = skdh.utility.internal.rle(np.isnan(np.array(first_df))) + start_nan_inds = so[vo] + end_nan_inds = so[vo] + lo[vo] - 1 + nan_region_lengths = lo[vo] + + scatter_points = end_nan_inds[np.where((start_nan_inds[1:] - end_nan_inds[:-1]) == 2)[0]] + 1 + crit_data_gap_inds = np.where((nan_region_lengths + 1) * resample_width_mins >= gap_size_mins)[0] + data_gaps_start_ind = start_nan_inds[crit_data_gap_inds] + data_gaps_end_ind = end_nan_inds[crit_data_gap_inds] + if len(data_gaps_start_ind) > 100: + warnings.warn('The chosen data gap length (' + str(gap_size_mins) + ' min) to highlight resulted in >100' + 'data gaps. This will take some time to' + ' render, consider setting gap_size_' + 'mins higher to make it faster') + + fig.add_trace(go.Scatter(x=first_df.index, y=first_df, line=dict(color=colors[c])), row=c + 1, col=1) + if len(scatter_points) > 0: + fig.add_trace(go.Scatter(x=first_df.index[scatter_points], y=first_df[scatter_points], mode='markers', + marker={'symbol' : 'line-ew-open', 'color' : colors[c], 'size' : 2}), row=c + 1, col=1) + for start, end in zip(data_gaps_start_ind, data_gaps_end_ind): + if end == len(first_df) - 1: end = end - 1 # edge case of data gap going to the end of the signal + if start == 0: start = start + 1 # edge case of data gap starting in beginning of signal + fig.add_vrect(x0=first_df.index[start - 1], x1=first_df.index[end + 1], + fillcolor='red', opacity=0.25, line_width=0, row=c + 1, col=1) + if len(data_gaps_start_ind) > 0: + fig.add_trace(go.Scatter(x=[first_df.index[data_gaps_start_ind[0]], first_df.index[data_gaps_end_ind[0]]], + y=[first_df.index[0], first_df.index[0]], line=dict(color='red'), + name='Data gap > ' + str(gap_size_mins) + ' min', + mode='lines', opacity=0.25)) + if device_changes is not None: + for dev_change in device_changes[c][0]: + try: + fig.add_vline(x=data_section[0].index[dev_change + 1], line_color='green', row=c + 1, col=1) + fig.add_vline(x=data_section[0].index[dev_change], line_color='red', row=c + 1, col=1) + fig.add_trace(go.Scatter(x=[data_section[0].index[dev_change], data_section[0].index[dev_change]], + y=[data_section[0].index[0], data_section[0].index[0]], line=dict(color='green'), + name='Beginning of device use for ' + y_titles[0], mode='lines'), row=c + 1, col=1) + fig.add_trace(go.Scatter(x=[data_section[0].index[dev_change], data_section[0].index[dev_change]], + y=[data_section[0].index[0], data_section[0].index[0]], line=dict(color='red'), + name='End of device use for ' + y_titles[0], mode='lines'), row=c + 1, col=1) + except IndexError: 'no device changes in first data stream' + fig['layout']['yaxis' + str((c + 1))]['title'] = y_titles[c] + + if not title is None: + fig.update_layout(title=title) + remove_duplicate_labels_plotly(fig) + return fig + + +def remove_duplicate_labels_plotly(fig): + names = set() + fig.for_each_trace( + lambda trace: + trace.update(showlegend=False) + if (trace.name in names) else names.add(trace.name)) + + return fig + + +def plot_timescale_completeness(completeness_master_dic, data_dic, time_periods, timescales, fpath, figsize=(12, 12), dpi=100, reason_color_dic=None): + timescales = ['native'] + [x for x in timescales] + if reason_color_dic is None: + reason_color_dic = {} + prior_reason_dic = False + else: prior_reason_dic = True + fig = plt.figure(figsize=figsize, dpi=dpi) + axes = fig.subplots(len(data_dic['Measurement Streams'].keys()), len(time_periods), sharex=True) + x_labels = [str(timescale) for timescale in timescales] + handles = [] + labels = [] + if len(time_periods) == 1 or len(data_dic['Measurement Streams'].keys()) == 1: + axes = np.array([axes]).reshape((len(data_dic['Measurement Streams']), len(time_periods))) + for c, time_period in enumerate(time_periods): + for d, measure in enumerate(list(data_dic['Measurement Streams'].keys())): + heights = [completeness_master_dic[measure]['Completeness'][timescale][time_period]['Completeness'] * 100 + for timescale in timescales] + axes[d, c].bar(x=np.arange(len(timescales)) * 3., height=heights, color='black', label='Completeness', zorder=2) + if d == len(data_dic['Measurement Streams'].keys()) - 1: + axes[d, c].set_xticks(ticks=np.arange(len(timescales)) * 3 + .5, labels=x_labels, rotation=45) + else: + axes[d, c].set_xticks(ticks=np.arange(len(timescales)) * 3 + .5, labels=[]) + ax2 = axes[d, c].twinx() + ax2.bar(x=0, height=0, color='black', label='Completeness', zorder=2) + for k, timescale in enumerate(timescales): + bottom = 0 + for reason, quota in completeness_master_dic[measure]['Completeness'][timescale][time_period].items(): + if not reason == 'Completeness': + if not prior_reason_dic: reason_color_dic = grow_reason_color_dict(reason.replace('Missingness, ', ''), reason_color_dic) + ax2.bar(x=k * 3. + 1, height=quota * 100, width=.8, bottom=bottom, linewidth=1, + edgecolor='black', color=reason_color_dic[reason.replace('Missingness, ', '')], zorder=1, + label=reason.replace(' ', '\n') + ' reason') + bottom = bottom + quota * 100 + handles = handles + fig.gca().get_legend_handles_labels()[0] + labels = labels + fig.gca().get_legend_handles_labels()[1] + axes[d, c].set_ylim((0, 100)) + ax2.set_ylim((0, 100)) + axes[d, c].grid(axis='y', linestyle='--', color='gray', zorder=1000) + if d == 0: + axes[d, c].set_title(str(time_period[0]) + ' - \n' + str(time_period[1])) + if d == axes.shape[0] - 1: + axes[d, c].set_xlabel('Timescale') + if c == 0: + axes[d, c].set_ylabel(list(data_dic['Measurement Streams'].keys())[d] + '\nCompleteness\n(%)') + if d == 0: + first_ax2 = ax2 + by_label = dict(zip(labels, handles)) + first_ax2.legend(by_label.values(), by_label.keys(), loc='upper left') + fig.text(0.985, 0.55, 'Missingness (%) by reason', va='center', rotation=270) + fig.tight_layout() + fig.savefig(fpath + '.png', dpi=300) + fig.savefig(fpath + '.svg') + + return fig + + +def plot_completeness(completeness_master_dic, data_dic, time_periods, fpath, figsize=None, dpi=100, reason_color_dic=None): + if reason_color_dic is None: + reason_color_dic = {} + prior_reason_dic = False + else: prior_reason_dic = True + if figsize is None: + figsize = (6 * len(data_dic['Measurement Streams'].keys()), 8) + fig = plt.figure(figsize=figsize, dpi=dpi) + axes = fig.subplots(1, len(data_dic['Measurement Streams'].keys())) + if len(data_dic['Measurement Streams'].keys()) == 1: + axes = np.array([axes]) + x_labels = [str(time_period[0]) + '-\n' + str(time_period[1]) for time_period in time_periods] + handles = [] + labels = [] + for d, measure in enumerate(list(data_dic['Measurement Streams'].keys())): + ax2 = axes[d].twinx() + ax2.bar(x=0, height=0, color='black', label='Completeness', zorder=2) + for c, time_period in enumerate(time_periods): + axes[d].bar(x=c * 3., width=.8, height=completeness_master_dic[measure]['Completeness']['native'][time_period][ + 'Completeness'] * 100, color='black', label='Completeness', zorder=2) + bottom = 0 + for reason, quota in completeness_master_dic[measure]['Completeness']['native'][time_period].items(): + if not reason == 'Completeness': + if not prior_reason_dic: reason_color_dic = grow_reason_color_dict(reason, reason_color_dic) + ax2.bar(x=c * 3. + 1, height=quota * 100, width=.8, bottom=bottom, linewidth=1, + edgecolor='black', color=reason_color_dic[reason.replace('Missingness, ', '')], zorder=1, + label=reason.replace(' ', '\n') + ' reason') + bottom = bottom + quota * 100 + axes[d].set_title(measure) + axes[d].set_xlabel('Time period' ) + if d == 0: + first_ax2 = ax2 + axes[d].set_ylabel('Completeness (%)') + else: + axes[d].set_yticks(ticks=np.arange(6) * 20, labels=[]) + handles = handles + fig.gca().get_legend_handles_labels()[0] + labels = labels + fig.gca().get_legend_handles_labels()[1] + axes[d].set_xticks(ticks=np.arange(len(time_periods)) * 3 + .5, labels=x_labels, rotation=90) + axes[d].set_ylim((0, 100)) + ax2.set_ylim((0, 100)) + if d == len(data_dic['Measurement Streams'].keys()) - 1: + ax2.set_ylabel('Missingness by reason (%)', rotation=270) + else: + ax2.set_yticks(ticks=np.arange(6) * 20, labels=[]) + axes[d].grid(axis='y', linestyle='--', color='gray', zorder=100) + handles, labels = fig.gca().get_legend_handles_labels() + by_label = dict(zip(labels, handles)) + first_ax2.legend(by_label.values(), by_label.keys(), loc='upper left') + fig.tight_layout() + fig.savefig(fpath + '.png', dpi=300) + fig.savefig(fpath + '.svg') + + return fig + +def grow_reason_color_dict(reason, reason_color_dic): + if reason not in reason_color_dic.keys(): + reason_color_dic.update({reason: list(plt.cm.get_cmap('tab20').colors)[len(reason_color_dic.keys())]}) + return reason_color_dic + +def plot_data_gaps(completeness_master_dic, data_dic, data_gaps, time_periods, fpath, figsize=(12, 12), dpi=100, reason_color_dic=None): + if reason_color_dic is None: + reason_color_dic = {} + prior_reason_dic = False + else: prior_reason_dic = True + fig = plt.figure(figsize=figsize, dpi=dpi) + axes = fig.subplots(len(data_dic['Measurement Streams'].keys()), len(time_periods)) + x_labels = [str(dg) for dg in data_gaps] + handles = [] + labels = [] + if len(time_periods) == 1 or len(data_dic['Measurement Streams'].keys()) == 1: + axes = np.array([axes]).reshape((len(data_dic['Measurement Streams']), len(time_periods))) + for c, time_period in enumerate(time_periods): + for d, measure in enumerate(list(data_dic['Measurement Streams'].keys())): + counts_total = [np.sum(list(list(completeness_master_dic[measure]['data_gaps'][time_period].values())[k].values())) for k in range(len(data_gaps))] + axes[d, c].bar(x=np.arange(len(data_gaps)) * 3., height=counts_total, color='black', zorder=2) + if d == len(data_dic['Measurement Streams'].keys()) - 1: + axes[d, c].set_xticks(ticks=np.arange(len(data_gaps)) * 3 + .5, labels=x_labels, rotation=45) + else: + axes[d, c].set_xticks(ticks=np.arange(len(data_gaps)) * 3 + .5, labels=[]) + ax2 = axes[d, c].twinx() + ax2.bar(x=0, height=0, color='black', label='Data gaps (n)', zorder=2) + for k, data_gap in enumerate(completeness_master_dic[measure]['data_gaps'][time_period].values()): + bottom = 0 + for reason, quota in data_gap.items(): + reason_ratio = quota / counts_total[k] * 100 + if not prior_reason_dic: reason_color_dic = grow_reason_color_dict(reason, reason_color_dic) + ax2.bar(x = k * 3 + 1, height=reason_ratio, width=.8, log=False, + color=reason_color_dic[reason.replace('Missingness, ', '')], bottom=bottom, + linewidth=1, edgecolor='black', zorder=1, label='Gap reason (%):\n' + reason) + bottom = bottom + reason_ratio + if d == 0: + axes[d, c].set_title(str(time_period[0]) + ' - \n' + str(time_period[1])) + if d == axes.shape[0] - 1: + axes[d, c].set_xlabel('Data gap duration' ) + if c == 0: + axes[d, c].set_ylabel(list(data_dic['Measurement Streams'].keys())[d] + '\nData gaps per\ntime period (N)') + if d == 0: + first_ax2 = ax2 + axes[d, c].set_xlim((-.5, (len(data_gaps) - 1) * 3 + 1.5)) + ax2.set_ylim((0, 100)) + handles = handles + fig.gca().get_legend_handles_labels()[0] + labels = labels + fig.gca().get_legend_handles_labels()[1] + by_label = dict(zip(labels, handles)) + first_ax2.legend(by_label.values(), by_label.keys(), loc='upper left') + fig.text(0.985, 0.55, 'Gap reason (%)', va='center', rotation=270) + fig.tight_layout() + fig.savefig(fpath + '.png', dpi=300) + fig.savefig(fpath + '.svg') + return fig + + +def visualize_overview_plot(data_dic, fpath, resample_width_mins, gap_size_mins, time_periods, fontsize=None): + data_streams = [copy.deepcopy(data_dic['Measurement Streams'][key][key]) for key in data_dic['Measurement Streams'].keys()] + for x in ['Wear Indicator', 'Charging Indicator']: + if x in data_dic.keys(): + data_streams.append(copy.deepcopy(data_dic[x][x])) + acc_raw_ind = np.where([data_stream.name == 'acc_raw' for data_stream in data_streams])[0] + if len(acc_raw_ind) > 0: + data_streams[acc_raw_ind[0]].iloc[:] = np.linalg.norm(np.array([np.array(x, dtype=float) for x in data_streams[acc_raw_ind[0]]]), axis=1) + fig = plot_overview_one_device(data_streams, resample_width_mins=resample_width_mins, device_changes=None, shared_xaxes=True, + title=data_dic['Subject ID'], gap_size_mins=gap_size_mins) + for row_ind, measure in enumerate(data_dic['Measurement Streams'].keys()): + for time_period in time_periods: + fig.add_vline(x=time_period[0], line_color='green', row=row_ind + 1, col=1) + fig.add_vline(x=time_period[1], line_color='red', row=row_ind + 1, col=1) + fig.add_trace(go.Scatter(x=[time_period[0], time_period[0]], y=[time_period[0], time_period[0]], + line=dict(color='green'), name='Beginning of time period', mode='lines'), + row=row_ind + 1, col=1) + fig.add_trace(go.Scatter(x=[time_period[0], time_period[0]], y=[time_period[0], time_period[0]], + line=dict(color='red'), name='End of time period', mode='lines'), + row=row_ind + 1, col=1) + remove_duplicate_labels_plotly(fig) + if not fontsize is None: + fig.update_yaxes(title_font=dict(size=fontsize)) + fig.write_html(fpath) + return fig diff --git a/src/skdh/meson.build b/src/skdh/meson.build index 63369f30..1ae08fea 100644 --- a/src/skdh/meson.build +++ b/src/skdh/meson.build @@ -56,4 +56,5 @@ subdir('gait') subdir('preprocessing') subdir('sit2stand') subdir('sleep') +subdir('completeness') subdir('context') diff --git a/src/skdh/utility/__init__.py b/src/skdh/utility/__init__.py index 639442bf..d7ce1787 100644 --- a/src/skdh/utility/__init__.py +++ b/src/skdh/utility/__init__.py @@ -56,14 +56,19 @@ from skdh.utility.windowing import compute_window_samples, get_windowed_view from skdh.utility import windowing from skdh.utility import activity_counts +#from skdh.utility import helpers +#from skdh.utility import parse +#from skdh.utility import utils +#from skdh.utility import visualizations from skdh.utility.activity_counts import * __all__ = ( - ["math", "windowing", "orientation", "fragmentation_endpoints"] + ["math", "windowing", "orientation", "fragmentation_endpoints", "helpers"] + fragmentation_endpoints.__all__ + math.__all__ + windowing.__all__ + orientation.__all__ + activity_counts.__all__ +# + helpers.__all__ ) diff --git a/test/completeness/conftest.py b/test/completeness/conftest.py new file mode 100644 index 00000000..9d3c7047 --- /dev/null +++ b/test/completeness/conftest.py @@ -0,0 +1,28 @@ +from pathlib import Path + +from pytest import fixture +from pandas import read_csv +import numpy as np +import skdh + +@fixture(scope="module") +def completeness_sub_data(): + cwd = str(Path.cwd()) + if cwd.split('/')[-1] == "completeness": + subject_folder = cwd + '/data/' + elif cwd.split('/')[-1] == "test": + subject_folder = cwd + '/completeness/data/' + elif cwd.split('/')[-1] == "scikit-digital-health": + subject_folder = cwd + '/test/completeness/data/' + + measures = ['Resp Rate', 'Heart Rate'] + ranges = {'Resp Rate': [0, 100], 'Heart Rate': [20, 230]} + timescales = np.array([np.timedelta64(1, 'm'), np.timedelta64(30, 'm'), np.timedelta64(1, 'h')]) + data_gaps = np.array([np.timedelta64(10, 'm'), np.timedelta64(30, 'm'), np.timedelta64(1, 'h')]) + subject = 'test_sub' + time_periods = 'daily' + pipe = skdh.completeness.AssessCompleteness(ranges, data_gaps, time_periods, timescales) + data_dic = pipe.load_subject_data(subject_folder, subject, measures) + + return pipe, data_dic + diff --git a/test/completeness/data/Heart Rate.csv b/test/completeness/data/Heart Rate.csv new file mode 100644 index 00000000..a48efcd0 --- /dev/null +++ b/test/completeness/data/Heart Rate.csv @@ -0,0 +1,1031 @@ +,Time Unix (ms),Heart Rate,Sampling Frequency (Hz) +0,1702057245456.0,69.4375,0.0033333333333333335 +1,1702057545457.0,67.5625,0.0033333333333333335 +2,1702057845457.0,67.75,0.0033333333333333335 +3,1702058145455.0,,0.0033333333333333335 +4,1702058445457.0,61.375,0.0033333333333333335 +5,1702058745456.0,107.125,0.0033333333333333335 +6,1702059045456.0,63.625,0.0033333333333333335 +7,1702059345456.0,73.4375,0.0033333333333333335 +8,1702059645456.0,66.3125,0.0033333333333333335 +9,1702059945456.0,60.0,0.0033333333333333335 +10,1702060245457.0,59.4375,0.0033333333333333335 +11,1702060545457.9998,59.53125,0.0033333333333333335 +12,1702060845455.0,,0.0033333333333333335 +13,1702061145456.0,70.3125,0.0033333333333333335 +14,1702061445455.0,,0.0033333333333333335 +15,1702061745456.0,73.8125,0.0033333333333333335 +16,1702062045456.0,,0.0033333333333333335 +17,1702062345456.0,75.3125,0.0033333333333333335 +18,1702062645457.0,70.625,0.0033333333333333335 +19,1702062945456.0,76.5,0.0033333333333333335 +20,1702063245456.0,68.5,0.0033333333333333335 +21,1702063545457.0,66.875,0.0033333333333333335 +22,1702063845457.0,68.8125,0.0033333333333333335 +23,1702064145456.0,67.375,0.0033333333333333335 +24,1702064445456.0,67.3125,0.0033333333333333335 +25,1702064745457.0,67.5625,0.0033333333333333335 +26,1702065045457.0,62.5625,0.0033333333333333335 +27,1702065345456.0,69.4375,0.0033333333333333335 +28,1702065645457.0,67.1875,0.0033333333333333335 +29,1702065945456.0,63.6875,0.0033333333333333335 +30,1702066245456.0,,0.0033333333333333335 +31,1702066545457.0,66.0625,0.0033333333333333335 +32,1702066845457.0,64.1875,0.0033333333333333335 +33,1702067145465.9998,,0.0033333333333333335 +34,1702067445457.0,68.625,0.0033333333333333335 +35,1702067745456.0,,0.0033333333333333335 +36,1702068045456.0,69.6875,0.0033333333333333335 +37,1702068345456.0,78.125,0.0033333333333333335 +38,1702068645456.0,77.5,0.0033333333333333335 +39,1702068945456.0,,0.0033333333333333335 +40,1702069245456.0,,0.0033333333333333335 +41,1702069545456.0,69.625,0.0033333333333333335 +42,1702069845455.0,,0.0033333333333333335 +43,1702070145456.0,69.4375,0.0033333333333333335 +44,1702070445456.0,,0.0033333333333333335 +45,1702070745456.0,,0.0033333333333333335 +46,1702071045457.0,,0.0033333333333333335 +47,1702071345456.0,,0.0033333333333333335 +48,1702071645456.0,,0.0033333333333333335 +49,1702071945457.0,80.0625,0.0033333333333333335 +50,1702072245457.0,,0.0033333333333333335 +51,1702072545457.0,70.6875,0.0033333333333333335 +52,1702072845456.0,80.875,0.0033333333333333335 +53,1702073145457.0,75.1875,0.0033333333333333335 +54,1702073445459.0,75.25,0.0033333333333333335 +55,1702073745457.9998,75.625,0.0033333333333333335 +56,1702074045457.0,69.75,0.0033333333333333335 +57,1702074345456.0,77.4375,0.0033333333333333335 +58,1702074645455.0,,0.0033333333333333335 +59,1702074945457.9998,,0.0033333333333333335 +60,1702075245456.0,,0.0033333333333333335 +61,1702075545456.0,,0.0033333333333333335 +62,1702075845457.9998,72.375,0.0033333333333333335 +63,1702076145457.9998,84.25,0.0033333333333333335 +64,1702076445470.0002,,0.0033333333333333335 +65,1702076745457.9998,74.375,0.0033333333333333335 +66,1702077045456.0,,0.0033333333333333335 +67,1702077345494.0002,82.125,0.0033333333333333335 +68,1702077645459.0,72.25,0.0033333333333333335 +69,1702077945455.0,77.375,0.0033333333333333335 +70,1702078245457.0,66.0,0.0033333333333333335 +71,1702078545457.0,63.0,0.0033333333333333335 +72,1702078845457.0,64.5,0.0033333333333333335 +73,1702079145473.9998,66.1875,0.0033333333333333335 +74,1702079445456.0,71.3125,0.0033333333333333335 +75,1702079745459.0,,0.0033333333333333335 +76,1702080045455.0,,0.0033333333333333335 +77,1702080345456.0,76.1875,0.0033333333333333335 +78,1702080645456.0,,0.0033333333333333335 +79,1702080945457.0,,0.0033333333333333335 +80,1702081245456.0,89.8125,0.0033333333333333335 +81,1702081545455.0,,0.0033333333333333335 +82,1702081845456.0,80.5,0.0033333333333333335 +83,1702082145456.0,72.25,0.0033333333333333335 +84,1702082445457.9998,75.8125,0.0033333333333333335 +85,1702082745456.0,72.875,0.0033333333333333335 +86,1702083045457.0,81.0,0.0033333333333333335 +87,1702083345456.0,86.5625,0.0033333333333333335 +88,1702083645455.0,,0.0033333333333333335 +89,1702083945457.0,,0.0033333333333333335 +90,1702084245457.0,72.625,0.0033333333333333335 +91,1702084545457.0,68.3125,0.0033333333333333335 +92,1702084845456.0,,0.0033333333333333335 +93,1702085145457.0,71.0625,0.0033333333333333335 +94,1702085445456.0,76.125,0.0033333333333333335 +95,1702085745457.0,68.375,0.0033333333333333335 +96,1702086045456.0,75.4375,0.0033333333333333335 +97,1702086345456.0,58.21875,0.0033333333333333335 +98,1702086645456.0,79.1875,0.0033333333333333335 +99,1702086945456.0,67.6875,0.0033333333333333335 +100,1702087245456.0,69.375,0.0033333333333333335 +101,1702087545456.0,74.3125,0.0033333333333333335 +102,1702087845456.0,,0.0033333333333333335 +103,1702088145456.0,70.5,0.0033333333333333335 +104,1702088445456.0,,0.0033333333333333335 +105,1702088745456.0,,0.0033333333333333335 +106,1702089045455.0,,0.0033333333333333335 +107,1702089345456.0,,0.0033333333333333335 +108,1702089645456.0,,0.0033333333333333335 +109,1702089945456.0,66.25,0.0033333333333333335 +110,1702090245457.0,70.375,0.0033333333333333335 +111,1702090545457.0,,0.0033333333333333335 +112,1702090845456.0,70.75,0.0033333333333333335 +113,1702091145455.0,,0.0033333333333333335 +114,1702091445457.0,73.625,0.0033333333333333335 +115,1702091745456.0,,0.0033333333333333335 +116,1702092045457.0,74.375,0.0033333333333333335 +117,1702092345457.0,80.5,0.0033333333333333335 +118,1702092645456.0,73.8125,0.0033333333333333335 +119,1702092945457.9998,74.5625,0.0033333333333333335 +120,1702093245456.0,77.25,0.0033333333333333335 +121,1702093545457.9998,73.9375,0.0033333333333333335 +122,1702093845456.0,74.0625,0.0033333333333333335 +123,1702094145459.0,80.9375,0.0033333333333333335 +124,1702094445459.0,72.5,0.0033333333333333335 +125,1702094745456.0,,0.0033333333333333335 +126,1702095045455.0,,0.0033333333333333335 +127,1702095345455.0,76.375,0.0033333333333333335 +128,1702095645456.0,83.5,0.0033333333333333335 +129,1702095945457.0,84.9375,0.0033333333333333335 +130,1702096245456.0,90.25,0.0033333333333333335 +131,1702096545457.0,89.125,0.0033333333333333335 +132,1702096845457.0,93.875,0.0033333333333333335 +133,1702097145456.0,,0.0033333333333333335 +134,1702097445456.0,,0.0033333333333333335 +135,1702097745456.0,,0.0033333333333333335 +136,1702098045457.9998,92.4375,0.0033333333333333335 +137,1702098345457.0,100.125,0.0033333333333333335 +138,1702098645457.0,103.0625,0.0033333333333333335 +139,1702098945456.0,98.625,0.0033333333333333335 +140,1702099245457.0,86.3125,0.0033333333333333335 +141,1702099545457.0,84.125,0.0033333333333333335 +142,1702099845459.0,83.75,0.0033333333333333335 +143,1702100145456.0,,0.0033333333333333335 +144,1702100445457.0,81.625,0.0033333333333333335 +145,1702100745457.0,79.625,0.0033333333333333335 +146,1702101045456.0,,0.0033333333333333335 +147,1702101345457.0,95.3125,0.0033333333333333335 +148,1702101645457.0,96.0625,0.0033333333333333335 +149,1702101945457.0,72.375,0.0033333333333333335 +150,1702102245456.0,,0.0033333333333333335 +151,1702102545456.0,,0.0033333333333333335 +152,1702103145455.0,,0.0033333333333333335 +153,1702103445456.0,,0.0033333333333333335 +154,1702103532545.9998,,0.0033333333333333335 +155,1702103745456.0,87.625,0.0033333333333333335 +156,1702104045456.0,,0.0033333333333333335 +157,1702104345457.0,66.75,0.0033333333333333335 +158,1702104645457.9998,65.3125,0.0033333333333333335 +159,1702104945457.0,74.4375,0.0033333333333333335 +160,1702105245457.9998,88.8125,0.0033333333333333335 +161,1702105545459.0,,0.0033333333333333335 +162,1702105640425.9998,,0.0033333333333333335 +163,1702105845457.0,,0.0033333333333333335 +164,1702106145455.0,,0.0033333333333333335 +165,1702106445456.0,68.5,0.0033333333333333335 +166,1702106745457.9998,66.875,0.0033333333333333335 +167,1702107045456.0,65.5,0.0033333333333333335 +168,1702107345456.0,,0.0033333333333333335 +169,1702107645456.0,,0.0033333333333333335 +170,1702107945457.9998,74.5,0.0033333333333333335 +171,1702108245462.0002,68.125,0.0033333333333333335 +172,1702108545463.0,,0.0033333333333333335 +173,1702108845465.9998,70.875,0.0033333333333333335 +174,1702109145456.0,,0.0033333333333333335 +175,1702109445457.0,54.65625,0.0033333333333333335 +176,1702109745457.0,52.375,0.0033333333333333335 +177,1702110045460.0,53.5,0.0033333333333333335 +178,1702110345456.0,53.46875,0.0033333333333333335 +179,1702110645457.0,53.21875,0.0033333333333333335 +180,1702110945457.0,52.5625,0.0033333333333333335 +181,1702111245457.0,56.96875,0.0033333333333333335 +182,1702111545457.0,57.03125,0.0033333333333333335 +183,1702111845457.0,52.09375,0.0033333333333333335 +184,1702112145457.0,53.09375,0.0033333333333333335 +185,1702112445457.0,82.125,0.0033333333333333335 +186,1702112745456.0,,0.0033333333333333335 +187,1702113045460.0,61.1875,0.0033333333333333335 +188,1702113345927.0,58.8125,0.0033333333333333335 +189,1702113645928.0,64.9375,0.0033333333333333335 +190,1702113945928.0,62.625,0.0033333333333333335 +191,1702114245928.0,60.4375,0.0033333333333333335 +192,1702114545928.0,58.34375,0.0033333333333333335 +193,1702114845945.9998,56.0625,0.0033333333333333335 +194,1702115145929.0,60.90625,0.0033333333333333335 +195,1702115445931.0,60.09375,0.0033333333333333335 +196,1702115745928.0,59.40625,0.0033333333333333335 +197,1702116045927.0,63.09375,0.0033333333333333335 +198,1702116345929.9998,59.09375,0.0033333333333333335 +199,1702116645928.0,,0.0033333333333333335 +200,1702116945927.0,60.125,0.0033333333333333335 +201,1702117245926.0002,63.9375,0.0033333333333333335 +202,1702117545931.0,71.875,0.0033333333333333335 +203,1702117845929.0,60.875,0.0033333333333333335 +204,1702118145928.0,69.5,0.0033333333333333335 +205,1702118445929.9998,61.15625,0.0033333333333333335 +206,1702118745927.0,,0.0033333333333333335 +207,1702119045927.0,62.28125,0.0033333333333333335 +208,1702119345928.0,67.1875,0.0033333333333333335 +209,1702119645928.0,63.5,0.0033333333333333335 +210,1702119945928.0,65.25,0.0033333333333333335 +211,1702120245928.0,62.75,0.0033333333333333335 +212,1702120545927.0,63.0625,0.0033333333333333335 +213,1702120845927.0,66.25,0.0033333333333333335 +214,1702121445933.0,62.125,0.0033333333333333335 +215,1702121745929.0,62.8125,0.0033333333333333335 +216,1702122345929.0,57.6875,0.0033333333333333335 +217,1702122645928.0,65.8125,0.0033333333333333335 +218,1702122945928.0,55.53125,0.0033333333333333335 +219,1702123245928.0,60.125,0.0033333333333333335 +220,1702123845928.0,66.5625,0.0033333333333333335 +221,1702124145929.0,63.0625,0.0033333333333333335 +222,1702124445929.9998,62.5625,0.0033333333333333335 +223,1702124745928.0,57.1875,0.0033333333333333335 +224,1702125045929.0,59.0,0.0033333333333333335 +225,1702125345928.0,58.34375,0.0033333333333333335 +226,1702125645928.0,56.5,0.0033333333333333335 +227,1702125945928.0,58.34375,0.0033333333333333335 +228,1702126245928.0,60.1875,0.0033333333333333335 +229,1702126545929.9998,63.0,0.0033333333333333335 +230,1702126845928.0,58.0625,0.0033333333333333335 +231,1702127445928.0,56.9375,0.0033333333333333335 +232,1702127745929.0,55.96875,0.0033333333333333335 +233,1702128045929.0,55.90625,0.0033333333333333335 +234,1702128345931.0,54.1875,0.0033333333333333335 +235,1702128645928.0,56.78125,0.0033333333333333335 +236,1702128945928.0,64.5,0.0033333333333333335 +237,1702129245928.0,65.6875,0.0033333333333333335 +238,1702129545928.0,72.3125,0.0033333333333333335 +239,1702129845928.0,56.75,0.0033333333333333335 +240,1702130145928.0,55.875,0.0033333333333333335 +241,1702130445928.0,52.125,0.0033333333333333335 +242,1702130745928.0,54.125,0.0033333333333333335 +243,1702131045928.0,53.0,0.0033333333333333335 +244,1702131345928.0,55.71875,0.0033333333333333335 +245,1702131645929.0,59.0,0.0033333333333333335 +246,1702131945929.0,51.6875,0.0033333333333333335 +247,1702132245928.0,50.5625,0.0033333333333333335 +248,1702132545928.0,54.28125,0.0033333333333333335 +249,1702132845928.0,49.46875,0.0033333333333333335 +250,1702133145928.0,49.46875,0.0033333333333333335 +251,1702133445928.0,65.0625,0.0033333333333333335 +252,1702133745928.0,49.6875,0.0033333333333333335 +253,1702134045928.0,49.28125,0.0033333333333333335 +254,1702134346447.0,52.5625,0.0033333333333333335 +255,1702134645928.0,50.78125,0.0033333333333333335 +256,1702134945928.0,52.53125,0.0033333333333333335 +257,1702135245928.0,53.34375,0.0033333333333333335 +258,1702135545928.0,51.6875,0.0033333333333333335 +259,1702135845929.0,48.625,0.0033333333333333335 +260,1702136145928.0,56.5,0.0033333333333333335 +261,1702136445928.0,48.3125,0.0033333333333333335 +262,1702136745928.0,56.15625,0.0033333333333333335 +263,1702137045928.0,51.71875,0.0033333333333333335 +264,1702137345928.0,54.25,0.0033333333333333335 +265,1702137645928.0,52.0,0.0033333333333333335 +266,1702137945928.0,48.5,0.0033333333333333335 +267,1702138245928.0,50.90625,0.0033333333333333335 +268,1702138545929.0,57.875,0.0033333333333333335 +269,1702138845931.0,51.375,0.0033333333333333335 +270,1702139145929.9998,53.4375,0.0033333333333333335 +271,1702139445928.0,,0.0033333333333333335 +272,1702139745927.0,,0.0033333333333333335 +273,1702140045927.0,,0.0033333333333333335 +274,1702140345927.0,61.59375,0.0033333333333333335 +275,1702140645928.0,61.03125,0.0033333333333333335 +276,1702140945929.9998,,0.0033333333333333335 +277,1702141245926.0002,,0.0033333333333333335 +278,1702141545927.0,,0.0033333333333333335 +279,1702141845929.9998,,0.0033333333333333335 +280,1702142145928.0,53.59375,0.0033333333333333335 +281,1702142445928.0,69.0625,0.0033333333333333335 +282,1702142745927.0,,0.0033333333333333335 +283,1702143045927.0,,0.0033333333333333335 +284,1702143345926.0002,,0.0033333333333333335 +285,1702143645928.0,86.75,0.0033333333333333335 +286,1702144245926.0002,,0.0033333333333333335 +287,1702144397663.0,,0.0033333333333333335 +288,1702144545926.0002,,0.0033333333333333335 +289,1702144845928.0,79.9375,0.0033333333333333335 +290,1702145145928.0,73.9375,0.0033333333333333335 +291,1702145445927.0,76.875,0.0033333333333333335 +292,1702145745927.0,,0.0033333333333333335 +293,1702146045927.0,,0.0033333333333333335 +294,1702146345927.0,,0.0033333333333333335 +295,1702146645927.0,,0.0033333333333333335 +296,1702146945927.0,83.1875,0.0033333333333333335 +297,1702147090479.0,,0.0033333333333333335 +298,1702147245927.0,,0.0033333333333333335 +299,1702147396054.0002,,0.0033333333333333335 +300,1702147545927.0,,0.0033333333333333335 +301,1702147845927.0,,0.0033333333333333335 +302,1702148145927.0,74.9375,0.0033333333333333335 +303,1702148445928.0,74.0625,0.0033333333333333335 +304,1702148745928.0,74.5,0.0033333333333333335 +305,1702149045926.0002,,0.0033333333333333335 +306,1702149645928.0,77.75,0.0033333333333333335 +307,1702149945931.0,70.8125,0.0033333333333333335 +308,1702150245928.0,66.8125,0.0033333333333333335 +309,1702150545929.0,69.25,0.0033333333333333335 +310,1702150845929.0,65.875,0.0033333333333333335 +311,1702151145928.0,69.125,0.0033333333333333335 +312,1702151445928.0,69.0625,0.0033333333333333335 +313,1702151745928.0,65.8125,0.0033333333333333335 +314,1702152045928.0,69.4375,0.0033333333333333335 +315,1702152345928.0,70.1875,0.0033333333333333335 +316,1702152645928.0,66.8125,0.0033333333333333335 +317,1702152945927.0,66.0,0.0033333333333333335 +318,1702153245931.0,63.84375,0.0033333333333333335 +319,1702153545927.0,72.6875,0.0033333333333333335 +320,1702153845927.0,,0.0033333333333333335 +321,1702154145928.0,61.15625,0.0033333333333333335 +322,1702154445926.0002,,0.0033333333333333335 +323,1702154745927.0,,0.0033333333333333335 +324,1702155045928.0,76.25,0.0033333333333333335 +325,1702155345926.0002,,0.0033333333333333335 +326,1702155645928.0,70.375,0.0033333333333333335 +327,1702155945928.0,67.9375,0.0033333333333333335 +328,1702156245928.0,67.0,0.0033333333333333335 +329,1702156545928.0,78.4375,0.0033333333333333335 +330,1702156845928.0,67.4375,0.0033333333333333335 +331,1702157145929.0,68.8125,0.0033333333333333335 +332,1702157445928.0,65.6875,0.0033333333333333335 +333,1702157745929.0,81.375,0.0033333333333333335 +334,1702158045928.0,63.3125,0.0033333333333333335 +335,1702158345929.9998,63.625,0.0033333333333333335 +336,1702158645927.0,85.5,0.0033333333333333335 +337,1702158945928.0,62.71875,0.0033333333333333335 +338,1702159245929.0,63.78125,0.0033333333333333335 +339,1702159545928.0,,0.0033333333333333335 +340,1702159845928.0,66.375,0.0033333333333333335 +341,1702160145928.0,68.5625,0.0033333333333333335 +342,1702160445928.0,75.6875,0.0033333333333333335 +343,1702160745928.0,65.9375,0.0033333333333333335 +344,1702161045928.0,67.5625,0.0033333333333333335 +345,1702161345928.0,65.625,0.0033333333333333335 +346,1702161645928.0,62.0,0.0033333333333333335 +347,1702161945928.0,69.25,0.0033333333333333335 +348,1702162245929.0,66.0625,0.0033333333333333335 +349,1702162545929.0,62.84375,0.0033333333333333335 +350,1702162845927.0,62.9375,0.0033333333333333335 +351,1702163145929.0,64.1875,0.0033333333333333335 +352,1702163445927.0,69.9375,0.0033333333333333335 +353,1702163745928.0,58.96875,0.0033333333333333335 +354,1702164045928.0,62.65625,0.0033333333333333335 +355,1702164345928.0,62.96875,0.0033333333333333335 +356,1702164645928.0,74.3125,0.0033333333333333335 +357,1702164945928.0,56.375,0.0033333333333333335 +358,1702165245931.0,62.84375,0.0033333333333333335 +359,1702165545927.0,57.15625,0.0033333333333333335 +360,1702165845929.0,60.125,0.0033333333333333335 +361,1702166145929.0,52.28125,0.0033333333333333335 +362,1702166445929.9998,,0.0033333333333333335 +363,1702166745926.0002,,0.0033333333333333335 +364,1702167045927.0,,0.0033333333333333335 +365,1702167345927.0,,0.0033333333333333335 +366,1702167645927.0,,0.0033333333333333335 +367,1702167945926.0002,,0.0033333333333333335 +368,1702168245927.0,,0.0033333333333333335 +369,1702168545928.0,69.625,0.0033333333333333335 +370,1702168845928.0,61.21875,0.0033333333333333335 +371,1702169145927.0,58.96875,0.0033333333333333335 +372,1702169445929.9998,79.625,0.0033333333333333335 +373,1702169745926.0002,,0.0033333333333333335 +374,1702170045928.0,78.0,0.0033333333333333335 +375,1702170345926.0002,,0.0033333333333333335 +376,1702170645927.0,,0.0033333333333333335 +377,1702170945926.0002,64.0,0.0033333333333333335 +378,1702171245927.0,68.1875,0.0033333333333333335 +379,1702171545927.0,72.3125,0.0033333333333333335 +380,1702171845927.0,57.59375,0.0033333333333333335 +381,1702172445927.0,61.6875,0.0033333333333333335 +382,1702172745927.0,60.96875,0.0033333333333333335 +383,1702173045927.0,65.375,0.0033333333333333335 +384,1702173345931.0,71.0,0.0033333333333333335 +385,1702173645927.0,,0.0033333333333333335 +386,1702173945928.0,70.25,0.0033333333333333335 +387,1702174245927.0,66.4375,0.0033333333333333335 +388,1702174545927.0,57.28125,0.0033333333333333335 +389,1702174845927.0,60.3125,0.0033333333333333335 +390,1702175145927.0,57.96875,0.0033333333333333335 +391,1702175445927.0,59.84375,0.0033333333333333335 +392,1702175745927.0,,0.0033333333333333335 +393,1702176045928.0,73.625,0.0033333333333333335 +394,1702176345942.0002,58.4375,0.0033333333333333335 +395,1702176645927.0,,0.0033333333333333335 +396,1702177245928.0,64.9375,0.0033333333333333335 +397,1702177545927.0,,0.0033333333333333335 +398,1702177845928.0,60.1875,0.0033333333333333335 +399,1702178145928.0,65.25,0.0033333333333333335 +400,1702178445927.0,69.5,0.0033333333333333335 +401,1702178745929.9998,62.625,0.0033333333333333335 +402,1702179045927.0,63.875,0.0033333333333333335 +403,1702179345927.0,73.375,0.0033333333333333335 +404,1702179645926.0002,,0.0033333333333333335 +405,1702179945927.0,75.0,0.0033333333333333335 +406,1702180245928.0,60.59375,0.0033333333333333335 +407,1702180545904.0,61.34375,0.0033333333333333335 +408,1702180845905.0,73.4375,0.0033333333333333335 +409,1702181145904.0,,0.0033333333333333335 +410,1702181745904.0,59.84375,0.0033333333333333335 +411,1702182045905.0,54.6875,0.0033333333333333335 +412,1702182345908.0,59.40625,0.0033333333333333335 +413,1702182645964.0,56.5625,0.0033333333333333335 +414,1702182945917.0,,0.0033333333333333335 +415,1702183245905.0,54.84375,0.0033333333333333335 +416,1702183545904.0,53.4375,0.0033333333333333335 +417,1702183845905.0,59.21875,0.0033333333333333335 +418,1702184145904.0,55.84375,0.0033333333333333335 +419,1702184445904.0,62.90625,0.0033333333333333335 +420,1702184745907.0,,0.0033333333333333335 +421,1702185045903.0,,0.0033333333333333335 +422,1702185345905.9998,60.09375,0.0033333333333333335 +423,1702185646379.0,,0.0033333333333333335 +424,1702185945904.0,59.8125,0.0033333333333333335 +425,1702186245905.0,57.125,0.0033333333333333335 +426,1702186545903.0,,0.0033333333333333335 +427,1702186845905.0,,0.0033333333333333335 +428,1702187145905.0,55.15625,0.0033333333333333335 +429,1702187445905.0,54.46875,0.0033333333333333335 +430,1702187745905.9998,56.40625,0.0033333333333333335 +431,1702188045905.0,57.5625,0.0033333333333333335 +432,1702188345905.0,55.34375,0.0033333333333333335 +433,1702188645904.0,59.59375,0.0033333333333333335 +434,1702188945905.0,55.46875,0.0033333333333333335 +435,1702189245905.9998,62.71875,0.0033333333333333335 +436,1702189545905.9998,58.1875,0.0033333333333333335 +437,1702189845905.9998,60.96875,0.0033333333333333335 +438,1702190145905.9998,59.5625,0.0033333333333333335 +439,1702190445927.0,59.71875,0.0033333333333333335 +440,1702190745905.0,67.0625,0.0033333333333333335 +441,1702191045905.0,61.1875,0.0033333333333333335 +442,1702191345905.0,65.4375,0.0033333333333333335 +443,1702191645905.9998,57.40625,0.0033333333333333335 +444,1702191945905.0,53.46875,0.0033333333333333335 +445,1702192246177.9998,54.34375,0.0033333333333333335 +446,1702192545905.0,55.53125,0.0033333333333333335 +447,1702192845905.0,56.0,0.0033333333333333335 +448,1702193145905.0,57.1875,0.0033333333333333335 +449,1702193445905.0,52.5,0.0033333333333333335 +450,1702193745905.0,50.84375,0.0033333333333333335 +451,1702194045905.0,50.59375,0.0033333333333333335 +452,1702194345905.0,58.125,0.0033333333333333335 +453,1702194645905.0,52.875,0.0033333333333333335 +454,1702194945905.9998,54.03125,0.0033333333333333335 +455,1702195245904.0,53.5,0.0033333333333333335 +456,1702195545905.0,54.125,0.0033333333333333335 +457,1702195845905.9998,50.96875,0.0033333333333333335 +458,1702196145907.0,54.875,0.0033333333333333335 +459,1702196445905.0,58.6875,0.0033333333333333335 +460,1702196745905.9998,54.375,0.0033333333333333335 +461,1702197045910.0002,59.53125,0.0033333333333333335 +462,1702197345905.0,62.0625,0.0033333333333333335 +463,1702197645905.0,53.0625,0.0033333333333333335 +464,1702197945905.0,60.1875,0.0033333333333333335 +465,1702198545905.0,51.25,0.0033333333333333335 +466,1702198845905.0,49.15625,0.0033333333333333335 +467,1702199145905.0,48.3125,0.0033333333333333335 +468,1702199446508.0,48.5625,0.0033333333333333335 +469,1702199745905.0,48.71875,0.0033333333333333335 +470,1702200045905.0,47.6875,0.0033333333333333335 +471,1702200345905.0,49.6875,0.0033333333333333335 +472,1702200645905.0,46.59375,0.0033333333333333335 +473,1702200945904.0,44.0625,0.0033333333333333335 +474,1702201245905.0,47.75,0.0033333333333333335 +475,1702201545905.0,47.5625,0.0033333333333333335 +476,1702201845905.0,48.375,0.0033333333333333335 +477,1702202145905.0,49.09375,0.0033333333333333335 +478,1702202445905.0,47.15625,0.0033333333333333335 +479,1702202745905.0,45.3125,0.0033333333333333335 +480,1702203045905.0,49.46875,0.0033333333333333335 +481,1702203345905.0,47.5,0.0033333333333333335 +482,1702203645905.0,46.75,0.0033333333333333335 +483,1702203945904.0,49.3125,0.0033333333333333335 +484,1702204245905.0,54.65625,0.0033333333333333335 +485,1702204545905.0,48.25,0.0033333333333333335 +486,1702204845905.0,45.78125,0.0033333333333333335 +487,1702205145905.9998,46.875,0.0033333333333333335 +488,1702205445905.0,46.5625,0.0033333333333333335 +489,1702205745905.0,49.28125,0.0033333333333333335 +490,1702206045905.9998,45.09375,0.0033333333333333335 +491,1702206345905.9998,47.75,0.0033333333333333335 +492,1702206645905.0,48.71875,0.0033333333333333335 +493,1702206945905.0,48.90625,0.0033333333333333335 +494,1702207245907.0,52.5,0.0033333333333333335 +495,1702207545905.0,46.84375,0.0033333333333333335 +496,1702207845905.9998,52.53125,0.0033333333333333335 +497,1702208145905.0,49.625,0.0033333333333333335 +498,1702208445905.0,50.46875,0.0033333333333333335 +499,1702208745905.9998,48.59375,0.0033333333333333335 +500,1702209045905.0,46.84375,0.0033333333333333335 +501,1702209345905.9998,46.3125,0.0033333333333333335 +502,1702209645905.0,53.90625,0.0033333333333333335 +503,1702209945905.0,50.21875,0.0033333333333333335 +504,1702210245905.9998,50.5625,0.0033333333333333335 +505,1702210545905.0,49.59375,0.0033333333333333335 +506,1702210845905.0,49.3125,0.0033333333333333335 +507,1702211145904.0,,0.0033333333333333335 +508,1702211445904.0,,0.0033333333333333335 +509,1702211745904.0,,0.0033333333333333335 +510,1702212045904.0,,0.0033333333333333335 +511,1702212345904.0,,0.0033333333333333335 +512,1702212645905.0,45.09375,0.0033333333333333335 +513,1702212945905.0,48.03125,0.0033333333333333335 +514,1702213245905.9998,47.34375,0.0033333333333333335 +515,1702213545905.0,,0.0033333333333333335 +516,1702213845905.0,48.53125,0.0033333333333333335 +517,1702214145905.0,50.1875,0.0033333333333333335 +518,1702214445927.0,54.40625,0.0033333333333333335 +519,1702214745913.0,50.34375,0.0033333333333333335 +520,1702215045904.0,53.1875,0.0033333333333333335 +521,1702215345921.9998,52.0,0.0033333333333333335 +522,1702215645905.0,50.0625,0.0033333333333333335 +523,1702215945904.0,47.0625,0.0033333333333333335 +524,1702216245904.0,46.15625,0.0033333333333333335 +525,1702216545904.0,,0.0033333333333333335 +526,1702216845904.0,46.53125,0.0033333333333333335 +527,1702217145905.0,44.0,0.0033333333333333335 +528,1702217445905.0,45.25,0.0033333333333333335 +529,1702217745905.9998,46.34375,0.0033333333333333335 +530,1702218045905.9998,66.125,0.0033333333333333335 +531,1702218345904.0,48.4375,0.0033333333333333335 +532,1702218645905.0,56.21875,0.0033333333333333335 +533,1702218945908.0,55.9375,0.0033333333333333335 +534,1702219245905.0,49.4375,0.0033333333333333335 +535,1702219545907.0,51.65625,0.0033333333333333335 +536,1702219845905.0,48.1875,0.0033333333333333335 +537,1702220145904.0,57.90625,0.0033333333333333335 +538,1702220445905.0,49.25,0.0033333333333333335 +539,1702220745905.0,57.65625,0.0033333333333333335 +540,1702221045904.0,64.1875,0.0033333333333333335 +541,1702221645909.0,56.6875,0.0033333333333333335 +542,1702221945905.9998,59.40625,0.0033333333333333335 +543,1702222245905.0,60.53125,0.0033333333333333335 +544,1702222545904.0,,0.0033333333333333335 +545,1702222845905.0,72.0625,0.0033333333333333335 +546,1702223145904.0,60.5625,0.0033333333333333335 +547,1702223445904.0,,0.0033333333333333335 +548,1702223746372.0,,0.0033333333333333335 +549,1702224006900.0,,0.0033333333333333335 +550,1702224346144.0,174.75,0.0033333333333333335 +551,1702224645879.0,166.875,0.0033333333333333335 +552,1702224856079.0,152.625,0.0033333333333333335 +553,1702224945903.0,,0.0033333333333333335 +554,1702225245905.9998,98.875,0.0033333333333333335 +555,1702225545905.9998,89.5625,0.0033333333333333335 +556,1702225845905.9998,94.375,0.0033333333333333335 +557,1702226145905.0,94.6875,0.0033333333333333335 +558,1702226445905.9998,85.9375,0.0033333333333333335 +559,1702226745905.0,,0.0033333333333333335 +560,1702227045905.0,,0.0033333333333333335 +561,1702227345904.0,,0.0033333333333333335 +562,1702227645905.0,,0.0033333333333333335 +563,1702227906913.9998,,0.0033333333333333335 +564,1702228056713.0,95.5625,0.0033333333333333335 +565,1702228245907.0,,0.0033333333333333335 +566,1702228545905.0,,0.0033333333333333335 +567,1702228754609.0,,0.0033333333333333335 +568,1702228845903.0,,0.0033333333333333335 +569,1702229145903.0,77.0,0.0033333333333333335 +570,1702229445907.0,,0.0033333333333333335 +571,1702229745904.0,,0.0033333333333333335 +572,1702230045905.0,85.125,0.0033333333333333335 +573,1702230345907.0,71.5,0.0033333333333333335 +574,1702230645905.0,77.75,0.0033333333333333335 +575,1702230945903.0,,0.0033333333333333335 +576,1702231245904.0,,0.0033333333333333335 +577,1702231545905.0,103.5625,0.0033333333333333335 +578,1702231845904.0,,0.0033333333333333335 +579,1702232145904.0,,0.0033333333333333335 +580,1702232445905.9998,88.0625,0.0033333333333333335 +581,1702232745903.0,,0.0033333333333333335 +582,1702233045904.0,,0.0033333333333333335 +583,1702233345904.0,78.4375,0.0033333333333333335 +584,1702233645905.0,,0.0033333333333333335 +585,1702233945904.0,76.0,0.0033333333333333335 +586,1702234245905.0,,0.0033333333333333335 +587,1702234545908.0,,0.0033333333333333335 +588,1702234879093.0,,0.0033333333333333335 +589,1702235145904.0,,0.0033333333333333335 +590,1702235202975.0,,0.0033333333333333335 +591,1702235445904.0,,0.0033333333333333335 +592,1702235540113.9998,,0.0033333333333333335 +593,1702235745903.0,,0.0033333333333333335 +594,1702235834022.0002,,0.0033333333333333335 +595,1702236045903.0,,0.0033333333333333335 +596,1702236345905.0,93.0625,0.0033333333333333335 +597,1702236645904.0,,0.0033333333333333335 +598,1702236945904.0,90.9375,0.0033333333333333335 +599,1702237245905.9998,98.125,0.0033333333333333335 +600,1702237545907.0,116.3125,0.0033333333333333335 +601,1702237845905.0,100.25,0.0033333333333333335 +602,1702238145905.0,,0.0033333333333333335 +603,1702238445905.0,92.125,0.0033333333333333335 +604,1702238745905.0,91.6875,0.0033333333333333335 +605,1702239045904.0,,0.0033333333333333335 +606,1702239345905.0,103.6875,0.0033333333333333335 +607,1702239645904.0,84.1875,0.0033333333333333335 +608,1702239945904.0,95.375,0.0033333333333333335 +609,1702240245905.0,91.625,0.0033333333333333335 +610,1702240545904.0,87.6875,0.0033333333333333335 +611,1702240845905.0,90.1875,0.0033333333333333335 +612,1702241145905.9998,71.25,0.0033333333333333335 +613,1702241445905.9998,91.0625,0.0033333333333333335 +614,1702241745905.0,79.75,0.0033333333333333335 +615,1702242045905.0,85.0625,0.0033333333333333335 +616,1702242345905.0,88.3125,0.0033333333333333335 +617,1702242645905.0,88.75,0.0033333333333333335 +618,1702242945904.0,,0.0033333333333333335 +619,1702243245904.0,,0.0033333333333333335 +620,1702243545904.0,,0.0033333333333333335 +621,1702243845905.0,83.3125,0.0033333333333333335 +622,1702244145905.9998,77.4375,0.0033333333333333335 +623,1702244445904.0,,0.0033333333333333335 +624,1702244745904.0,,0.0033333333333333335 +625,1702245045905.0,,0.0033333333333333335 +626,1702245345904.0,89.5625,0.0033333333333333335 +627,1702245645904.0,,0.0033333333333333335 +628,1702245731359.0,,0.0033333333333333335 +629,1702245945904.0,,0.0033333333333333335 +630,1702246245905.9998,83.5,0.0033333333333333335 +631,1702246545905.0,82.125,0.0033333333333333335 +632,1702246845873.0,99.3125,0.0033333333333333335 +633,1702247145873.9998,87.3125,0.0033333333333333335 +634,1702247445875.0,,0.0033333333333333335 +635,1702247745873.9998,81.75,0.0033333333333333335 +636,1702248045873.0,,0.0033333333333333335 +637,1702248645873.0,,0.0033333333333333335 +638,1702248945873.9998,81.5,0.0033333333333333335 +639,1702249245873.9998,77.25,0.0033333333333333335 +640,1702249545873.9998,80.125,0.0033333333333333335 +641,1702249845873.9998,67.9375,0.0033333333333333335 +642,1702250145873.9998,66.8125,0.0033333333333333335 +643,1702250445873.0,78.75,0.0033333333333333335 +644,1702250745875.0,69.625,0.0033333333333333335 +645,1702251045873.9998,71.0,0.0033333333333333335 +646,1702251345873.0,,0.0033333333333333335 +647,1702251645873.0,75.875,0.0033333333333333335 +648,1702251945877.0,75.875,0.0033333333333333335 +649,1702252245873.9998,79.5625,0.0033333333333333335 +650,1702252545873.0,71.3125,0.0033333333333333335 +651,1702252845873.0,68.625,0.0033333333333333335 +652,1702253145873.9998,74.0,0.0033333333333333335 +653,1702253445875.0,78.0,0.0033333333333333335 +654,1702253745873.9998,70.6875,0.0033333333333333335 +655,1702254045873.9998,71.75,0.0033333333333333335 +656,1702254345873.9998,68.375,0.0033333333333333335 +657,1702254645873.9998,73.625,0.0033333333333333335 +658,1702254945873.9998,77.3125,0.0033333333333333335 +659,1702255245876.0,75.875,0.0033333333333333335 +660,1702255545873.9998,71.3125,0.0033333333333333335 +661,1702255845873.9998,69.3125,0.0033333333333333335 +662,1702256145873.9998,74.1875,0.0033333333333333335 +663,1702256445873.9998,77.125,0.0033333333333333335 +664,1702256745875.0,74.8125,0.0033333333333333335 +665,1702257045873.9998,63.96875,0.0033333333333333335 +666,1702257345873.0,,0.0033333333333333335 +667,1702257645875.0,77.5,0.0033333333333333335 +668,1702257945873.9998,69.125,0.0033333333333333335 +669,1702258245873.9998,67.0625,0.0033333333333333335 +670,1702258545873.9998,76.1875,0.0033333333333333335 +671,1702258845873.0,73.75,0.0033333333333333335 +672,1702259145873.9998,69.1875,0.0033333333333333335 +673,1702259445875.0,70.5625,0.0033333333333333335 +674,1702259745875.0,70.1875,0.0033333333333333335 +675,1702260045873.0,66.5,0.0033333333333333335 +676,1702260345875.0,74.875,0.0033333333333333335 +677,1702260645877.0,81.9375,0.0033333333333333335 +678,1702260945873.0,62.96875,0.0033333333333333335 +679,1702261245876.0,69.5,0.0033333333333333335 +680,1702261545875.0,75.375,0.0033333333333333335 +681,1702261845876.0,63.75,0.0033333333333333335 +682,1702262145873.9998,69.875,0.0033333333333333335 +683,1702262445873.9998,69.375,0.0033333333333333335 +684,1702262745873.9998,66.8125,0.0033333333333333335 +685,1702263045876.0,64.6875,0.0033333333333333335 +686,1702263345873.9998,65.5625,0.0033333333333333335 +687,1702263645873.0,64.5,0.0033333333333333335 +688,1702263945875.0,64.5,0.0033333333333333335 +689,1702264245873.0,63.59375,0.0033333333333333335 +690,1702264545873.9998,66.6875,0.0033333333333333335 +691,1702264845873.0,,0.0033333333333333335 +692,1702265145873.9998,68.375,0.0033333333333333335 +693,1702265445877.0,64.0,0.0033333333333333335 +694,1702265745873.9998,68.0625,0.0033333333333333335 +695,1702266045873.9998,66.5,0.0033333333333333335 +696,1702266345873.9998,63.5625,0.0033333333333333335 +697,1702266645875.0,58.9375,0.0033333333333333335 +698,1702266945873.0,69.125,0.0033333333333333335 +699,1702267245875.0,63.25,0.0033333333333333335 +700,1702267845875.0,63.40625,0.0033333333333333335 +701,1702268145878.0002,56.03125,0.0033333333333333335 +702,1702268445873.9998,63.09375,0.0033333333333333335 +703,1702268745873.0,58.78125,0.0033333333333333335 +704,1702269045873.0,,0.0033333333333333335 +705,1702269346107.0,64.75,0.0033333333333333335 +706,1702269645873.9998,57.1875,0.0033333333333333335 +707,1702269945873.0,64.8125,0.0033333333333333335 +708,1702270245873.9998,59.1875,0.0033333333333333335 +709,1702270545876.0,58.9375,0.0033333333333333335 +710,1702270845873.9998,54.59375,0.0033333333333333335 +711,1702271145873.9998,62.78125,0.0033333333333333335 +712,1702271445873.0,51.03125,0.0033333333333333335 +713,1702271745873.9998,49.9375,0.0033333333333333335 +714,1702272045873.9998,,0.0033333333333333335 +715,1702272345873.9998,49.4375,0.0033333333333333335 +716,1702272645873.9998,47.78125,0.0033333333333333335 +717,1702272945873.9998,48.03125,0.0033333333333333335 +718,1702273245875.0,47.96875,0.0033333333333333335 +719,1702273545873.9998,48.40625,0.0033333333333333335 +720,1702273845877.0,49.5625,0.0033333333333333335 +721,1702274145873.9998,50.0625,0.0033333333333333335 +722,1702274445873.0,51.3125,0.0033333333333333335 +723,1702274745873.9998,47.8125,0.0033333333333333335 +724,1702275045873.9998,52.1875,0.0033333333333333335 +725,1702275345875.0,58.03125,0.0033333333333333335 +726,1702275645873.9998,48.78125,0.0033333333333333335 +727,1702275945873.9998,52.09375,0.0033333333333333335 +728,1702276245873.9998,52.4375,0.0033333333333333335 +729,1702276545873.9998,52.03125,0.0033333333333333335 +730,1702276845873.9998,49.21875,0.0033333333333333335 +731,1702277145873.9998,47.59375,0.0033333333333333335 +732,1702277445873.9998,47.8125,0.0033333333333333335 +733,1702277745873.9998,45.625,0.0033333333333333335 +734,1702278045873.9998,44.1875,0.0033333333333333335 +735,1702278345873.9998,45.6875,0.0033333333333333335 +736,1702278645873.9998,46.46875,0.0033333333333333335 +737,1702278945873.9998,48.0625,0.0033333333333333335 +738,1702279245876.0,48.21875,0.0033333333333333335 +739,1702279545877.0,47.15625,0.0033333333333333335 +740,1702279845873.9998,48.1875,0.0033333333333333335 +741,1702280145873.9998,49.5625,0.0033333333333333335 +742,1702280446244.0,45.78125,0.0033333333333333335 +743,1702280745873.9998,45.5625,0.0033333333333333335 +744,1702281046040.0,46.53125,0.0033333333333333335 +745,1702281345877.0,47.5625,0.0033333333333333335 +746,1702281645873.9998,44.90625,0.0033333333333333335 +747,1702281945875.0,46.46875,0.0033333333333333335 +748,1702282245873.9998,52.21875,0.0033333333333333335 +749,1702282545877.0,49.53125,0.0033333333333333335 +750,1702282845873.0,,0.0033333333333333335 +751,1702283145873.9998,53.96875,0.0033333333333333335 +752,1702283445873.9998,47.15625,0.0033333333333333335 +753,1702283745876.0,47.875,0.0033333333333333335 +754,1702284045873.9998,51.84375,0.0033333333333333335 +755,1702284345873.9998,49.0625,0.0033333333333333335 +756,1702284645873.9998,48.0625,0.0033333333333333335 +757,1702284945878.0002,50.15625,0.0033333333333333335 +758,1702285245873.9998,50.65625,0.0033333333333333335 +759,1702285545875.0,50.9375,0.0033333333333333335 +760,1702285845876.0,48.25,0.0033333333333333335 +761,1702286145873.9998,47.9375,0.0033333333333333335 +762,1702286445875.0,47.09375,0.0033333333333333335 +763,1702286745873.0,49.5,0.0033333333333333335 +764,1702287045873.9998,45.71875,0.0033333333333333335 +765,1702287345897.0,45.09375,0.0033333333333333335 +766,1702287645873.0,46.0,0.0033333333333333335 +767,1702287945878.0002,47.6875,0.0033333333333333335 +768,1702288245877.0,47.84375,0.0033333333333333335 +769,1702288545873.9998,51.1875,0.0033333333333333335 +770,1702288845873.0,49.125,0.0033333333333333335 +771,1702289145873.9998,43.59375,0.0033333333333333335 +772,1702289445873.9998,46.09375,0.0033333333333333335 +773,1702289745873.9998,46.0625,0.0033333333333333335 +774,1702290045873.9998,47.09375,0.0033333333333333335 +775,1702290345873.9998,46.28125,0.0033333333333333335 +776,1702290645875.0,44.78125,0.0033333333333333335 +777,1702290945873.9998,46.4375,0.0033333333333333335 +778,1702291245875.0,45.5625,0.0033333333333333335 +779,1702291545873.9998,44.15625,0.0033333333333333335 +780,1702291845873.9998,54.40625,0.0033333333333333335 +781,1702292145897.9998,49.53125,0.0033333333333333335 +782,1702292445873.9998,48.6875,0.0033333333333333335 +783,1702292745873.9998,50.78125,0.0033333333333333335 +784,1702293045873.9998,48.9375,0.0033333333333333335 +785,1702293345873.9998,44.28125,0.0033333333333333335 +786,1702293645873.9998,45.375,0.0033333333333333335 +787,1702293945873.9998,45.875,0.0033333333333333335 +788,1702294245876.0,47.1875,0.0033333333333333335 +789,1702295145873.0,,0.0033333333333333335 +790,1702295445873.9998,46.59375,0.0033333333333333335 +791,1702295746071.0,44.46875,0.0033333333333333335 +792,1702296045873.9998,46.4375,0.0033333333333333335 +793,1702296345873.9998,44.96875,0.0033333333333333335 +794,1702296645873.9998,45.1875,0.0033333333333333335 +795,1702296945877.0,48.1875,0.0033333333333333335 +796,1702297245873.9998,43.75,0.0033333333333333335 +797,1702297545875.0,44.46875,0.0033333333333333335 +798,1702297845873.9998,57.90625,0.0033333333333333335 +799,1702298145875.0,44.78125,0.0033333333333333335 +800,1702298445873.9998,49.75,0.0033333333333333335 +801,1702298745875.0,44.625,0.0033333333333333335 +802,1702299045875.0,43.375,0.0033333333333333335 +803,1702299345875.0,46.28125,0.0033333333333333335 +804,1702299645873.0,54.65625,0.0033333333333333335 +805,1702299945873.9998,47.53125,0.0033333333333333335 +806,1702300245873.0,52.84375,0.0033333333333333335 +807,1702300545873.0,,0.0033333333333333335 +808,1702300845873.9998,78.625,0.0033333333333333335 +809,1702301145873.0,62.40625,0.0033333333333333335 +810,1702301445873.9998,,0.0033333333333333335 +811,1702301745873.0,69.0,0.0033333333333333335 +812,1702302045872.0,,0.0033333333333333335 +813,1702302345873.0,,0.0033333333333333335 +814,1702302645873.0,66.5,0.0033333333333333335 +815,1702302945873.0,64.75,0.0033333333333333335 +816,1702303245873.9998,70.625,0.0033333333333333335 +817,1702303545873.9998,58.875,0.0033333333333333335 +818,1702303845873.0,74.5,0.0033333333333333335 +819,1702304445873.9998,61.15625,0.0033333333333333335 +820,1702304745873.9998,67.75,0.0033333333333333335 +821,1702305045873.0,67.6875,0.0033333333333333335 +822,1702305345875.0,,0.0033333333333333335 +823,1702305645876.0,74.9375,0.0033333333333333335 +824,1702305945873.9998,75.5625,0.0033333333333333335 +825,1702306245873.0,,0.0033333333333333335 +826,1702306545873.0,75.875,0.0033333333333333335 +827,1702306845873.0,,0.0033333333333333335 +828,1702307145875.0,66.3125,0.0033333333333333335 +829,1702307445873.0,60.5,0.0033333333333333335 +830,1702307745872.0,63.78125,0.0033333333333333335 +831,1702308045873.9998,70.1875,0.0033333333333333335 +832,1702308345875.0,70.0625,0.0033333333333333335 +833,1702308645873.9998,71.3125,0.0033333333333333335 +834,1702308945873.0,81.5,0.0033333333333333335 +835,1702309245873.9998,67.8125,0.0033333333333333335 +836,1702309545875.0,,0.0033333333333333335 +837,1702309845873.0,,0.0033333333333333335 +838,1702310145873.9998,59.4375,0.0033333333333333335 +839,1702310445873.9998,70.6875,0.0033333333333333335 +840,1702310745873.0,65.0625,0.0033333333333333335 +841,1702311045885.0,61.4375,0.0033333333333333335 +842,1702311345873.9998,58.5625,0.0033333333333333335 +843,1702311645873.0,69.25,0.0033333333333333335 +844,1702311945873.0,62.40625,0.0033333333333333335 +845,1702312245873.9998,63.625,0.0033333333333333335 +846,1702312545873.9998,70.875,0.0033333333333333335 +847,1702312845873.0,65.3125,0.0033333333333333335 +848,1702313145873.9998,56.0,0.0033333333333333335 +849,1702313445873.0,57.21875,0.0033333333333333335 +850,1702313745873.0,64.25,0.0033333333333333335 +851,1702314045873.9998,57.1875,0.0033333333333333335 +852,1702314645873.0,62.375,0.0033333333333333335 +853,1702314945885.0,70.9375,0.0033333333333333335 +854,1702315245885.0,69.0,0.0033333333333333335 +855,1702315545885.0,59.8125,0.0033333333333333335 +856,1702315845886.0002,69.125,0.0033333333333333335 +857,1702316145887.0,55.96875,0.0033333333333333335 +858,1702316445885.0,,0.0033333333333333335 +859,1702316745888.0,59.65625,0.0033333333333333335 +860,1702317045885.0,,0.0033333333333333335 +861,1702317345886.0002,72.0,0.0033333333333333335 +862,1702317645885.0,65.75,0.0033333333333333335 +863,1702317945886.0002,64.3125,0.0033333333333333335 +864,1702318245885.0,72.6875,0.0033333333333333335 +865,1702318545885.0,,0.0033333333333333335 +866,1702318845891.0,,0.0033333333333333335 +867,1702319145885.0,66.3125,0.0033333333333333335 +868,1702319445885.0,66.75,0.0033333333333333335 +869,1702319745886.0002,66.6875,0.0033333333333333335 +870,1702320045885.0,,0.0033333333333333335 +871,1702320345885.0,72.3125,0.0033333333333333335 +872,1702320645885.0,64.625,0.0033333333333333335 +873,1702320945885.0,77.0,0.0033333333333333335 +874,1702321245884.0,,0.0033333333333333335 +875,1702321545886.0002,64.75,0.0033333333333333335 +876,1702321845885.0,68.9375,0.0033333333333333335 +877,1702322145886.0002,59.0625,0.0033333333333333335 +878,1702322445886.0002,80.0625,0.0033333333333333335 +879,1702322745887.0,61.71875,0.0033333333333333335 +880,1702323045886.0002,64.8125,0.0033333333333333335 +881,1702323345886.0002,61.0625,0.0033333333333333335 +882,1702323645886.0002,65.1875,0.0033333333333333335 +883,1702323945885.0,59.40625,0.0033333333333333335 +884,1702324245886.0002,63.0625,0.0033333333333333335 +885,1702324545886.0002,76.625,0.0033333333333333335 +886,1702325145885.0,64.1875,0.0033333333333333335 +887,1702325445886.0002,64.5,0.0033333333333333335 +888,1702325745885.0,64.25,0.0033333333333333335 +889,1702326045885.0,78.375,0.0033333333333333335 +890,1702326345885.0,77.75,0.0033333333333333335 +891,1702326645887.0,71.375,0.0033333333333333335 +892,1702326945886.0002,67.5,0.0033333333333333335 +893,1702327245886.0002,77.25,0.0033333333333333335 +894,1702327545886.0002,74.5625,0.0033333333333333335 +895,1702327845887.0,74.875,0.0033333333333333335 +896,1702328145887.0,56.0625,0.0033333333333333335 +897,1702328445888.0,,0.0033333333333333335 +898,1702328745886.0002,60.0625,0.0033333333333333335 +899,1702329045885.0,61.8125,0.0033333333333333335 +900,1702329345885.0,70.8125,0.0033333333333333335 +901,1702329645885.0,71.8125,0.0033333333333333335 +902,1702329945886.0002,57.25,0.0033333333333333335 +903,1702330245885.0,67.6875,0.0033333333333333335 +904,1702330545885.0,87.125,0.0033333333333333335 +905,1702330950851.0,,0.0033333333333333335 +906,1702331145884.0,,0.0033333333333333335 +907,1702331445884.0,,0.0033333333333333335 +908,1702331745884.0,,0.0033333333333333335 +909,1702332045885.0,,0.0033333333333333335 +910,1702332345884.0,,0.0033333333333333335 +911,1702332645884.0,,0.0033333333333333335 +912,1702332945886.0002,84.5625,0.0033333333333333335 +913,1702333245886.0002,70.1875,0.0033333333333333335 +914,1702333545886.0002,76.3125,0.0033333333333333335 +915,1702333845888.0,70.4375,0.0033333333333333335 +916,1702334145887.0,83.625,0.0033333333333333335 +917,1702334445887.0,75.5625,0.0033333333333333335 +918,1702334745886.0002,73.375,0.0033333333333333335 +919,1702335045886.0002,68.375,0.0033333333333333335 +920,1702335345886.0002,83.5,0.0033333333333333335 +921,1702335645886.0002,67.3125,0.0033333333333333335 +922,1702335945887.0,66.1875,0.0033333333333333335 +923,1702336245885.0,79.5,0.0033333333333333335 +924,1702336545886.0002,63.09375,0.0033333333333333335 +925,1702336845886.0002,53.40625,0.0033333333333333335 +926,1702337145885.0,79.6875,0.0033333333333333335 +927,1702337445885.0,60.75,0.0033333333333333335 +928,1702337745907.0,60.25,0.0033333333333333335 +929,1702338045886.0002,57.4375,0.0033333333333333335 +930,1702338345887.0,63.0625,0.0033333333333333335 +931,1702338645886.0002,63.84375,0.0033333333333333335 +932,1702338945888.0,63.5,0.0033333333333333335 +933,1702339245885.0,65.5625,0.0033333333333333335 +934,1702339545886.0002,58.53125,0.0033333333333333335 +935,1702339845884.0,,0.0033333333333333335 +936,1702340145885.0,79.625,0.0033333333333333335 +937,1702340445884.0,,0.0033333333333333335 +938,1702340745886.0002,84.1875,0.0033333333333333335 +939,1702341045889.0,87.25,0.0033333333333333335 +940,1702341345885.0,,0.0033333333333333335 +941,1702341645885.0,,0.0033333333333333335 +942,1702341945884.0,,0.0033333333333333335 +943,1702342245885.0,83.0625,0.0033333333333333335 +944,1702342845885.0,76.3125,0.0033333333333333335 +945,1702343145885.0,61.375,0.0033333333333333335 +946,1702343445885.0,77.625,0.0033333333333333335 +947,1702343745884.0,,0.0033333333333333335 +948,1702344045885.0,65.6875,0.0033333333333333335 +949,1702344345886.0002,66.3125,0.0033333333333333335 +950,1702344645886.0002,61.90625,0.0033333333333333335 +951,1702344945884.0,,0.0033333333333333335 +952,1702345245885.0,67.9375,0.0033333333333333335 +953,1702345545886.0002,61.0,0.0033333333333333335 +954,1702345845885.0,,0.0033333333333333335 +955,1702346145885.0,58.65625,0.0033333333333333335 +956,1702346445886.0002,83.25,0.0033333333333333335 +957,1702346745884.0,61.6875,0.0033333333333333335 +958,1702347045885.0,58.84375,0.0033333333333333335 +959,1702347345885.0,,0.0033333333333333335 +960,1702347645886.0002,,0.0033333333333333335 +961,1702347945885.0,,0.0033333333333333335 +962,1702348245886.0002,60.09375,0.0033333333333333335 +963,1702348545887.0,58.1875,0.0033333333333333335 +964,1702348845885.0,57.25,0.0033333333333333335 +965,1702349145887.0,55.4375,0.0033333333333333335 +966,1702349445885.0,59.03125,0.0033333333333333335 +967,1702349745885.0,62.125,0.0033333333333333335 +968,1702350045886.0002,63.0,0.0033333333333333335 +969,1702350345886.0002,58.9375,0.0033333333333333335 +970,1702350645887.0,58.6875,0.0033333333333333335 +971,1702350946001.0,57.34375,0.0033333333333333335 +972,1702351245885.0,57.21875,0.0033333333333333335 +973,1702351545886.0002,61.84375,0.0033333333333333335 +974,1702351845887.0,57.25,0.0033333333333333335 +975,1702352145888.0,67.8125,0.0033333333333333335 +976,1702352445887.0,61.90625,0.0033333333333333335 +977,1702352745885.0,74.1875,0.0033333333333333335 +978,1702353045886.0002,75.625,0.0033333333333333335 +979,1702353345889.0,57.875,0.0033333333333333335 +980,1702353645886.0002,61.1875,0.0033333333333333335 +981,1702353945886.0002,54.0,0.0033333333333333335 +982,1702354245901.0,52.90625,0.0033333333333333335 +983,1702354545889.9998,52.78125,0.0033333333333333335 +984,1702354845886.0002,53.90625,0.0033333333333333335 +985,1702355145887.0,51.90625,0.0033333333333333335 +986,1702355445887.0,51.625,0.0033333333333333335 +987,1702355745887.0,52.5,0.0033333333333333335 +988,1702356045886.0002,53.53125,0.0033333333333333335 +989,1702356298673.9998,63.09375,0.0033333333333333335 +990,1702356345887.0,52.9375,0.0033333333333333335 +991,1702356645887.0,50.53125,0.0033333333333333335 +992,1702356945886.0002,50.90625,0.0033333333333333335 +993,1702357245886.0002,53.375,0.0033333333333333335 +994,1702357545885.0,,0.0033333333333333335 +995,1702357845886.0002,53.21875,0.0033333333333333335 +996,1702358145888.0,,0.0033333333333333335 +997,1702358445885.0,52.25,0.0033333333333333335 +998,1702358745886.0002,50.09375,0.0033333333333333335 +999,1702359045885.0,49.84375,0.0033333333333333335 +1000,1702359345889.0,49.40625,0.0033333333333333335 +1001,1702359645886.0002,50.375,0.0033333333333333335 +1002,1702359945887.0,50.46875,0.0033333333333333335 +1003,1702360245886.0002,52.8125,0.0033333333333333335 +1004,1702360545886.0002,51.21875,0.0033333333333333335 +1005,1702360845886.0002,51.25,0.0033333333333333335 +1006,1702361145929.0,50.6875,0.0033333333333333335 +1007,1702378355613.0,,0.0033333333333333335 +1008,1702378545897.9998,,0.0033333333333333335 +1009,1702378845885.0,,0.0033333333333333335 +1010,1702378865661.0,,0.0033333333333333335 +1011,1702384166273.0,,0.0033333333333333335 +1012,1702384178575.0,,0.0033333333333333335 +1013,1702384229830.0002,62.875,0.0033333333333333335 +1014,1702384545830.0002,67.5,0.0033333333333333335 +1015,1702384845831.0,54.5625,0.0033333333333333335 +1016,1702385145831.0,54.71875,0.0033333333333333335 +1017,1702385445831.0,51.84375,0.0033333333333333335 +1018,1702385745854.0002,54.59375,0.0033333333333333335 +1019,1702386045831.0,54.0,0.0033333333333333335 +1020,1702386345831.0,63.59375,0.0033333333333333335 +1021,1702386645831.0,61.15625,0.0033333333333333335 +1022,1702386945829.0,,0.0033333333333333335 +1023,1702387245830.0002,,0.0033333333333333335 +1024,1702387845829.0,,0.0033333333333333335 +1025,1702388145829.0,,0.0033333333333333335 +1026,1702388445829.0,,0.0033333333333333335 +1027,1702388745831.0,92.0625,0.0033333333333333335 +1028,1702389045830.0002,,0.0033333333333333335 +1029,1702389345830.0002,74.9375,0.0033333333333333335 diff --git a/test/completeness/data/Resp Rate.csv b/test/completeness/data/Resp Rate.csv new file mode 100644 index 00000000..176302cf --- /dev/null +++ b/test/completeness/data/Resp Rate.csv @@ -0,0 +1,1031 @@ +,Time Unix (ms),Resp Rate,Sampling Frequency (Hz) +0,1702057245456.0,11.40625,0.0033333333333333335 +1,1702057545457.0,11.2734375,0.0033333333333333335 +2,1702057845457.0,11.8359375,0.0033333333333333335 +3,1702058145455.0,,0.0033333333333333335 +4,1702058445457.0,12.4296875,0.0033333333333333335 +5,1702058745456.0,,0.0033333333333333335 +6,1702059045456.0,,0.0033333333333333335 +7,1702059345456.0,,0.0033333333333333335 +8,1702059645456.0,12.9453125,0.0033333333333333335 +9,1702059945456.0,12.9609375,0.0033333333333333335 +10,1702060245457.0,12.640625,0.0033333333333333335 +11,1702060545457.9998,13.125,0.0033333333333333335 +12,1702060845455.0,,0.0033333333333333335 +13,1702061145456.0,,0.0033333333333333335 +14,1702061445455.0,,0.0033333333333333335 +15,1702061745456.0,,0.0033333333333333335 +16,1702062045456.0,,0.0033333333333333335 +17,1702062345456.0,,0.0033333333333333335 +18,1702062645457.0,14.109375,0.0033333333333333335 +19,1702062945456.0,,0.0033333333333333335 +20,1702063245456.0,14.09375,0.0033333333333333335 +21,1702063545457.0,14.0625,0.0033333333333333335 +22,1702063845457.0,13.7265625,0.0033333333333333335 +23,1702064145456.0,14.0859375,0.0033333333333333335 +24,1702064445456.0,14.2109375,0.0033333333333333335 +25,1702064745457.0,13.859375,0.0033333333333333335 +26,1702065045457.0,,0.0033333333333333335 +27,1702065345456.0,,0.0033333333333333335 +28,1702065645457.0,13.6015625,0.0033333333333333335 +29,1702065945456.0,,0.0033333333333333335 +30,1702066245456.0,,0.0033333333333333335 +31,1702066545457.0,14.6640625,0.0033333333333333335 +32,1702066845457.0,15.296875,0.0033333333333333335 +33,1702067145465.9998,,0.0033333333333333335 +34,1702067445457.0,15.0390625,0.0033333333333333335 +35,1702067745456.0,,0.0033333333333333335 +36,1702068045456.0,,0.0033333333333333335 +37,1702068345456.0,,0.0033333333333333335 +38,1702068645456.0,,0.0033333333333333335 +39,1702068945456.0,,0.0033333333333333335 +40,1702069245456.0,,0.0033333333333333335 +41,1702069545456.0,14.0390625,0.0033333333333333335 +42,1702069845455.0,,0.0033333333333333335 +43,1702070145456.0,14.0234375,0.0033333333333333335 +44,1702070445456.0,,0.0033333333333333335 +45,1702070745456.0,,0.0033333333333333335 +46,1702071045457.0,,0.0033333333333333335 +47,1702071345456.0,,0.0033333333333333335 +48,1702071645456.0,,0.0033333333333333335 +49,1702071945457.0,14.5234375,0.0033333333333333335 +50,1702072245457.0,,0.0033333333333333335 +51,1702072545457.0,14.59375,0.0033333333333333335 +52,1702072845456.0,,0.0033333333333333335 +53,1702073145457.0,12.5078125,0.0033333333333333335 +54,1702073445459.0,12.1796875,0.0033333333333333335 +55,1702073745457.9998,12.4140625,0.0033333333333333335 +56,1702074045457.0,12.015625,0.0033333333333333335 +57,1702074345456.0,,0.0033333333333333335 +58,1702074645455.0,,0.0033333333333333335 +59,1702074945457.9998,,0.0033333333333333335 +60,1702075245456.0,,0.0033333333333333335 +61,1702075545456.0,,0.0033333333333333335 +62,1702075845457.9998,12.1640625,0.0033333333333333335 +63,1702076145457.9998,,0.0033333333333333335 +64,1702076445470.0002,11.984375,0.0033333333333333335 +65,1702076745457.9998,11.7421875,0.0033333333333333335 +66,1702077045456.0,,0.0033333333333333335 +67,1702077345494.0002,,0.0033333333333333335 +68,1702077645459.0,12.609375,0.0033333333333333335 +69,1702077945455.0,,0.0033333333333333335 +70,1702078245457.0,15.515625,0.0033333333333333335 +71,1702078545457.0,15.3984375,0.0033333333333333335 +72,1702078845457.0,15.03125,0.0033333333333333335 +73,1702079145473.9998,13.9375,0.0033333333333333335 +74,1702079445456.0,13.765625,0.0033333333333333335 +75,1702079745459.0,,0.0033333333333333335 +76,1702080045455.0,,0.0033333333333333335 +77,1702080345456.0,,0.0033333333333333335 +78,1702080645456.0,,0.0033333333333333335 +79,1702080945457.0,,0.0033333333333333335 +80,1702081245456.0,,0.0033333333333333335 +81,1702081545455.0,,0.0033333333333333335 +82,1702081845456.0,,0.0033333333333333335 +83,1702082145456.0,,0.0033333333333333335 +84,1702082445457.9998,,0.0033333333333333335 +85,1702082745456.0,,0.0033333333333333335 +86,1702083045457.0,,0.0033333333333333335 +87,1702083345456.0,,0.0033333333333333335 +88,1702083645455.0,,0.0033333333333333335 +89,1702083945457.0,,0.0033333333333333335 +90,1702084245457.0,12.3125,0.0033333333333333335 +91,1702084545457.0,12.703125,0.0033333333333333335 +92,1702084845456.0,,0.0033333333333333335 +93,1702085145457.0,12.046875,0.0033333333333333335 +94,1702085445456.0,,0.0033333333333333335 +95,1702085745457.0,11.796875,0.0033333333333333335 +96,1702086045456.0,,0.0033333333333333335 +97,1702086345456.0,,0.0033333333333333335 +98,1702086645456.0,11.25,0.0033333333333333335 +99,1702086945456.0,,0.0033333333333333335 +100,1702087245456.0,,0.0033333333333333335 +101,1702087545456.0,,0.0033333333333333335 +102,1702087845456.0,,0.0033333333333333335 +103,1702088145456.0,,0.0033333333333333335 +104,1702088445456.0,,0.0033333333333333335 +105,1702088745456.0,,0.0033333333333333335 +106,1702089045455.0,,0.0033333333333333335 +107,1702089345456.0,,0.0033333333333333335 +108,1702089645456.0,,0.0033333333333333335 +109,1702089945456.0,,0.0033333333333333335 +110,1702090245457.0,,0.0033333333333333335 +111,1702090545457.0,,0.0033333333333333335 +112,1702090845456.0,,0.0033333333333333335 +113,1702091145455.0,,0.0033333333333333335 +114,1702091445457.0,,0.0033333333333333335 +115,1702091745456.0,,0.0033333333333333335 +116,1702092045457.0,,0.0033333333333333335 +117,1702092345457.0,11.4296875,0.0033333333333333335 +118,1702092645456.0,,0.0033333333333333335 +119,1702092945457.9998,11.8359375,0.0033333333333333335 +120,1702093245456.0,12.46875,0.0033333333333333335 +121,1702093545457.9998,12.578125,0.0033333333333333335 +122,1702093845456.0,,0.0033333333333333335 +123,1702094145459.0,,0.0033333333333333335 +124,1702094445459.0,13.5546875,0.0033333333333333335 +125,1702094745456.0,,0.0033333333333333335 +126,1702095045455.0,,0.0033333333333333335 +127,1702095345455.0,,0.0033333333333333335 +128,1702095645456.0,,0.0033333333333333335 +129,1702095945457.0,14.015625,0.0033333333333333335 +130,1702096245456.0,,0.0033333333333333335 +131,1702096545457.0,,0.0033333333333333335 +132,1702096845457.0,,0.0033333333333333335 +133,1702097145456.0,,0.0033333333333333335 +134,1702097445456.0,,0.0033333333333333335 +135,1702097745456.0,,0.0033333333333333335 +136,1702098045457.9998,,0.0033333333333333335 +137,1702098345457.0,,0.0033333333333333335 +138,1702098645457.0,,0.0033333333333333335 +139,1702098945456.0,,0.0033333333333333335 +140,1702099245457.0,,0.0033333333333333335 +141,1702099545457.0,,0.0033333333333333335 +142,1702099845459.0,,0.0033333333333333335 +143,1702100145456.0,,0.0033333333333333335 +144,1702100445457.0,,0.0033333333333333335 +145,1702100745457.0,,0.0033333333333333335 +146,1702101045456.0,,0.0033333333333333335 +147,1702101345457.0,11.078125,0.0033333333333333335 +148,1702101645457.0,,0.0033333333333333335 +149,1702101945457.0,,0.0033333333333333335 +150,1702102245456.0,,0.0033333333333333335 +151,1702102545456.0,,0.0033333333333333335 +152,1702103145455.0,,0.0033333333333333335 +153,1702103445456.0,,0.0033333333333333335 +154,1702103532545.9998,,0.0033333333333333335 +155,1702103745456.0,,0.0033333333333333335 +156,1702104045456.0,,0.0033333333333333335 +157,1702104345457.0,,0.0033333333333333335 +158,1702104645457.9998,,0.0033333333333333335 +159,1702104945457.0,,0.0033333333333333335 +160,1702105245457.9998,,0.0033333333333333335 +161,1702105545459.0,,0.0033333333333333335 +162,1702105640425.9998,,0.0033333333333333335 +163,1702105845457.0,,0.0033333333333333335 +164,1702106145455.0,,0.0033333333333333335 +165,1702106445456.0,,0.0033333333333333335 +166,1702106745457.9998,,0.0033333333333333335 +167,1702107045456.0,,0.0033333333333333335 +168,1702107345456.0,,0.0033333333333333335 +169,1702107645456.0,,0.0033333333333333335 +170,1702107945457.9998,,0.0033333333333333335 +171,1702108245462.0002,,0.0033333333333333335 +172,1702108545463.0,,0.0033333333333333335 +173,1702108845465.9998,,0.0033333333333333335 +174,1702109145456.0,,0.0033333333333333335 +175,1702109445457.0,11.8515625,0.0033333333333333335 +176,1702109745457.0,11.7734375,0.0033333333333333335 +177,1702110045460.0,11.421875,0.0033333333333333335 +178,1702110345456.0,11.296875,0.0033333333333333335 +179,1702110645457.0,11.7578125,0.0033333333333333335 +180,1702110945457.0,,0.0033333333333333335 +181,1702111245457.0,,0.0033333333333333335 +182,1702111545457.0,12.34375,0.0033333333333333335 +183,1702111845457.0,12.90625,0.0033333333333333335 +184,1702112145457.0,12.90625,0.0033333333333333335 +185,1702112445457.0,12.15625,0.0033333333333333335 +186,1702112745456.0,,0.0033333333333333335 +187,1702113045460.0,,0.0033333333333333335 +188,1702113345927.0,,0.0033333333333333335 +189,1702113645928.0,,0.0033333333333333335 +190,1702113945928.0,12.1171875,0.0033333333333333335 +191,1702114245928.0,11.7109375,0.0033333333333333335 +192,1702114545928.0,11.8046875,0.0033333333333333335 +193,1702114845945.9998,11.5625,0.0033333333333333335 +194,1702115145929.0,11.8046875,0.0033333333333333335 +195,1702115445931.0,12.71875,0.0033333333333333335 +196,1702115745928.0,12.1640625,0.0033333333333333335 +197,1702116045927.0,,0.0033333333333333335 +198,1702116345929.9998,,0.0033333333333333335 +199,1702116645928.0,,0.0033333333333333335 +200,1702116945927.0,,0.0033333333333333335 +201,1702117245926.0002,,0.0033333333333333335 +202,1702117545931.0,12.078125,0.0033333333333333335 +203,1702117845929.0,12.0078125,0.0033333333333333335 +204,1702118145928.0,12.2265625,0.0033333333333333335 +205,1702118445929.9998,,0.0033333333333333335 +206,1702118745927.0,,0.0033333333333333335 +207,1702119045927.0,,0.0033333333333333335 +208,1702119345928.0,12.4140625,0.0033333333333333335 +209,1702119645928.0,12.5625,0.0033333333333333335 +210,1702119945928.0,12.21875,0.0033333333333333335 +211,1702120245928.0,11.6796875,0.0033333333333333335 +212,1702120545927.0,,0.0033333333333333335 +213,1702120845927.0,,0.0033333333333333335 +214,1702121445933.0,11.3359375,0.0033333333333333335 +215,1702121745929.0,11.3828125,0.0033333333333333335 +216,1702122345929.0,,0.0033333333333333335 +217,1702122645928.0,,0.0033333333333333335 +218,1702122945928.0,11.703125,0.0033333333333333335 +219,1702123245928.0,11.78125,0.0033333333333333335 +220,1702123845928.0,10.859375,0.0033333333333333335 +221,1702124145929.0,,0.0033333333333333335 +222,1702124445929.9998,11.2265625,0.0033333333333333335 +223,1702124745928.0,11.2890625,0.0033333333333333335 +224,1702125045929.0,10.9296875,0.0033333333333333335 +225,1702125345928.0,10.9140625,0.0033333333333333335 +226,1702125645928.0,10.7734375,0.0033333333333333335 +227,1702125945928.0,11.40625,0.0033333333333333335 +228,1702126245928.0,11.2421875,0.0033333333333333335 +229,1702126545929.9998,11.84375,0.0033333333333333335 +230,1702126845928.0,11.8203125,0.0033333333333333335 +231,1702127445928.0,11.5625,0.0033333333333333335 +232,1702127745929.0,11.8515625,0.0033333333333333335 +233,1702128045929.0,11.9765625,0.0033333333333333335 +234,1702128345931.0,11.890625,0.0033333333333333335 +235,1702128645928.0,11.6640625,0.0033333333333333335 +236,1702128945928.0,11.296875,0.0033333333333333335 +237,1702129245928.0,,0.0033333333333333335 +238,1702129545928.0,,0.0033333333333333335 +239,1702129845928.0,11.78125,0.0033333333333333335 +240,1702130145928.0,12.5390625,0.0033333333333333335 +241,1702130445928.0,11.4609375,0.0033333333333333335 +242,1702130745928.0,11.1796875,0.0033333333333333335 +243,1702131045928.0,11.2734375,0.0033333333333333335 +244,1702131345928.0,11.328125,0.0033333333333333335 +245,1702131645929.0,11.828125,0.0033333333333333335 +246,1702131945929.0,11.765625,0.0033333333333333335 +247,1702132245928.0,12.0703125,0.0033333333333333335 +248,1702132545928.0,11.625,0.0033333333333333335 +249,1702132845928.0,11.8359375,0.0033333333333333335 +250,1702133145928.0,11.421875,0.0033333333333333335 +251,1702133445928.0,,0.0033333333333333335 +252,1702133745928.0,11.296875,0.0033333333333333335 +253,1702134045928.0,11.1328125,0.0033333333333333335 +254,1702134346447.0,10.8046875,0.0033333333333333335 +255,1702134645928.0,10.65625,0.0033333333333333335 +256,1702134945928.0,11.21875,0.0033333333333333335 +257,1702135245928.0,11.7109375,0.0033333333333333335 +258,1702135545928.0,12.015625,0.0033333333333333335 +259,1702135845929.0,11.328125,0.0033333333333333335 +260,1702136145928.0,11.4609375,0.0033333333333333335 +261,1702136445928.0,12.0703125,0.0033333333333333335 +262,1702136745928.0,13.203125,0.0033333333333333335 +263,1702137045928.0,13.515625,0.0033333333333333335 +264,1702137345928.0,12.8125,0.0033333333333333335 +265,1702137645928.0,12.703125,0.0033333333333333335 +266,1702137945928.0,12.765625,0.0033333333333333335 +267,1702138245928.0,12.2421875,0.0033333333333333335 +268,1702138545929.0,11.859375,0.0033333333333333335 +269,1702138845931.0,11.7265625,0.0033333333333333335 +270,1702139145929.9998,11.875,0.0033333333333333335 +271,1702139445928.0,,0.0033333333333333335 +272,1702139745927.0,,0.0033333333333333335 +273,1702140045927.0,,0.0033333333333333335 +274,1702140345927.0,12.359375,0.0033333333333333335 +275,1702140645928.0,12.6015625,0.0033333333333333335 +276,1702140945929.9998,,0.0033333333333333335 +277,1702141245926.0002,,0.0033333333333333335 +278,1702141545927.0,,0.0033333333333333335 +279,1702141845929.9998,,0.0033333333333333335 +280,1702142145928.0,13.328125,0.0033333333333333335 +281,1702142445928.0,,0.0033333333333333335 +282,1702142745927.0,,0.0033333333333333335 +283,1702143045927.0,,0.0033333333333333335 +284,1702143345926.0002,,0.0033333333333333335 +285,1702143645928.0,,0.0033333333333333335 +286,1702144245926.0002,,0.0033333333333333335 +287,1702144397663.0,,0.0033333333333333335 +288,1702144545926.0002,,0.0033333333333333335 +289,1702144845928.0,14.1015625,0.0033333333333333335 +290,1702145145928.0,14.0234375,0.0033333333333333335 +291,1702145445927.0,14.609375,0.0033333333333333335 +292,1702145745927.0,,0.0033333333333333335 +293,1702146045927.0,,0.0033333333333333335 +294,1702146345927.0,,0.0033333333333333335 +295,1702146645927.0,,0.0033333333333333335 +296,1702146945927.0,,0.0033333333333333335 +297,1702147090479.0,,0.0033333333333333335 +298,1702147245927.0,,0.0033333333333333335 +299,1702147396054.0002,,0.0033333333333333335 +300,1702147545927.0,,0.0033333333333333335 +301,1702147845927.0,,0.0033333333333333335 +302,1702148145927.0,16.6875,0.0033333333333333335 +303,1702148445928.0,15.8203125,0.0033333333333333335 +304,1702148745928.0,15.328125,0.0033333333333333335 +305,1702149045926.0002,,0.0033333333333333335 +306,1702149645928.0,,0.0033333333333333335 +307,1702149945931.0,,0.0033333333333333335 +308,1702150245928.0,14.7265625,0.0033333333333333335 +309,1702150545929.0,14.4609375,0.0033333333333333335 +310,1702150845929.0,14.9140625,0.0033333333333333335 +311,1702151145928.0,15.328125,0.0033333333333333335 +312,1702151445928.0,15.1953125,0.0033333333333333335 +313,1702151745928.0,13.734375,0.0033333333333333335 +314,1702152045928.0,13.7421875,0.0033333333333333335 +315,1702152345928.0,14.140625,0.0033333333333333335 +316,1702152645928.0,14.046875,0.0033333333333333335 +317,1702152945927.0,,0.0033333333333333335 +318,1702153245931.0,14.15625,0.0033333333333333335 +319,1702153545927.0,,0.0033333333333333335 +320,1702153845927.0,,0.0033333333333333335 +321,1702154145928.0,14.0234375,0.0033333333333333335 +322,1702154445926.0002,,0.0033333333333333335 +323,1702154745927.0,,0.0033333333333333335 +324,1702155045928.0,14.3828125,0.0033333333333333335 +325,1702155345926.0002,,0.0033333333333333335 +326,1702155645928.0,,0.0033333333333333335 +327,1702155945928.0,19.46875,0.0033333333333333335 +328,1702156245928.0,18.09375,0.0033333333333333335 +329,1702156545928.0,17.3125,0.0033333333333333335 +330,1702156845928.0,,0.0033333333333333335 +331,1702157145929.0,,0.0033333333333333335 +332,1702157445928.0,13.46875,0.0033333333333333335 +333,1702157745929.0,13.640625,0.0033333333333333335 +334,1702158045928.0,12.6484375,0.0033333333333333335 +335,1702158345929.9998,12.640625,0.0033333333333333335 +336,1702158645927.0,13.296875,0.0033333333333333335 +337,1702158945928.0,13.609375,0.0033333333333333335 +338,1702159245929.0,13.40625,0.0033333333333333335 +339,1702159545928.0,,0.0033333333333333335 +340,1702159845928.0,,0.0033333333333333335 +341,1702160145928.0,13.28125,0.0033333333333333335 +342,1702160445928.0,14.125,0.0033333333333333335 +343,1702160745928.0,13.265625,0.0033333333333333335 +344,1702161045928.0,12.59375,0.0033333333333333335 +345,1702161345928.0,12.484375,0.0033333333333333335 +346,1702161645928.0,12.5546875,0.0033333333333333335 +347,1702161945928.0,13.265625,0.0033333333333333335 +348,1702162245929.0,13.34375,0.0033333333333333335 +349,1702162545929.0,13.53125,0.0033333333333333335 +350,1702162845927.0,,0.0033333333333333335 +351,1702163145929.0,12.6328125,0.0033333333333333335 +352,1702163445927.0,,0.0033333333333333335 +353,1702163745928.0,12.8203125,0.0033333333333333335 +354,1702164045928.0,13.15625,0.0033333333333333335 +355,1702164345928.0,13.140625,0.0033333333333333335 +356,1702164645928.0,13.109375,0.0033333333333333335 +357,1702164945928.0,13.265625,0.0033333333333333335 +358,1702165245931.0,15.0625,0.0033333333333333335 +359,1702165545927.0,16.765625,0.0033333333333333335 +360,1702165845929.0,16.734375,0.0033333333333333335 +361,1702166145929.0,16.265625,0.0033333333333333335 +362,1702166445929.9998,,0.0033333333333333335 +363,1702166745926.0002,,0.0033333333333333335 +364,1702167045927.0,,0.0033333333333333335 +365,1702167345927.0,,0.0033333333333333335 +366,1702167645927.0,,0.0033333333333333335 +367,1702167945926.0002,,0.0033333333333333335 +368,1702168245927.0,,0.0033333333333333335 +369,1702168545928.0,14.59375,0.0033333333333333335 +370,1702168845928.0,13.28125,0.0033333333333333335 +371,1702169145927.0,,0.0033333333333333335 +372,1702169445929.9998,,0.0033333333333333335 +373,1702169745926.0002,,0.0033333333333333335 +374,1702170045928.0,,0.0033333333333333335 +375,1702170345926.0002,,0.0033333333333333335 +376,1702170645927.0,,0.0033333333333333335 +377,1702170945926.0002,,0.0033333333333333335 +378,1702171245927.0,,0.0033333333333333335 +379,1702171545927.0,,0.0033333333333333335 +380,1702171845927.0,13.8515625,0.0033333333333333335 +381,1702172445927.0,,0.0033333333333333335 +382,1702172745927.0,,0.0033333333333333335 +383,1702173045927.0,,0.0033333333333333335 +384,1702173345931.0,,0.0033333333333333335 +385,1702173645927.0,,0.0033333333333333335 +386,1702173945928.0,14.3984375,0.0033333333333333335 +387,1702174245927.0,,0.0033333333333333335 +388,1702174545927.0,,0.0033333333333333335 +389,1702174845927.0,,0.0033333333333333335 +390,1702175145927.0,,0.0033333333333333335 +391,1702175445927.0,15.2109375,0.0033333333333333335 +392,1702175745927.0,,0.0033333333333333335 +393,1702176045928.0,15.4765625,0.0033333333333333335 +394,1702176345942.0002,13.71875,0.0033333333333333335 +395,1702176645927.0,,0.0033333333333333335 +396,1702177245928.0,14.4140625,0.0033333333333333335 +397,1702177545927.0,,0.0033333333333333335 +398,1702177845928.0,,0.0033333333333333335 +399,1702178145928.0,15.984375,0.0033333333333333335 +400,1702178445927.0,,0.0033333333333333335 +401,1702178745929.9998,16.046875,0.0033333333333333335 +402,1702179045927.0,,0.0033333333333333335 +403,1702179345927.0,,0.0033333333333333335 +404,1702179645926.0002,,0.0033333333333333335 +405,1702179945927.0,,0.0033333333333333335 +406,1702180245928.0,15.265625,0.0033333333333333335 +407,1702180545904.0,15.09375,0.0033333333333333335 +408,1702180845905.0,14.71875,0.0033333333333333335 +409,1702181145904.0,,0.0033333333333333335 +410,1702181745904.0,15.765625,0.0033333333333333335 +411,1702182045905.0,15.453125,0.0033333333333333335 +412,1702182345908.0,14.5390625,0.0033333333333333335 +413,1702182645964.0,14.3984375,0.0033333333333333335 +414,1702182945917.0,,0.0033333333333333335 +415,1702183245905.0,14.3515625,0.0033333333333333335 +416,1702183545904.0,,0.0033333333333333335 +417,1702183845905.0,14.8828125,0.0033333333333333335 +418,1702184145904.0,14.1015625,0.0033333333333333335 +419,1702184445904.0,14.0859375,0.0033333333333333335 +420,1702184745907.0,,0.0033333333333333335 +421,1702185045903.0,,0.0033333333333333335 +422,1702185345905.9998,14.3359375,0.0033333333333333335 +423,1702185646379.0,,0.0033333333333333335 +424,1702185945904.0,,0.0033333333333333335 +425,1702186245905.0,13.4609375,0.0033333333333333335 +426,1702186545903.0,,0.0033333333333333335 +427,1702186845905.0,,0.0033333333333333335 +428,1702187145905.0,13.9453125,0.0033333333333333335 +429,1702187445905.0,14.6875,0.0033333333333333335 +430,1702187745905.9998,15.90625,0.0033333333333333335 +431,1702188045905.0,15.0703125,0.0033333333333333335 +432,1702188345905.0,14.8203125,0.0033333333333333335 +433,1702188645904.0,15.9140625,0.0033333333333333335 +434,1702188945905.0,16.0,0.0033333333333333335 +435,1702189245905.9998,15.25,0.0033333333333333335 +436,1702189545905.9998,14.640625,0.0033333333333333335 +437,1702189845905.9998,14.4765625,0.0033333333333333335 +438,1702190145905.9998,15.8984375,0.0033333333333333335 +439,1702190445927.0,15.4921875,0.0033333333333333335 +440,1702190745905.0,15.140625,0.0033333333333333335 +441,1702191045905.0,15.0234375,0.0033333333333333335 +442,1702191345905.0,14.8125,0.0033333333333333335 +443,1702191645905.9998,14.328125,0.0033333333333333335 +444,1702191945905.0,12.8828125,0.0033333333333333335 +445,1702192246177.9998,12.0625,0.0033333333333333335 +446,1702192545905.0,11.7265625,0.0033333333333333335 +447,1702192845905.0,11.9140625,0.0033333333333333335 +448,1702193145905.0,11.71875,0.0033333333333333335 +449,1702193445905.0,11.703125,0.0033333333333333335 +450,1702193745905.0,12.09375,0.0033333333333333335 +451,1702194045905.0,12.03125,0.0033333333333333335 +452,1702194345905.0,12.03125,0.0033333333333333335 +453,1702194645905.0,12.1640625,0.0033333333333333335 +454,1702194945905.9998,12.265625,0.0033333333333333335 +455,1702195245904.0,12.1328125,0.0033333333333333335 +456,1702195545905.0,12.0,0.0033333333333333335 +457,1702195845905.9998,11.96875,0.0033333333333333335 +458,1702196145907.0,12.703125,0.0033333333333333335 +459,1702196445905.0,12.65625,0.0033333333333333335 +460,1702196745905.9998,12.1640625,0.0033333333333333335 +461,1702197045910.0002,11.859375,0.0033333333333333335 +462,1702197345905.0,12.0859375,0.0033333333333333335 +463,1702197645905.0,11.734375,0.0033333333333333335 +464,1702197945905.0,11.125,0.0033333333333333335 +465,1702198545905.0,10.3828125,0.0033333333333333335 +466,1702198845905.0,10.8515625,0.0033333333333333335 +467,1702199145905.0,11.21875,0.0033333333333333335 +468,1702199446508.0,12.125,0.0033333333333333335 +469,1702199745905.0,12.4453125,0.0033333333333333335 +470,1702200045905.0,12.234375,0.0033333333333333335 +471,1702200345905.0,12.3359375,0.0033333333333333335 +472,1702200645905.0,12.9140625,0.0033333333333333335 +473,1702200945904.0,13.078125,0.0033333333333333335 +474,1702201245905.0,12.3046875,0.0033333333333333335 +475,1702201545905.0,12.109375,0.0033333333333333335 +476,1702201845905.0,12.046875,0.0033333333333333335 +477,1702202145905.0,11.8984375,0.0033333333333333335 +478,1702202445905.0,12.4453125,0.0033333333333333335 +479,1702202745905.0,11.8984375,0.0033333333333333335 +480,1702203045905.0,11.265625,0.0033333333333333335 +481,1702203345905.0,11.3671875,0.0033333333333333335 +482,1702203645905.0,11.890625,0.0033333333333333335 +483,1702203945904.0,11.6875,0.0033333333333333335 +484,1702204245905.0,11.8515625,0.0033333333333333335 +485,1702204545905.0,11.03125,0.0033333333333333335 +486,1702204845905.0,10.7578125,0.0033333333333333335 +487,1702205145905.9998,11.453125,0.0033333333333333335 +488,1702205445905.0,11.546875,0.0033333333333333335 +489,1702205745905.0,11.7109375,0.0033333333333333335 +490,1702206045905.9998,11.96875,0.0033333333333333335 +491,1702206345905.9998,11.953125,0.0033333333333333335 +492,1702206645905.0,11.9296875,0.0033333333333333335 +493,1702206945905.0,12.09375,0.0033333333333333335 +494,1702207245907.0,11.2578125,0.0033333333333333335 +495,1702207545905.0,10.9921875,0.0033333333333333335 +496,1702207845905.9998,10.90625,0.0033333333333333335 +497,1702208145905.0,10.6015625,0.0033333333333333335 +498,1702208445905.0,11.90625,0.0033333333333333335 +499,1702208745905.9998,11.5078125,0.0033333333333333335 +500,1702209045905.0,11.53125,0.0033333333333333335 +501,1702209345905.9998,11.6796875,0.0033333333333333335 +502,1702209645905.0,11.796875,0.0033333333333333335 +503,1702209945905.0,11.453125,0.0033333333333333335 +504,1702210245905.9998,11.1171875,0.0033333333333333335 +505,1702210545905.0,10.9609375,0.0033333333333333335 +506,1702210845905.0,10.78125,0.0033333333333333335 +507,1702211145904.0,,0.0033333333333333335 +508,1702211445904.0,,0.0033333333333333335 +509,1702211745904.0,,0.0033333333333333335 +510,1702212045904.0,,0.0033333333333333335 +511,1702212345904.0,,0.0033333333333333335 +512,1702212645905.0,11.1328125,0.0033333333333333335 +513,1702212945905.0,11.4296875,0.0033333333333333335 +514,1702213245905.9998,11.359375,0.0033333333333333335 +515,1702213545905.0,,0.0033333333333333335 +516,1702213845905.0,11.34375,0.0033333333333333335 +517,1702214145905.0,11.671875,0.0033333333333333335 +518,1702214445927.0,11.9296875,0.0033333333333333335 +519,1702214745913.0,12.0546875,0.0033333333333333335 +520,1702215045904.0,11.9765625,0.0033333333333333335 +521,1702215345921.9998,12.6328125,0.0033333333333333335 +522,1702215645905.0,12.28125,0.0033333333333333335 +523,1702215945904.0,,0.0033333333333333335 +524,1702216245904.0,,0.0033333333333333335 +525,1702216545904.0,,0.0033333333333333335 +526,1702216845904.0,,0.0033333333333333335 +527,1702217145905.0,12.265625,0.0033333333333333335 +528,1702217445905.0,11.859375,0.0033333333333333335 +529,1702217745905.9998,11.7734375,0.0033333333333333335 +530,1702218045905.9998,12.15625,0.0033333333333333335 +531,1702218345904.0,12.3984375,0.0033333333333333335 +532,1702218645905.0,12.8515625,0.0033333333333333335 +533,1702218945908.0,12.171875,0.0033333333333333335 +534,1702219245905.0,11.7109375,0.0033333333333333335 +535,1702219545907.0,11.7578125,0.0033333333333333335 +536,1702219845905.0,11.6875,0.0033333333333333335 +537,1702220145904.0,11.9296875,0.0033333333333333335 +538,1702220445905.0,11.71875,0.0033333333333333335 +539,1702220745905.0,11.7265625,0.0033333333333333335 +540,1702221045904.0,12.0859375,0.0033333333333333335 +541,1702221645909.0,11.9921875,0.0033333333333333335 +542,1702221945905.9998,12.203125,0.0033333333333333335 +543,1702222245905.0,12.3046875,0.0033333333333333335 +544,1702222545904.0,,0.0033333333333333335 +545,1702222845905.0,11.8828125,0.0033333333333333335 +546,1702223145904.0,12.0,0.0033333333333333335 +547,1702223445904.0,,0.0033333333333333335 +548,1702223746372.0,,0.0033333333333333335 +549,1702224006900.0,,0.0033333333333333335 +550,1702224346144.0,,0.0033333333333333335 +551,1702224645879.0,,0.0033333333333333335 +552,1702224856079.0,,0.0033333333333333335 +553,1702224945903.0,,0.0033333333333333335 +554,1702225245905.9998,12.2734375,0.0033333333333333335 +555,1702225545905.9998,13.390625,0.0033333333333333335 +556,1702225845905.9998,13.2421875,0.0033333333333333335 +557,1702226145905.0,,0.0033333333333333335 +558,1702226445905.9998,,0.0033333333333333335 +559,1702226745905.0,,0.0033333333333333335 +560,1702227045905.0,,0.0033333333333333335 +561,1702227345904.0,,0.0033333333333333335 +562,1702227645905.0,,0.0033333333333333335 +563,1702227906913.9998,,0.0033333333333333335 +564,1702228056713.0,,0.0033333333333333335 +565,1702228245907.0,,0.0033333333333333335 +566,1702228545905.0,,0.0033333333333333335 +567,1702228754609.0,,0.0033333333333333335 +568,1702228845903.0,,0.0033333333333333335 +569,1702229145903.0,,0.0033333333333333335 +570,1702229445907.0,,0.0033333333333333335 +571,1702229745904.0,,0.0033333333333333335 +572,1702230045905.0,11.375,0.0033333333333333335 +573,1702230345907.0,,0.0033333333333333335 +574,1702230645905.0,,0.0033333333333333335 +575,1702230945903.0,,0.0033333333333333335 +576,1702231245904.0,,0.0033333333333333335 +577,1702231545905.0,12.5234375,0.0033333333333333335 +578,1702231845904.0,,0.0033333333333333335 +579,1702232145904.0,,0.0033333333333333335 +580,1702232445905.9998,,0.0033333333333333335 +581,1702232745903.0,,0.0033333333333333335 +582,1702233045904.0,,0.0033333333333333335 +583,1702233345904.0,,0.0033333333333333335 +584,1702233645905.0,,0.0033333333333333335 +585,1702233945904.0,,0.0033333333333333335 +586,1702234245905.0,,0.0033333333333333335 +587,1702234545908.0,,0.0033333333333333335 +588,1702234879093.0,,0.0033333333333333335 +589,1702235145904.0,,0.0033333333333333335 +590,1702235202975.0,,0.0033333333333333335 +591,1702235445904.0,,0.0033333333333333335 +592,1702235540113.9998,,0.0033333333333333335 +593,1702235745903.0,,0.0033333333333333335 +594,1702235834022.0002,,0.0033333333333333335 +595,1702236045903.0,,0.0033333333333333335 +596,1702236345905.0,,0.0033333333333333335 +597,1702236645904.0,,0.0033333333333333335 +598,1702236945904.0,,0.0033333333333333335 +599,1702237245905.9998,11.96875,0.0033333333333333335 +600,1702237545907.0,,0.0033333333333333335 +601,1702237845905.0,15.15625,0.0033333333333333335 +602,1702238145905.0,,0.0033333333333333335 +603,1702238445905.0,17.625,0.0033333333333333335 +604,1702238745905.0,16.78125,0.0033333333333333335 +605,1702239045904.0,,0.0033333333333333335 +606,1702239345905.0,15.640625,0.0033333333333333335 +607,1702239645904.0,16.15625,0.0033333333333333335 +608,1702239945904.0,15.8671875,0.0033333333333333335 +609,1702240245905.0,15.8984375,0.0033333333333333335 +610,1702240545904.0,15.4296875,0.0033333333333333335 +611,1702240845905.0,15.1015625,0.0033333333333333335 +612,1702241145905.9998,,0.0033333333333333335 +613,1702241445905.9998,16.1875,0.0033333333333333335 +614,1702241745905.0,15.5078125,0.0033333333333333335 +615,1702242045905.0,,0.0033333333333333335 +616,1702242345905.0,,0.0033333333333333335 +617,1702242645905.0,14.8359375,0.0033333333333333335 +618,1702242945904.0,,0.0033333333333333335 +619,1702243245904.0,,0.0033333333333333335 +620,1702243545904.0,,0.0033333333333333335 +621,1702243845905.0,,0.0033333333333333335 +622,1702244145905.9998,,0.0033333333333333335 +623,1702244445904.0,,0.0033333333333333335 +624,1702244745904.0,,0.0033333333333333335 +625,1702245045905.0,,0.0033333333333333335 +626,1702245345904.0,,0.0033333333333333335 +627,1702245645904.0,,0.0033333333333333335 +628,1702245731359.0,,0.0033333333333333335 +629,1702245945904.0,,0.0033333333333333335 +630,1702246245905.9998,14.9453125,0.0033333333333333335 +631,1702246545905.0,,0.0033333333333333335 +632,1702246845873.0,,0.0033333333333333335 +633,1702247145873.9998,,0.0033333333333333335 +634,1702247445875.0,,0.0033333333333333335 +635,1702247745873.9998,,0.0033333333333333335 +636,1702248045873.0,,0.0033333333333333335 +637,1702248645873.0,,0.0033333333333333335 +638,1702248945873.9998,,0.0033333333333333335 +639,1702249245873.9998,,0.0033333333333333335 +640,1702249545873.9998,,0.0033333333333333335 +641,1702249845873.9998,,0.0033333333333333335 +642,1702250145873.9998,,0.0033333333333333335 +643,1702250445873.0,,0.0033333333333333335 +644,1702250745875.0,,0.0033333333333333335 +645,1702251045873.9998,,0.0033333333333333335 +646,1702251345873.0,,0.0033333333333333335 +647,1702251645873.0,,0.0033333333333333335 +648,1702251945877.0,,0.0033333333333333335 +649,1702252245873.9998,,0.0033333333333333335 +650,1702252545873.0,,0.0033333333333333335 +651,1702252845873.0,,0.0033333333333333335 +652,1702253145873.9998,,0.0033333333333333335 +653,1702253445875.0,,0.0033333333333333335 +654,1702253745873.9998,,0.0033333333333333335 +655,1702254045873.9998,,0.0033333333333333335 +656,1702254345873.9998,,0.0033333333333333335 +657,1702254645873.9998,,0.0033333333333333335 +658,1702254945873.9998,,0.0033333333333333335 +659,1702255245876.0,,0.0033333333333333335 +660,1702255545873.9998,14.6171875,0.0033333333333333335 +661,1702255845873.9998,,0.0033333333333333335 +662,1702256145873.9998,16.765625,0.0033333333333333335 +663,1702256445873.9998,16.6875,0.0033333333333333335 +664,1702256745875.0,17.484375,0.0033333333333333335 +665,1702257045873.9998,17.59375,0.0033333333333333335 +666,1702257345873.0,,0.0033333333333333335 +667,1702257645875.0,16.03125,0.0033333333333333335 +668,1702257945873.9998,14.9453125,0.0033333333333333335 +669,1702258245873.9998,14.3984375,0.0033333333333333335 +670,1702258545873.9998,15.7578125,0.0033333333333333335 +671,1702258845873.0,16.125,0.0033333333333333335 +672,1702259145873.9998,16.0625,0.0033333333333333335 +673,1702259445875.0,16.21875,0.0033333333333333335 +674,1702259745875.0,16.671875,0.0033333333333333335 +675,1702260045873.0,,0.0033333333333333335 +676,1702260345875.0,15.703125,0.0033333333333333335 +677,1702260645877.0,15.953125,0.0033333333333333335 +678,1702260945873.0,15.75,0.0033333333333333335 +679,1702261245876.0,14.921875,0.0033333333333333335 +680,1702261545875.0,14.4453125,0.0033333333333333335 +681,1702261845876.0,15.1015625,0.0033333333333333335 +682,1702262145873.9998,14.421875,0.0033333333333333335 +683,1702262445873.9998,13.5859375,0.0033333333333333335 +684,1702262745873.9998,12.71875,0.0033333333333333335 +685,1702263045876.0,13.0234375,0.0033333333333333335 +686,1702263345873.9998,12.609375,0.0033333333333333335 +687,1702263645873.0,,0.0033333333333333335 +688,1702263945875.0,,0.0033333333333333335 +689,1702264245873.0,,0.0033333333333333335 +690,1702264545873.9998,,0.0033333333333333335 +691,1702264845873.0,,0.0033333333333333335 +692,1702265145873.9998,12.6328125,0.0033333333333333335 +693,1702265445877.0,11.625,0.0033333333333333335 +694,1702265745873.9998,,0.0033333333333333335 +695,1702266045873.9998,13.59375,0.0033333333333333335 +696,1702266345873.9998,14.765625,0.0033333333333333335 +697,1702266645875.0,14.5234375,0.0033333333333333335 +698,1702266945873.0,,0.0033333333333333335 +699,1702267245875.0,15.140625,0.0033333333333333335 +700,1702267845875.0,15.1484375,0.0033333333333333335 +701,1702268145878.0002,15.0625,0.0033333333333333335 +702,1702268445873.9998,14.4296875,0.0033333333333333335 +703,1702268745873.0,13.8359375,0.0033333333333333335 +704,1702269045873.0,,0.0033333333333333335 +705,1702269346107.0,14.375,0.0033333333333333335 +706,1702269645873.9998,14.5390625,0.0033333333333333335 +707,1702269945873.0,,0.0033333333333333335 +708,1702270245873.9998,15.4140625,0.0033333333333333335 +709,1702270545876.0,15.453125,0.0033333333333333335 +710,1702270845873.9998,15.9921875,0.0033333333333333335 +711,1702271145873.9998,16.171875,0.0033333333333333335 +712,1702271445873.0,16.109375,0.0033333333333333335 +713,1702271745873.9998,15.28125,0.0033333333333333335 +714,1702272045873.9998,,0.0033333333333333335 +715,1702272345873.9998,13.96875,0.0033333333333333335 +716,1702272645873.9998,13.1484375,0.0033333333333333335 +717,1702272945873.9998,12.6171875,0.0033333333333333335 +718,1702273245875.0,12.15625,0.0033333333333333335 +719,1702273545873.9998,12.34375,0.0033333333333333335 +720,1702273845877.0,12.6328125,0.0033333333333333335 +721,1702274145873.9998,11.9140625,0.0033333333333333335 +722,1702274445873.0,12.4765625,0.0033333333333333335 +723,1702274745873.9998,12.6015625,0.0033333333333333335 +724,1702275045873.9998,12.34375,0.0033333333333333335 +725,1702275345875.0,11.5859375,0.0033333333333333335 +726,1702275645873.9998,10.9140625,0.0033333333333333335 +727,1702275945873.9998,11.046875,0.0033333333333333335 +728,1702276245873.9998,10.90625,0.0033333333333333335 +729,1702276545873.9998,11.609375,0.0033333333333333335 +730,1702276845873.9998,12.2421875,0.0033333333333333335 +731,1702277145873.9998,11.84375,0.0033333333333333335 +732,1702277445873.9998,11.5625,0.0033333333333333335 +733,1702277745873.9998,11.5859375,0.0033333333333333335 +734,1702278045873.9998,11.84375,0.0033333333333333335 +735,1702278345873.9998,12.546875,0.0033333333333333335 +736,1702278645873.9998,12.3515625,0.0033333333333333335 +737,1702278945873.9998,12.1484375,0.0033333333333333335 +738,1702279245876.0,12.046875,0.0033333333333333335 +739,1702279545877.0,12.2265625,0.0033333333333333335 +740,1702279845873.9998,12.6640625,0.0033333333333333335 +741,1702280145873.9998,12.171875,0.0033333333333333335 +742,1702280446244.0,12.1640625,0.0033333333333333335 +743,1702280745873.9998,11.8046875,0.0033333333333333335 +744,1702281046040.0,11.6875,0.0033333333333333335 +745,1702281345877.0,12.0390625,0.0033333333333333335 +746,1702281645873.9998,12.078125,0.0033333333333333335 +747,1702281945875.0,11.765625,0.0033333333333333335 +748,1702282245873.9998,12.1171875,0.0033333333333333335 +749,1702282545877.0,12.234375,0.0033333333333333335 +750,1702282845873.0,,0.0033333333333333335 +751,1702283145873.9998,,0.0033333333333333335 +752,1702283445873.9998,12.1875,0.0033333333333333335 +753,1702283745876.0,11.875,0.0033333333333333335 +754,1702284045873.9998,11.703125,0.0033333333333333335 +755,1702284345873.9998,11.9140625,0.0033333333333333335 +756,1702284645873.9998,11.8515625,0.0033333333333333335 +757,1702284945878.0002,11.796875,0.0033333333333333335 +758,1702285245873.9998,11.65625,0.0033333333333333335 +759,1702285545875.0,11.9453125,0.0033333333333333335 +760,1702285845876.0,11.9609375,0.0033333333333333335 +761,1702286145873.9998,12.015625,0.0033333333333333335 +762,1702286445875.0,12.203125,0.0033333333333333335 +763,1702286745873.0,12.09375,0.0033333333333333335 +764,1702287045873.9998,11.484375,0.0033333333333333335 +765,1702287345897.0,11.78125,0.0033333333333333335 +766,1702287645873.0,11.609375,0.0033333333333333335 +767,1702287945878.0002,10.8515625,0.0033333333333333335 +768,1702288245877.0,10.796875,0.0033333333333333335 +769,1702288545873.9998,11.0390625,0.0033333333333333335 +770,1702288845873.0,11.8046875,0.0033333333333333335 +771,1702289145873.9998,11.4375,0.0033333333333333335 +772,1702289445873.9998,10.9765625,0.0033333333333333335 +773,1702289745873.9998,11.0625,0.0033333333333333335 +774,1702290045873.9998,10.7890625,0.0033333333333333335 +775,1702290345873.9998,10.515625,0.0033333333333333335 +776,1702290645875.0,11.4140625,0.0033333333333333335 +777,1702290945873.9998,11.4609375,0.0033333333333333335 +778,1702291245875.0,11.65625,0.0033333333333333335 +779,1702291545873.9998,11.5,0.0033333333333333335 +780,1702291845873.9998,11.1484375,0.0033333333333333335 +781,1702292145897.9998,10.78125,0.0033333333333333335 +782,1702292445873.9998,10.8046875,0.0033333333333333335 +783,1702292745873.9998,,0.0033333333333333335 +784,1702293045873.9998,,0.0033333333333333335 +785,1702293345873.9998,,0.0033333333333333335 +786,1702293645873.9998,11.15625,0.0033333333333333335 +787,1702293945873.9998,11.578125,0.0033333333333333335 +788,1702294245876.0,,0.0033333333333333335 +789,1702295145873.0,,0.0033333333333333335 +790,1702295445873.9998,11.46875,0.0033333333333333335 +791,1702295746071.0,11.453125,0.0033333333333333335 +792,1702296045873.9998,11.0,0.0033333333333333335 +793,1702296345873.9998,11.234375,0.0033333333333333335 +794,1702296645873.9998,11.359375,0.0033333333333333335 +795,1702296945877.0,11.3671875,0.0033333333333333335 +796,1702297245873.9998,11.1875,0.0033333333333333335 +797,1702297545875.0,11.5390625,0.0033333333333333335 +798,1702297845873.9998,,0.0033333333333333335 +799,1702298145875.0,11.3359375,0.0033333333333333335 +800,1702298445873.9998,10.9140625,0.0033333333333333335 +801,1702298745875.0,11.265625,0.0033333333333333335 +802,1702299045875.0,11.3671875,0.0033333333333333335 +803,1702299345875.0,11.125,0.0033333333333333335 +804,1702299645873.0,11.203125,0.0033333333333333335 +805,1702299945873.9998,10.9453125,0.0033333333333333335 +806,1702300245873.0,,0.0033333333333333335 +807,1702300545873.0,,0.0033333333333333335 +808,1702300845873.9998,11.3125,0.0033333333333333335 +809,1702301145873.0,,0.0033333333333333335 +810,1702301445873.9998,,0.0033333333333333335 +811,1702301745873.0,,0.0033333333333333335 +812,1702302045872.0,,0.0033333333333333335 +813,1702302345873.0,,0.0033333333333333335 +814,1702302645873.0,,0.0033333333333333335 +815,1702302945873.0,,0.0033333333333333335 +816,1702303245873.9998,,0.0033333333333333335 +817,1702303545873.9998,,0.0033333333333333335 +818,1702303845873.0,,0.0033333333333333335 +819,1702304445873.9998,,0.0033333333333333335 +820,1702304745873.9998,11.3125,0.0033333333333333335 +821,1702305045873.0,,0.0033333333333333335 +822,1702305345875.0,,0.0033333333333333335 +823,1702305645876.0,,0.0033333333333333335 +824,1702305945873.9998,,0.0033333333333333335 +825,1702306245873.0,,0.0033333333333333335 +826,1702306545873.0,,0.0033333333333333335 +827,1702306845873.0,,0.0033333333333333335 +828,1702307145875.0,,0.0033333333333333335 +829,1702307445873.0,,0.0033333333333333335 +830,1702307745872.0,,0.0033333333333333335 +831,1702308045873.9998,10.6171875,0.0033333333333333335 +832,1702308345875.0,10.453125,0.0033333333333333335 +833,1702308645873.9998,10.96875,0.0033333333333333335 +834,1702308945873.0,,0.0033333333333333335 +835,1702309245873.9998,,0.0033333333333333335 +836,1702309545875.0,,0.0033333333333333335 +837,1702309845873.0,,0.0033333333333333335 +838,1702310145873.9998,,0.0033333333333333335 +839,1702310445873.9998,,0.0033333333333333335 +840,1702310745873.0,,0.0033333333333333335 +841,1702311045885.0,13.890625,0.0033333333333333335 +842,1702311345873.9998,14.3515625,0.0033333333333333335 +843,1702311645873.0,,0.0033333333333333335 +844,1702311945873.0,15.40625,0.0033333333333333335 +845,1702312245873.9998,,0.0033333333333333335 +846,1702312545873.9998,15.7265625,0.0033333333333333335 +847,1702312845873.0,,0.0033333333333333335 +848,1702313145873.9998,16.015625,0.0033333333333333335 +849,1702313445873.0,14.890625,0.0033333333333333335 +850,1702313745873.0,14.4765625,0.0033333333333333335 +851,1702314045873.9998,14.7265625,0.0033333333333333335 +852,1702314645873.0,,0.0033333333333333335 +853,1702314945885.0,,0.0033333333333333335 +854,1702315245885.0,,0.0033333333333333335 +855,1702315545885.0,,0.0033333333333333335 +856,1702315845886.0002,14.625,0.0033333333333333335 +857,1702316145887.0,14.875,0.0033333333333333335 +858,1702316445885.0,,0.0033333333333333335 +859,1702316745888.0,,0.0033333333333333335 +860,1702317045885.0,,0.0033333333333333335 +861,1702317345886.0002,14.1015625,0.0033333333333333335 +862,1702317645885.0,,0.0033333333333333335 +863,1702317945886.0002,14.3125,0.0033333333333333335 +864,1702318245885.0,14.4296875,0.0033333333333333335 +865,1702318545885.0,,0.0033333333333333335 +866,1702318845891.0,,0.0033333333333333335 +867,1702319145885.0,,0.0033333333333333335 +868,1702319445885.0,14.2109375,0.0033333333333333335 +869,1702319745886.0002,14.2734375,0.0033333333333333335 +870,1702320045885.0,,0.0033333333333333335 +871,1702320345885.0,,0.0033333333333333335 +872,1702320645885.0,,0.0033333333333333335 +873,1702320945885.0,14.609375,0.0033333333333333335 +874,1702321245884.0,,0.0033333333333333335 +875,1702321545886.0002,14.6328125,0.0033333333333333335 +876,1702321845885.0,,0.0033333333333333335 +877,1702322145886.0002,14.171875,0.0033333333333333335 +878,1702322445886.0002,13.6484375,0.0033333333333333335 +879,1702322745887.0,13.6484375,0.0033333333333333335 +880,1702323045886.0002,13.90625,0.0033333333333333335 +881,1702323345886.0002,14.171875,0.0033333333333333335 +882,1702323645886.0002,13.9609375,0.0033333333333333335 +883,1702323945885.0,,0.0033333333333333335 +884,1702324245886.0002,14.046875,0.0033333333333333335 +885,1702324545886.0002,,0.0033333333333333335 +886,1702325145885.0,15.4296875,0.0033333333333333335 +887,1702325445886.0002,15.921875,0.0033333333333333335 +888,1702325745885.0,,0.0033333333333333335 +889,1702326045885.0,,0.0033333333333333335 +890,1702326345885.0,,0.0033333333333333335 +891,1702326645887.0,16.03125,0.0033333333333333335 +892,1702326945886.0002,14.9296875,0.0033333333333333335 +893,1702327245886.0002,14.4765625,0.0033333333333333335 +894,1702327545886.0002,14.5546875,0.0033333333333333335 +895,1702327845887.0,,0.0033333333333333335 +896,1702328145887.0,13.4140625,0.0033333333333333335 +897,1702328445888.0,,0.0033333333333333335 +898,1702328745886.0002,13.7734375,0.0033333333333333335 +899,1702329045885.0,14.28125,0.0033333333333333335 +900,1702329345885.0,13.890625,0.0033333333333333335 +901,1702329645885.0,,0.0033333333333333335 +902,1702329945886.0002,14.1015625,0.0033333333333333335 +903,1702330245885.0,,0.0033333333333333335 +904,1702330545885.0,,0.0033333333333333335 +905,1702330950851.0,,0.0033333333333333335 +906,1702331145884.0,,0.0033333333333333335 +907,1702331445884.0,,0.0033333333333333335 +908,1702331745884.0,,0.0033333333333333335 +909,1702332045885.0,,0.0033333333333333335 +910,1702332345884.0,,0.0033333333333333335 +911,1702332645884.0,,0.0033333333333333335 +912,1702332945886.0002,13.0703125,0.0033333333333333335 +913,1702333245886.0002,14.4921875,0.0033333333333333335 +914,1702333545886.0002,14.65625,0.0033333333333333335 +915,1702333845888.0,14.9453125,0.0033333333333333335 +916,1702334145887.0,15.46875,0.0033333333333333335 +917,1702334445887.0,15.15625,0.0033333333333333335 +918,1702334745886.0002,15.28125,0.0033333333333333335 +919,1702335045886.0002,14.8125,0.0033333333333333335 +920,1702335345886.0002,14.3671875,0.0033333333333333335 +921,1702335645886.0002,14.0390625,0.0033333333333333335 +922,1702335945887.0,13.9609375,0.0033333333333333335 +923,1702336245885.0,,0.0033333333333333335 +924,1702336545886.0002,14.5234375,0.0033333333333333335 +925,1702336845886.0002,14.09375,0.0033333333333333335 +926,1702337145885.0,,0.0033333333333333335 +927,1702337445885.0,,0.0033333333333333335 +928,1702337745907.0,13.7578125,0.0033333333333333335 +929,1702338045886.0002,14.328125,0.0033333333333333335 +930,1702338345887.0,,0.0033333333333333335 +931,1702338645886.0002,14.984375,0.0033333333333333335 +932,1702338945888.0,14.828125,0.0033333333333333335 +933,1702339245885.0,,0.0033333333333333335 +934,1702339545886.0002,15.0234375,0.0033333333333333335 +935,1702339845884.0,,0.0033333333333333335 +936,1702340145885.0,14.1484375,0.0033333333333333335 +937,1702340445884.0,,0.0033333333333333335 +938,1702340745886.0002,13.78125,0.0033333333333333335 +939,1702341045889.0,,0.0033333333333333335 +940,1702341345885.0,,0.0033333333333333335 +941,1702341645885.0,,0.0033333333333333335 +942,1702341945884.0,,0.0033333333333333335 +943,1702342245885.0,,0.0033333333333333335 +944,1702342845885.0,,0.0033333333333333335 +945,1702343145885.0,,0.0033333333333333335 +946,1702343445885.0,,0.0033333333333333335 +947,1702343745884.0,,0.0033333333333333335 +948,1702344045885.0,,0.0033333333333333335 +949,1702344345886.0002,,0.0033333333333333335 +950,1702344645886.0002,,0.0033333333333333335 +951,1702344945884.0,,0.0033333333333333335 +952,1702345245885.0,,0.0033333333333333335 +953,1702345545886.0002,,0.0033333333333333335 +954,1702345845885.0,,0.0033333333333333335 +955,1702346145885.0,,0.0033333333333333335 +956,1702346445886.0002,,0.0033333333333333335 +957,1702346745884.0,,0.0033333333333333335 +958,1702347045885.0,,0.0033333333333333335 +959,1702347345885.0,,0.0033333333333333335 +960,1702347645886.0002,,0.0033333333333333335 +961,1702347945885.0,,0.0033333333333333335 +962,1702348245886.0002,,0.0033333333333333335 +963,1702348545887.0,12.828125,0.0033333333333333335 +964,1702348845885.0,12.046875,0.0033333333333333335 +965,1702349145887.0,,0.0033333333333333335 +966,1702349445885.0,11.90625,0.0033333333333333335 +967,1702349745885.0,,0.0033333333333333335 +968,1702350045886.0002,12.59375,0.0033333333333333335 +969,1702350345886.0002,13.6328125,0.0033333333333333335 +970,1702350645887.0,14.890625,0.0033333333333333335 +971,1702350946001.0,15.0546875,0.0033333333333333335 +972,1702351245885.0,15.2109375,0.0033333333333333335 +973,1702351545886.0002,16.0625,0.0033333333333333335 +974,1702351845887.0,15.453125,0.0033333333333333335 +975,1702352145888.0,13.796875,0.0033333333333333335 +976,1702352445887.0,13.34375,0.0033333333333333335 +977,1702352745885.0,,0.0033333333333333335 +978,1702353045886.0002,,0.0033333333333333335 +979,1702353345889.0,13.671875,0.0033333333333333335 +980,1702353645886.0002,13.859375,0.0033333333333333335 +981,1702353945886.0002,13.1484375,0.0033333333333333335 +982,1702354245901.0,12.859375,0.0033333333333333335 +983,1702354545889.9998,12.1328125,0.0033333333333333335 +984,1702354845886.0002,12.0703125,0.0033333333333333335 +985,1702355145887.0,12.3984375,0.0033333333333333335 +986,1702355445887.0,12.53125,0.0033333333333333335 +987,1702355745887.0,12.2890625,0.0033333333333333335 +988,1702356045886.0002,12.2734375,0.0033333333333333335 +989,1702356298673.9998,12.09375,0.0033333333333333335 +990,1702356345887.0,11.578125,0.0033333333333333335 +991,1702356645887.0,11.453125,0.0033333333333333335 +992,1702356945886.0002,11.7421875,0.0033333333333333335 +993,1702357245886.0002,11.953125,0.0033333333333333335 +994,1702357545885.0,,0.0033333333333333335 +995,1702357845886.0002,11.7734375,0.0033333333333333335 +996,1702358145888.0,,0.0033333333333333335 +997,1702358445885.0,,0.0033333333333333335 +998,1702358745886.0002,,0.0033333333333333335 +999,1702359045885.0,12.40625,0.0033333333333333335 +1000,1702359345889.0,12.5,0.0033333333333333335 +1001,1702359645886.0002,12.2578125,0.0033333333333333335 +1002,1702359945887.0,12.015625,0.0033333333333333335 +1003,1702360245886.0002,12.234375,0.0033333333333333335 +1004,1702360545886.0002,12.328125,0.0033333333333333335 +1005,1702360845886.0002,12.5390625,0.0033333333333333335 +1006,1702361145929.0,12.2578125,0.0033333333333333335 +1007,1702378355613.0,,0.0033333333333333335 +1008,1702378545897.9998,,0.0033333333333333335 +1009,1702378845885.0,,0.0033333333333333335 +1010,1702378865661.0,,0.0033333333333333335 +1011,1702384166273.0,,0.0033333333333333335 +1012,1702384178575.0,,0.0033333333333333335 +1013,1702384229830.0002,,0.0033333333333333335 +1014,1702384545830.0002,,0.0033333333333333335 +1015,1702384845831.0,11.71875,0.0033333333333333335 +1016,1702385145831.0,12.265625,0.0033333333333333335 +1017,1702385445831.0,12.421875,0.0033333333333333335 +1018,1702385745854.0002,11.90625,0.0033333333333333335 +1019,1702386045831.0,11.8828125,0.0033333333333333335 +1020,1702386345831.0,11.515625,0.0033333333333333335 +1021,1702386645831.0,11.46875,0.0033333333333333335 +1022,1702386945829.0,,0.0033333333333333335 +1023,1702387245830.0002,,0.0033333333333333335 +1024,1702387845829.0,,0.0033333333333333335 +1025,1702388145829.0,,0.0033333333333333335 +1026,1702388445829.0,,0.0033333333333333335 +1027,1702388745831.0,,0.0033333333333333335 +1028,1702389045830.0002,,0.0033333333333333335 +1029,1702389345830.0002,,0.0033333333333333335 diff --git a/test/completeness/data/Wear Indicator.csv b/test/completeness/data/Wear Indicator.csv new file mode 100644 index 00000000..bdca7304 --- /dev/null +++ b/test/completeness/data/Wear Indicator.csv @@ -0,0 +1,5537 @@ +,Time Unix (ms),Wear Indicator,Sampling Frequency (Hz) +0,1702057245456.0,1.0,0.016666666666666666 +1,1702057305456.0,1.0,0.016666666666666666 +2,1702057365456.0,1.0,0.016666666666666666 +3,1702057425456.0,1.0,0.016666666666666666 +4,1702057485456.0,1.0,0.016666666666666666 +5,1702057545456.0,1.0,0.016666666666666666 +6,1702057605456.0,1.0,0.016666666666666666 +7,1702057665456.0,1.0,0.016666666666666666 +8,1702057725456.0,1.0,0.016666666666666666 +9,1702057785456.0,1.0,0.016666666666666666 +10,1702057845456.0,1.0,0.016666666666666666 +11,1702057905456.0,1.0,0.016666666666666666 +12,1702057965456.0,1.0,0.016666666666666666 +13,1702058025456.0,1.0,0.016666666666666666 +14,1702058085456.0,1.0,0.016666666666666666 +15,1702058145456.0,1.0,0.016666666666666666 +16,1702058205456.0,1.0,0.016666666666666666 +17,1702058265456.0,1.0,0.016666666666666666 +18,1702058325456.0,1.0,0.016666666666666666 +19,1702058385456.0,1.0,0.016666666666666666 +20,1702058445456.0,1.0,0.016666666666666666 +21,1702058505456.0,1.0,0.016666666666666666 +22,1702058565456.0,1.0,0.016666666666666666 +23,1702058625456.0,1.0,0.016666666666666666 +24,1702058685456.0,1.0,0.016666666666666666 +25,1702058745456.0,1.0,0.016666666666666666 +26,1702058805456.0,1.0,0.016666666666666666 +27,1702058865456.0,1.0,0.016666666666666666 +28,1702058925456.0,1.0,0.016666666666666666 +29,1702058985456.0,1.0,0.016666666666666666 +30,1702059045456.0,1.0,0.016666666666666666 +31,1702059105456.0,1.0,0.016666666666666666 +32,1702059165456.0,1.0,0.016666666666666666 +33,1702059225456.0,1.0,0.016666666666666666 +34,1702059285456.0,1.0,0.016666666666666666 +35,1702059345456.0,1.0,0.016666666666666666 +36,1702059405456.0,1.0,0.016666666666666666 +37,1702059465456.0,1.0,0.016666666666666666 +38,1702059525456.0,1.0,0.016666666666666666 +39,1702059585456.0,1.0,0.016666666666666666 +40,1702059645456.0,1.0,0.016666666666666666 +41,1702059705456.0,1.0,0.016666666666666666 +42,1702059765456.0,1.0,0.016666666666666666 +43,1702059825456.0,1.0,0.016666666666666666 +44,1702059885456.0,1.0,0.016666666666666666 +45,1702059945456.0,1.0,0.016666666666666666 +46,1702060005456.0,1.0,0.016666666666666666 +47,1702060065456.0,1.0,0.016666666666666666 +48,1702060125456.0,1.0,0.016666666666666666 +49,1702060185456.0,1.0,0.016666666666666666 +50,1702060245456.0,1.0,0.016666666666666666 +51,1702060305456.0,1.0,0.016666666666666666 +52,1702060365456.0,1.0,0.016666666666666666 +53,1702060425456.0,1.0,0.016666666666666666 +54,1702060485456.0,1.0,0.016666666666666666 +55,1702060545456.0,1.0,0.016666666666666666 +56,1702060605456.0,1.0,0.016666666666666666 +57,1702060665456.0,1.0,0.016666666666666666 +58,1702060725456.0,1.0,0.016666666666666666 +59,1702060785456.0,1.0,0.016666666666666666 +60,1702060845456.0,1.0,0.016666666666666666 +61,1702060905456.0,1.0,0.016666666666666666 +62,1702060965456.0,1.0,0.016666666666666666 +63,1702061025456.0,1.0,0.016666666666666666 +64,1702061085456.0,1.0,0.016666666666666666 +65,1702061145456.0,1.0,0.016666666666666666 +66,1702061205456.0,1.0,0.016666666666666666 +67,1702061265456.0,1.0,0.016666666666666666 +68,1702061325456.0,1.0,0.016666666666666666 +69,1702061385456.0,1.0,0.016666666666666666 +70,1702061445456.0,1.0,0.016666666666666666 +71,1702061505456.0,1.0,0.016666666666666666 +72,1702061565456.0,1.0,0.016666666666666666 +73,1702061625456.0,1.0,0.016666666666666666 +74,1702061685456.0,1.0,0.016666666666666666 +75,1702061745456.0,1.0,0.016666666666666666 +76,1702061805456.0,1.0,0.016666666666666666 +77,1702061865456.0,1.0,0.016666666666666666 +78,1702061925456.0,1.0,0.016666666666666666 +79,1702061985456.0,1.0,0.016666666666666666 +80,1702062045456.0,1.0,0.016666666666666666 +81,1702062105456.0,1.0,0.016666666666666666 +82,1702062165456.0,1.0,0.016666666666666666 +83,1702062225456.0,1.0,0.016666666666666666 +84,1702062285456.0,1.0,0.016666666666666666 +85,1702062345456.0,1.0,0.016666666666666666 +86,1702062405456.0,1.0,0.016666666666666666 +87,1702062465456.0,1.0,0.016666666666666666 +88,1702062525456.0,1.0,0.016666666666666666 +89,1702062585456.0,1.0,0.016666666666666666 +90,1702062645456.0,1.0,0.016666666666666666 +91,1702062705456.0,1.0,0.016666666666666666 +92,1702062765456.0,1.0,0.016666666666666666 +93,1702062825456.0,1.0,0.016666666666666666 +94,1702062885456.0,1.0,0.016666666666666666 +95,1702062945456.0,1.0,0.016666666666666666 +96,1702063005456.0,1.0,0.016666666666666666 +97,1702063065456.0,1.0,0.016666666666666666 +98,1702063125456.0,1.0,0.016666666666666666 +99,1702063185456.0,1.0,0.016666666666666666 +100,1702063245456.0,1.0,0.016666666666666666 +101,1702063305456.0,1.0,0.016666666666666666 +102,1702063365456.0,1.0,0.016666666666666666 +103,1702063425456.0,1.0,0.016666666666666666 +104,1702063485456.0,1.0,0.016666666666666666 +105,1702063545456.0,1.0,0.016666666666666666 +106,1702063605456.0,1.0,0.016666666666666666 +107,1702063665456.0,1.0,0.016666666666666666 +108,1702063725456.0,1.0,0.016666666666666666 +109,1702063785456.0,1.0,0.016666666666666666 +110,1702063845456.0,1.0,0.016666666666666666 +111,1702063905456.0,1.0,0.016666666666666666 +112,1702063965456.0,1.0,0.016666666666666666 +113,1702064025456.0,1.0,0.016666666666666666 +114,1702064085456.0,1.0,0.016666666666666666 +115,1702064145456.0,1.0,0.016666666666666666 +116,1702064205456.0,1.0,0.016666666666666666 +117,1702064265456.0,1.0,0.016666666666666666 +118,1702064325456.0,1.0,0.016666666666666666 +119,1702064385456.0,1.0,0.016666666666666666 +120,1702064445456.0,1.0,0.016666666666666666 +121,1702064505456.0,1.0,0.016666666666666666 +122,1702064565456.0,1.0,0.016666666666666666 +123,1702064625456.0,1.0,0.016666666666666666 +124,1702064685456.0,1.0,0.016666666666666666 +125,1702064745456.0,1.0,0.016666666666666666 +126,1702064805456.0,1.0,0.016666666666666666 +127,1702064865456.0,1.0,0.016666666666666666 +128,1702064925456.0,1.0,0.016666666666666666 +129,1702064985456.0,1.0,0.016666666666666666 +130,1702065045456.0,1.0,0.016666666666666666 +131,1702065105456.0,1.0,0.016666666666666666 +132,1702065165456.0,1.0,0.016666666666666666 +133,1702065225456.0,1.0,0.016666666666666666 +134,1702065285456.0,1.0,0.016666666666666666 +135,1702065345456.0,1.0,0.016666666666666666 +136,1702065405456.0,1.0,0.016666666666666666 +137,1702065465456.0,1.0,0.016666666666666666 +138,1702065525456.0,1.0,0.016666666666666666 +139,1702065585456.0,1.0,0.016666666666666666 +140,1702065645456.0,1.0,0.016666666666666666 +141,1702065705456.0,1.0,0.016666666666666666 +142,1702065765456.0,1.0,0.016666666666666666 +143,1702065825456.0,1.0,0.016666666666666666 +144,1702065885456.0,1.0,0.016666666666666666 +145,1702065945456.0,1.0,0.016666666666666666 +146,1702066005456.0,1.0,0.016666666666666666 +147,1702066065456.0,1.0,0.016666666666666666 +148,1702066125456.0,1.0,0.016666666666666666 +149,1702066185456.0,1.0,0.016666666666666666 +150,1702066245456.0,1.0,0.016666666666666666 +151,1702066305456.0,1.0,0.016666666666666666 +152,1702066365456.0,1.0,0.016666666666666666 +153,1702066425456.0,1.0,0.016666666666666666 +154,1702066485456.0,1.0,0.016666666666666666 +155,1702066545456.0,1.0,0.016666666666666666 +156,1702066605456.0,1.0,0.016666666666666666 +157,1702066665456.0,1.0,0.016666666666666666 +158,1702066725456.0,1.0,0.016666666666666666 +159,1702066785456.0,1.0,0.016666666666666666 +160,1702066845456.0,1.0,0.016666666666666666 +161,1702066905456.0,1.0,0.016666666666666666 +162,1702066965456.0,1.0,0.016666666666666666 +163,1702067025456.0,1.0,0.016666666666666666 +164,1702067085456.0,1.0,0.016666666666666666 +165,1702067145456.0,1.0,0.016666666666666666 +166,1702067205456.0,1.0,0.016666666666666666 +167,1702067265456.0,1.0,0.016666666666666666 +168,1702067325456.0,1.0,0.016666666666666666 +169,1702067385456.0,1.0,0.016666666666666666 +170,1702067445456.0,1.0,0.016666666666666666 +171,1702067505456.0,1.0,0.016666666666666666 +172,1702067565456.0,1.0,0.016666666666666666 +173,1702067625456.0,1.0,0.016666666666666666 +174,1702067685456.0,1.0,0.016666666666666666 +175,1702067745456.0,1.0,0.016666666666666666 +176,1702067805456.0,1.0,0.016666666666666666 +177,1702067865456.0,1.0,0.016666666666666666 +178,1702067925456.0,1.0,0.016666666666666666 +179,1702067985456.0,1.0,0.016666666666666666 +180,1702068045456.0,1.0,0.016666666666666666 +181,1702068105456.0,1.0,0.016666666666666666 +182,1702068165456.0,1.0,0.016666666666666666 +183,1702068225456.0,1.0,0.016666666666666666 +184,1702068285456.0,1.0,0.016666666666666666 +185,1702068345456.0,1.0,0.016666666666666666 +186,1702068405456.0,1.0,0.016666666666666666 +187,1702068465456.0,1.0,0.016666666666666666 +188,1702068525456.0,1.0,0.016666666666666666 +189,1702068585456.0,1.0,0.016666666666666666 +190,1702068645456.0,1.0,0.016666666666666666 +191,1702068705456.0,1.0,0.016666666666666666 +192,1702068765456.0,1.0,0.016666666666666666 +193,1702068825456.0,1.0,0.016666666666666666 +194,1702068885456.0,1.0,0.016666666666666666 +195,1702068945456.0,1.0,0.016666666666666666 +196,1702069005456.0,1.0,0.016666666666666666 +197,1702069065456.0,1.0,0.016666666666666666 +198,1702069125456.0,1.0,0.016666666666666666 +199,1702069185456.0,1.0,0.016666666666666666 +200,1702069245456.0,1.0,0.016666666666666666 +201,1702069305456.0,1.0,0.016666666666666666 +202,1702069365456.0,1.0,0.016666666666666666 +203,1702069425456.0,1.0,0.016666666666666666 +204,1702069485456.0,1.0,0.016666666666666666 +205,1702069545456.0,1.0,0.016666666666666666 +206,1702069605456.0,1.0,0.016666666666666666 +207,1702069665456.0,1.0,0.016666666666666666 +208,1702069725456.0,1.0,0.016666666666666666 +209,1702069785456.0,1.0,0.016666666666666666 +210,1702069845456.0,1.0,0.016666666666666666 +211,1702069905456.0,1.0,0.016666666666666666 +212,1702069965456.0,1.0,0.016666666666666666 +213,1702070025456.0,1.0,0.016666666666666666 +214,1702070085456.0,1.0,0.016666666666666666 +215,1702070145456.0,1.0,0.016666666666666666 +216,1702070205456.0,1.0,0.016666666666666666 +217,1702070265456.0,1.0,0.016666666666666666 +218,1702070325456.0,1.0,0.016666666666666666 +219,1702070385456.0,1.0,0.016666666666666666 +220,1702070445456.0,1.0,0.016666666666666666 +221,1702070505456.0,1.0,0.016666666666666666 +222,1702070565456.0,1.0,0.016666666666666666 +223,1702070625456.0,1.0,0.016666666666666666 +224,1702070685456.0,1.0,0.016666666666666666 +225,1702070745456.0,1.0,0.016666666666666666 +226,1702070805456.0,1.0,0.016666666666666666 +227,1702070865456.0,1.0,0.016666666666666666 +228,1702070925456.0,1.0,0.016666666666666666 +229,1702070985456.0,1.0,0.016666666666666666 +230,1702071045456.0,1.0,0.016666666666666666 +231,1702071105456.0,1.0,0.016666666666666666 +232,1702071165456.0,1.0,0.016666666666666666 +233,1702071225456.0,1.0,0.016666666666666666 +234,1702071285456.0,1.0,0.016666666666666666 +235,1702071345456.0,1.0,0.016666666666666666 +236,1702071405456.0,1.0,0.016666666666666666 +237,1702071465456.0,1.0,0.016666666666666666 +238,1702071525456.0,1.0,0.016666666666666666 +239,1702071585456.0,1.0,0.016666666666666666 +240,1702071645456.0,1.0,0.016666666666666666 +241,1702071705456.0,1.0,0.016666666666666666 +242,1702071765456.0,1.0,0.016666666666666666 +243,1702071825456.0,1.0,0.016666666666666666 +244,1702071885456.0,1.0,0.016666666666666666 +245,1702071945456.0,1.0,0.016666666666666666 +246,1702072005456.0,1.0,0.016666666666666666 +247,1702072065456.0,1.0,0.016666666666666666 +248,1702072125456.0,1.0,0.016666666666666666 +249,1702072185456.0,1.0,0.016666666666666666 +250,1702072245456.0,1.0,0.016666666666666666 +251,1702072305456.0,1.0,0.016666666666666666 +252,1702072365456.0,1.0,0.016666666666666666 +253,1702072425456.0,1.0,0.016666666666666666 +254,1702072485456.0,1.0,0.016666666666666666 +255,1702072545456.0,1.0,0.016666666666666666 +256,1702072605456.0,1.0,0.016666666666666666 +257,1702072665456.0,1.0,0.016666666666666666 +258,1702072725456.0,1.0,0.016666666666666666 +259,1702072785456.0,1.0,0.016666666666666666 +260,1702072845456.0,1.0,0.016666666666666666 +261,1702072905456.0,1.0,0.016666666666666666 +262,1702072965456.0,1.0,0.016666666666666666 +263,1702073025456.0,1.0,0.016666666666666666 +264,1702073085456.0,1.0,0.016666666666666666 +265,1702073145456.0,1.0,0.016666666666666666 +266,1702073205456.0,1.0,0.016666666666666666 +267,1702073265456.0,1.0,0.016666666666666666 +268,1702073325456.0,1.0,0.016666666666666666 +269,1702073385456.0,1.0,0.016666666666666666 +270,1702073445456.0,1.0,0.016666666666666666 +271,1702073505456.0,1.0,0.016666666666666666 +272,1702073565456.0,1.0,0.016666666666666666 +273,1702073625456.0,1.0,0.016666666666666666 +274,1702073685456.0,1.0,0.016666666666666666 +275,1702073745456.0,1.0,0.016666666666666666 +276,1702073805456.0,1.0,0.016666666666666666 +277,1702073865456.0,1.0,0.016666666666666666 +278,1702073925456.0,1.0,0.016666666666666666 +279,1702073985456.0,1.0,0.016666666666666666 +280,1702074045456.0,1.0,0.016666666666666666 +281,1702074105456.0,1.0,0.016666666666666666 +282,1702074165456.0,1.0,0.016666666666666666 +283,1702074225456.0,1.0,0.016666666666666666 +284,1702074285456.0,1.0,0.016666666666666666 +285,1702074345456.0,1.0,0.016666666666666666 +286,1702074405456.0,1.0,0.016666666666666666 +287,1702074465456.0,1.0,0.016666666666666666 +288,1702074525456.0,1.0,0.016666666666666666 +289,1702074585456.0,1.0,0.016666666666666666 +290,1702074645456.0,1.0,0.016666666666666666 +291,1702074705456.0,1.0,0.016666666666666666 +292,1702074765456.0,1.0,0.016666666666666666 +293,1702074825456.0,1.0,0.016666666666666666 +294,1702074885456.0,1.0,0.016666666666666666 +295,1702074945456.0,1.0,0.016666666666666666 +296,1702075005456.0,1.0,0.016666666666666666 +297,1702075065456.0,1.0,0.016666666666666666 +298,1702075125456.0,1.0,0.016666666666666666 +299,1702075185456.0,1.0,0.016666666666666666 +300,1702075245456.0,1.0,0.016666666666666666 +301,1702075305456.0,1.0,0.016666666666666666 +302,1702075365456.0,1.0,0.016666666666666666 +303,1702075425456.0,1.0,0.016666666666666666 +304,1702075485456.0,1.0,0.016666666666666666 +305,1702075545456.0,1.0,0.016666666666666666 +306,1702075605456.0,1.0,0.016666666666666666 +307,1702075665456.0,1.0,0.016666666666666666 +308,1702075725456.0,1.0,0.016666666666666666 +309,1702075785456.0,1.0,0.016666666666666666 +310,1702075845456.0,1.0,0.016666666666666666 +311,1702075905456.0,1.0,0.016666666666666666 +312,1702075965456.0,1.0,0.016666666666666666 +313,1702076025456.0,1.0,0.016666666666666666 +314,1702076085456.0,1.0,0.016666666666666666 +315,1702076145456.0,1.0,0.016666666666666666 +316,1702076205456.0,1.0,0.016666666666666666 +317,1702076265456.0,1.0,0.016666666666666666 +318,1702076325456.0,1.0,0.016666666666666666 +319,1702076385456.0,1.0,0.016666666666666666 +320,1702076445456.0,1.0,0.016666666666666666 +321,1702076505456.0,1.0,0.016666666666666666 +322,1702076565456.0,1.0,0.016666666666666666 +323,1702076625456.0,1.0,0.016666666666666666 +324,1702076685456.0,1.0,0.016666666666666666 +325,1702076745456.0,1.0,0.016666666666666666 +326,1702076805456.0,1.0,0.016666666666666666 +327,1702076865456.0,1.0,0.016666666666666666 +328,1702076925456.0,1.0,0.016666666666666666 +329,1702076985456.0,1.0,0.016666666666666666 +330,1702077045456.0,1.0,0.016666666666666666 +331,1702077105456.0,1.0,0.016666666666666666 +332,1702077165456.0,1.0,0.016666666666666666 +333,1702077225456.0,1.0,0.016666666666666666 +334,1702077285456.0,1.0,0.016666666666666666 +335,1702077345456.0,1.0,0.016666666666666666 +336,1702077405456.0,1.0,0.016666666666666666 +337,1702077465456.0,1.0,0.016666666666666666 +338,1702077525456.0,1.0,0.016666666666666666 +339,1702077585456.0,1.0,0.016666666666666666 +340,1702077645456.0,1.0,0.016666666666666666 +341,1702077705456.0,1.0,0.016666666666666666 +342,1702077765456.0,1.0,0.016666666666666666 +343,1702077825456.0,1.0,0.016666666666666666 +344,1702077885456.0,1.0,0.016666666666666666 +345,1702077945456.0,1.0,0.016666666666666666 +346,1702078005456.0,1.0,0.016666666666666666 +347,1702078065456.0,1.0,0.016666666666666666 +348,1702078125456.0,1.0,0.016666666666666666 +349,1702078185456.0,1.0,0.016666666666666666 +350,1702078245456.0,1.0,0.016666666666666666 +351,1702078305456.0,1.0,0.016666666666666666 +352,1702078365456.0,1.0,0.016666666666666666 +353,1702078425456.0,1.0,0.016666666666666666 +354,1702078485456.0,1.0,0.016666666666666666 +355,1702078545456.0,1.0,0.016666666666666666 +356,1702078605456.0,1.0,0.016666666666666666 +357,1702078665456.0,1.0,0.016666666666666666 +358,1702078725456.0,1.0,0.016666666666666666 +359,1702078785456.0,1.0,0.016666666666666666 +360,1702078845456.0,1.0,0.016666666666666666 +361,1702078905456.0,1.0,0.016666666666666666 +362,1702078965456.0,1.0,0.016666666666666666 +363,1702079025456.0,1.0,0.016666666666666666 +364,1702079085456.0,1.0,0.016666666666666666 +365,1702079145456.0,1.0,0.016666666666666666 +366,1702079205456.0,1.0,0.016666666666666666 +367,1702079265456.0,1.0,0.016666666666666666 +368,1702079325456.0,1.0,0.016666666666666666 +369,1702079385456.0,1.0,0.016666666666666666 +370,1702079445456.0,1.0,0.016666666666666666 +371,1702079505456.0,1.0,0.016666666666666666 +372,1702079565456.0,1.0,0.016666666666666666 +373,1702079625456.0,1.0,0.016666666666666666 +374,1702079685456.0,1.0,0.016666666666666666 +375,1702079745456.0,1.0,0.016666666666666666 +376,1702079805456.0,1.0,0.016666666666666666 +377,1702079865456.0,1.0,0.016666666666666666 +378,1702079925456.0,1.0,0.016666666666666666 +379,1702079985456.0,1.0,0.016666666666666666 +380,1702080045456.0,1.0,0.016666666666666666 +381,1702080105456.0,1.0,0.016666666666666666 +382,1702080165456.0,1.0,0.016666666666666666 +383,1702080225456.0,1.0,0.016666666666666666 +384,1702080285456.0,1.0,0.016666666666666666 +385,1702080345456.0,1.0,0.016666666666666666 +386,1702080405456.0,1.0,0.016666666666666666 +387,1702080465456.0,1.0,0.016666666666666666 +388,1702080525456.0,1.0,0.016666666666666666 +389,1702080585456.0,1.0,0.016666666666666666 +390,1702080645456.0,1.0,0.016666666666666666 +391,1702080705456.0,1.0,0.016666666666666666 +392,1702080765456.0,1.0,0.016666666666666666 +393,1702080825456.0,1.0,0.016666666666666666 +394,1702080885456.0,1.0,0.016666666666666666 +395,1702080945456.0,1.0,0.016666666666666666 +396,1702081005456.0,1.0,0.016666666666666666 +397,1702081065456.0,1.0,0.016666666666666666 +398,1702081125456.0,1.0,0.016666666666666666 +399,1702081185456.0,1.0,0.016666666666666666 +400,1702081245456.0,1.0,0.016666666666666666 +401,1702081305456.0,1.0,0.016666666666666666 +402,1702081365456.0,1.0,0.016666666666666666 +403,1702081425456.0,1.0,0.016666666666666666 +404,1702081485456.0,1.0,0.016666666666666666 +405,1702081545456.0,1.0,0.016666666666666666 +406,1702081605456.0,1.0,0.016666666666666666 +407,1702081665456.0,1.0,0.016666666666666666 +408,1702081725456.0,1.0,0.016666666666666666 +409,1702081785456.0,1.0,0.016666666666666666 +410,1702081845456.0,1.0,0.016666666666666666 +411,1702081905456.0,1.0,0.016666666666666666 +412,1702081965456.0,1.0,0.016666666666666666 +413,1702082025456.0,1.0,0.016666666666666666 +414,1702082085456.0,1.0,0.016666666666666666 +415,1702082145456.0,1.0,0.016666666666666666 +416,1702082205456.0,1.0,0.016666666666666666 +417,1702082265456.0,1.0,0.016666666666666666 +418,1702082325456.0,1.0,0.016666666666666666 +419,1702082385456.0,1.0,0.016666666666666666 +420,1702082445456.0,1.0,0.016666666666666666 +421,1702082505456.0,1.0,0.016666666666666666 +422,1702082565456.0,1.0,0.016666666666666666 +423,1702082625456.0,1.0,0.016666666666666666 +424,1702082685456.0,1.0,0.016666666666666666 +425,1702082745456.0,1.0,0.016666666666666666 +426,1702082805456.0,1.0,0.016666666666666666 +427,1702082865456.0,1.0,0.016666666666666666 +428,1702082925456.0,1.0,0.016666666666666666 +429,1702082985456.0,1.0,0.016666666666666666 +430,1702083045456.0,1.0,0.016666666666666666 +431,1702083105456.0,1.0,0.016666666666666666 +432,1702083165456.0,1.0,0.016666666666666666 +433,1702083225456.0,1.0,0.016666666666666666 +434,1702083285456.0,1.0,0.016666666666666666 +435,1702083345456.0,1.0,0.016666666666666666 +436,1702083405456.0,1.0,0.016666666666666666 +437,1702083465456.0,1.0,0.016666666666666666 +438,1702083525456.0,1.0,0.016666666666666666 +439,1702083585456.0,1.0,0.016666666666666666 +440,1702083645456.0,1.0,0.016666666666666666 +441,1702083705456.0,1.0,0.016666666666666666 +442,1702083765456.0,1.0,0.016666666666666666 +443,1702083825456.0,1.0,0.016666666666666666 +444,1702083885456.0,1.0,0.016666666666666666 +445,1702083945456.0,1.0,0.016666666666666666 +446,1702084005456.0,1.0,0.016666666666666666 +447,1702084065456.0,1.0,0.016666666666666666 +448,1702084125456.0,1.0,0.016666666666666666 +449,1702084185456.0,1.0,0.016666666666666666 +450,1702084245456.0,1.0,0.016666666666666666 +451,1702084305456.0,1.0,0.016666666666666666 +452,1702084365456.0,1.0,0.016666666666666666 +453,1702084425456.0,1.0,0.016666666666666666 +454,1702084485456.0,1.0,0.016666666666666666 +455,1702084545456.0,1.0,0.016666666666666666 +456,1702084605456.0,1.0,0.016666666666666666 +457,1702084665456.0,1.0,0.016666666666666666 +458,1702084725456.0,1.0,0.016666666666666666 +459,1702084785456.0,1.0,0.016666666666666666 +460,1702084845456.0,1.0,0.016666666666666666 +461,1702084905456.0,1.0,0.016666666666666666 +462,1702084965456.0,1.0,0.016666666666666666 +463,1702085025456.0,1.0,0.016666666666666666 +464,1702085085456.0,1.0,0.016666666666666666 +465,1702085145456.0,1.0,0.016666666666666666 +466,1702085205456.0,1.0,0.016666666666666666 +467,1702085265456.0,1.0,0.016666666666666666 +468,1702085325456.0,1.0,0.016666666666666666 +469,1702085385456.0,1.0,0.016666666666666666 +470,1702085445456.0,1.0,0.016666666666666666 +471,1702085505456.0,1.0,0.016666666666666666 +472,1702085565456.0,1.0,0.016666666666666666 +473,1702085625456.0,1.0,0.016666666666666666 +474,1702085685456.0,1.0,0.016666666666666666 +475,1702085745456.0,1.0,0.016666666666666666 +476,1702085805456.0,1.0,0.016666666666666666 +477,1702085865456.0,1.0,0.016666666666666666 +478,1702085925456.0,1.0,0.016666666666666666 +479,1702085985456.0,1.0,0.016666666666666666 +480,1702086045456.0,1.0,0.016666666666666666 +481,1702086105456.0,1.0,0.016666666666666666 +482,1702086165456.0,1.0,0.016666666666666666 +483,1702086225456.0,1.0,0.016666666666666666 +484,1702086285456.0,1.0,0.016666666666666666 +485,1702086345456.0,1.0,0.016666666666666666 +486,1702086405456.0,1.0,0.016666666666666666 +487,1702086465456.0,1.0,0.016666666666666666 +488,1702086525456.0,1.0,0.016666666666666666 +489,1702086585456.0,1.0,0.016666666666666666 +490,1702086645456.0,1.0,0.016666666666666666 +491,1702086705456.0,1.0,0.016666666666666666 +492,1702086765456.0,1.0,0.016666666666666666 +493,1702086825456.0,1.0,0.016666666666666666 +494,1702086885456.0,1.0,0.016666666666666666 +495,1702086945456.0,1.0,0.016666666666666666 +496,1702087005456.0,1.0,0.016666666666666666 +497,1702087065456.0,1.0,0.016666666666666666 +498,1702087125456.0,1.0,0.016666666666666666 +499,1702087185456.0,1.0,0.016666666666666666 +500,1702087245456.0,1.0,0.016666666666666666 +501,1702087305456.0,1.0,0.016666666666666666 +502,1702087365456.0,1.0,0.016666666666666666 +503,1702087425456.0,1.0,0.016666666666666666 +504,1702087485456.0,1.0,0.016666666666666666 +505,1702087545456.0,1.0,0.016666666666666666 +506,1702087605456.0,1.0,0.016666666666666666 +507,1702087665456.0,1.0,0.016666666666666666 +508,1702087725456.0,1.0,0.016666666666666666 +509,1702087785456.0,1.0,0.016666666666666666 +510,1702087845456.0,1.0,0.016666666666666666 +511,1702087905456.0,1.0,0.016666666666666666 +512,1702087965456.0,1.0,0.016666666666666666 +513,1702088025456.0,1.0,0.016666666666666666 +514,1702088085456.0,1.0,0.016666666666666666 +515,1702088145456.0,1.0,0.016666666666666666 +516,1702088205456.0,1.0,0.016666666666666666 +517,1702088265456.0,1.0,0.016666666666666666 +518,1702088325456.0,1.0,0.016666666666666666 +519,1702088385456.0,1.0,0.016666666666666666 +520,1702088445456.0,1.0,0.016666666666666666 +521,1702088505456.0,1.0,0.016666666666666666 +522,1702088565456.0,1.0,0.016666666666666666 +523,1702088625456.0,1.0,0.016666666666666666 +524,1702088685456.0,1.0,0.016666666666666666 +525,1702088745456.0,1.0,0.016666666666666666 +526,1702088805456.0,1.0,0.016666666666666666 +527,1702088865456.0,1.0,0.016666666666666666 +528,1702088925456.0,1.0,0.016666666666666666 +529,1702088985456.0,1.0,0.016666666666666666 +530,1702089045456.0,1.0,0.016666666666666666 +531,1702089105456.0,1.0,0.016666666666666666 +532,1702089165456.0,1.0,0.016666666666666666 +533,1702089225456.0,1.0,0.016666666666666666 +534,1702089285456.0,1.0,0.016666666666666666 +535,1702089345456.0,1.0,0.016666666666666666 +536,1702089405456.0,1.0,0.016666666666666666 +537,1702089465456.0,1.0,0.016666666666666666 +538,1702089525456.0,1.0,0.016666666666666666 +539,1702089585456.0,1.0,0.016666666666666666 +540,1702089645456.0,1.0,0.016666666666666666 +541,1702089705456.0,1.0,0.016666666666666666 +542,1702089765456.0,1.0,0.016666666666666666 +543,1702089825456.0,1.0,0.016666666666666666 +544,1702089885456.0,1.0,0.016666666666666666 +545,1702089945456.0,1.0,0.016666666666666666 +546,1702090005456.0,1.0,0.016666666666666666 +547,1702090065456.0,1.0,0.016666666666666666 +548,1702090125456.0,1.0,0.016666666666666666 +549,1702090185456.0,1.0,0.016666666666666666 +550,1702090245456.0,1.0,0.016666666666666666 +551,1702090305456.0,1.0,0.016666666666666666 +552,1702090365456.0,1.0,0.016666666666666666 +553,1702090425456.0,1.0,0.016666666666666666 +554,1702090485456.0,1.0,0.016666666666666666 +555,1702090545456.0,1.0,0.016666666666666666 +556,1702090605456.0,1.0,0.016666666666666666 +557,1702090665456.0,1.0,0.016666666666666666 +558,1702090725456.0,1.0,0.016666666666666666 +559,1702090785456.0,1.0,0.016666666666666666 +560,1702090845456.0,1.0,0.016666666666666666 +561,1702090905456.0,1.0,0.016666666666666666 +562,1702090965456.0,1.0,0.016666666666666666 +563,1702091025456.0,1.0,0.016666666666666666 +564,1702091085456.0,1.0,0.016666666666666666 +565,1702091145456.0,1.0,0.016666666666666666 +566,1702091205456.0,1.0,0.016666666666666666 +567,1702091265456.0,1.0,0.016666666666666666 +568,1702091325456.0,1.0,0.016666666666666666 +569,1702091385456.0,1.0,0.016666666666666666 +570,1702091445456.0,1.0,0.016666666666666666 +571,1702091505456.0,1.0,0.016666666666666666 +572,1702091565456.0,1.0,0.016666666666666666 +573,1702091625456.0,1.0,0.016666666666666666 +574,1702091685456.0,1.0,0.016666666666666666 +575,1702091745456.0,1.0,0.016666666666666666 +576,1702091805456.0,1.0,0.016666666666666666 +577,1702091865456.0,1.0,0.016666666666666666 +578,1702091925456.0,1.0,0.016666666666666666 +579,1702091985456.0,1.0,0.016666666666666666 +580,1702092045456.0,1.0,0.016666666666666666 +581,1702092105456.0,1.0,0.016666666666666666 +582,1702092165456.0,1.0,0.016666666666666666 +583,1702092225456.0,1.0,0.016666666666666666 +584,1702092285456.0,1.0,0.016666666666666666 +585,1702092345456.0,1.0,0.016666666666666666 +586,1702092405456.0,1.0,0.016666666666666666 +587,1702092465456.0,1.0,0.016666666666666666 +588,1702092525456.0,1.0,0.016666666666666666 +589,1702092585456.0,1.0,0.016666666666666666 +590,1702092645456.0,1.0,0.016666666666666666 +591,1702092705456.0,1.0,0.016666666666666666 +592,1702092765456.0,1.0,0.016666666666666666 +593,1702092825456.0,1.0,0.016666666666666666 +594,1702092885456.0,1.0,0.016666666666666666 +595,1702092945456.0,1.0,0.016666666666666666 +596,1702093005456.0,1.0,0.016666666666666666 +597,1702093065456.0,1.0,0.016666666666666666 +598,1702093125456.0,1.0,0.016666666666666666 +599,1702093185456.0,1.0,0.016666666666666666 +600,1702093245456.0,1.0,0.016666666666666666 +601,1702093305456.0,1.0,0.016666666666666666 +602,1702093365456.0,1.0,0.016666666666666666 +603,1702093425456.0,1.0,0.016666666666666666 +604,1702093485456.0,1.0,0.016666666666666666 +605,1702093545456.0,1.0,0.016666666666666666 +606,1702093605456.0,1.0,0.016666666666666666 +607,1702093665456.0,1.0,0.016666666666666666 +608,1702093725456.0,1.0,0.016666666666666666 +609,1702093785456.0,1.0,0.016666666666666666 +610,1702093845456.0,1.0,0.016666666666666666 +611,1702093905456.0,1.0,0.016666666666666666 +612,1702093965456.0,1.0,0.016666666666666666 +613,1702094025456.0,1.0,0.016666666666666666 +614,1702094085456.0,1.0,0.016666666666666666 +615,1702094145456.0,1.0,0.016666666666666666 +616,1702094205456.0,1.0,0.016666666666666666 +617,1702094265456.0,1.0,0.016666666666666666 +618,1702094325456.0,1.0,0.016666666666666666 +619,1702094385456.0,1.0,0.016666666666666666 +620,1702094445456.0,1.0,0.016666666666666666 +621,1702094505456.0,1.0,0.016666666666666666 +622,1702094565456.0,1.0,0.016666666666666666 +623,1702094625456.0,1.0,0.016666666666666666 +624,1702094685456.0,1.0,0.016666666666666666 +625,1702094745456.0,1.0,0.016666666666666666 +626,1702094805456.0,1.0,0.016666666666666666 +627,1702094865456.0,1.0,0.016666666666666666 +628,1702094925456.0,1.0,0.016666666666666666 +629,1702094985456.0,1.0,0.016666666666666666 +630,1702095045456.0,1.0,0.016666666666666666 +631,1702095105456.0,1.0,0.016666666666666666 +632,1702095165456.0,1.0,0.016666666666666666 +633,1702095225456.0,1.0,0.016666666666666666 +634,1702095285456.0,1.0,0.016666666666666666 +635,1702095345456.0,1.0,0.016666666666666666 +636,1702095405456.0,1.0,0.016666666666666666 +637,1702095465456.0,1.0,0.016666666666666666 +638,1702095525456.0,1.0,0.016666666666666666 +639,1702095585456.0,1.0,0.016666666666666666 +640,1702095645456.0,1.0,0.016666666666666666 +641,1702095705456.0,1.0,0.016666666666666666 +642,1702095765456.0,1.0,0.016666666666666666 +643,1702095825456.0,1.0,0.016666666666666666 +644,1702095885456.0,1.0,0.016666666666666666 +645,1702095945456.0,1.0,0.016666666666666666 +646,1702096005456.0,1.0,0.016666666666666666 +647,1702096065456.0,1.0,0.016666666666666666 +648,1702096125456.0,1.0,0.016666666666666666 +649,1702096185456.0,1.0,0.016666666666666666 +650,1702096245456.0,1.0,0.016666666666666666 +651,1702096305456.0,1.0,0.016666666666666666 +652,1702096365456.0,1.0,0.016666666666666666 +653,1702096425456.0,1.0,0.016666666666666666 +654,1702096485456.0,1.0,0.016666666666666666 +655,1702096545456.0,1.0,0.016666666666666666 +656,1702096605456.0,1.0,0.016666666666666666 +657,1702096665456.0,1.0,0.016666666666666666 +658,1702096725456.0,1.0,0.016666666666666666 +659,1702096785456.0,1.0,0.016666666666666666 +660,1702096845456.0,1.0,0.016666666666666666 +661,1702096905456.0,1.0,0.016666666666666666 +662,1702096965456.0,1.0,0.016666666666666666 +663,1702097025456.0,1.0,0.016666666666666666 +664,1702097085456.0,1.0,0.016666666666666666 +665,1702097145456.0,1.0,0.016666666666666666 +666,1702097205456.0,1.0,0.016666666666666666 +667,1702097265456.0,1.0,0.016666666666666666 +668,1702097325456.0,1.0,0.016666666666666666 +669,1702097385456.0,1.0,0.016666666666666666 +670,1702097445456.0,1.0,0.016666666666666666 +671,1702097505456.0,1.0,0.016666666666666666 +672,1702097565456.0,1.0,0.016666666666666666 +673,1702097625456.0,1.0,0.016666666666666666 +674,1702097685456.0,1.0,0.016666666666666666 +675,1702097745456.0,1.0,0.016666666666666666 +676,1702097805456.0,1.0,0.016666666666666666 +677,1702097865456.0,1.0,0.016666666666666666 +678,1702097925456.0,1.0,0.016666666666666666 +679,1702097985456.0,1.0,0.016666666666666666 +680,1702098045456.0,1.0,0.016666666666666666 +681,1702098105456.0,1.0,0.016666666666666666 +682,1702098165456.0,1.0,0.016666666666666666 +683,1702098225456.0,1.0,0.016666666666666666 +684,1702098285456.0,1.0,0.016666666666666666 +685,1702098345456.0,1.0,0.016666666666666666 +686,1702098405456.0,1.0,0.016666666666666666 +687,1702098465456.0,1.0,0.016666666666666666 +688,1702098525456.0,1.0,0.016666666666666666 +689,1702098585456.0,1.0,0.016666666666666666 +690,1702098645456.0,1.0,0.016666666666666666 +691,1702098705456.0,1.0,0.016666666666666666 +692,1702098765456.0,1.0,0.016666666666666666 +693,1702098825456.0,1.0,0.016666666666666666 +694,1702098885456.0,1.0,0.016666666666666666 +695,1702098945456.0,1.0,0.016666666666666666 +696,1702099005456.0,1.0,0.016666666666666666 +697,1702099065456.0,1.0,0.016666666666666666 +698,1702099125456.0,1.0,0.016666666666666666 +699,1702099185456.0,1.0,0.016666666666666666 +700,1702099245456.0,1.0,0.016666666666666666 +701,1702099305456.0,1.0,0.016666666666666666 +702,1702099365456.0,1.0,0.016666666666666666 +703,1702099425456.0,1.0,0.016666666666666666 +704,1702099485456.0,1.0,0.016666666666666666 +705,1702099545456.0,1.0,0.016666666666666666 +706,1702099605456.0,1.0,0.016666666666666666 +707,1702099665456.0,1.0,0.016666666666666666 +708,1702099725456.0,1.0,0.016666666666666666 +709,1702099785456.0,1.0,0.016666666666666666 +710,1702099845456.0,1.0,0.016666666666666666 +711,1702099905456.0,1.0,0.016666666666666666 +712,1702099965456.0,1.0,0.016666666666666666 +713,1702100025456.0,1.0,0.016666666666666666 +714,1702100085456.0,1.0,0.016666666666666666 +715,1702100145456.0,1.0,0.016666666666666666 +716,1702100205456.0,1.0,0.016666666666666666 +717,1702100265456.0,1.0,0.016666666666666666 +718,1702100325456.0,1.0,0.016666666666666666 +719,1702100385456.0,1.0,0.016666666666666666 +720,1702100445456.0,1.0,0.016666666666666666 +721,1702100505456.0,1.0,0.016666666666666666 +722,1702100565456.0,1.0,0.016666666666666666 +723,1702100625456.0,1.0,0.016666666666666666 +724,1702100685456.0,1.0,0.016666666666666666 +725,1702100745456.0,1.0,0.016666666666666666 +726,1702100805456.0,1.0,0.016666666666666666 +727,1702100865456.0,1.0,0.016666666666666666 +728,1702100925456.0,1.0,0.016666666666666666 +729,1702100985456.0,1.0,0.016666666666666666 +730,1702101045456.0,1.0,0.016666666666666666 +731,1702101105456.0,1.0,0.016666666666666666 +732,1702101165456.0,1.0,0.016666666666666666 +733,1702101225456.0,1.0,0.016666666666666666 +734,1702101285456.0,1.0,0.016666666666666666 +735,1702101345456.0,1.0,0.016666666666666666 +736,1702101405456.0,1.0,0.016666666666666666 +737,1702101465456.0,1.0,0.016666666666666666 +738,1702101525456.0,1.0,0.016666666666666666 +739,1702101585456.0,1.0,0.016666666666666666 +740,1702101645456.0,1.0,0.016666666666666666 +741,1702101705456.0,1.0,0.016666666666666666 +742,1702101765456.0,1.0,0.016666666666666666 +743,1702101825456.0,1.0,0.016666666666666666 +744,1702101885456.0,1.0,0.016666666666666666 +745,1702101945456.0,1.0,0.016666666666666666 +746,1702102005456.0,1.0,0.016666666666666666 +747,1702102065456.0,1.0,0.016666666666666666 +748,1702102125456.0,1.0,0.016666666666666666 +749,1702102185456.0,1.0,0.016666666666666666 +750,1702102245456.0,1.0,0.016666666666666666 +751,1702102305456.0,1.0,0.016666666666666666 +752,1702102365456.0,1.0,0.016666666666666666 +753,1702102425456.0,1.0,0.016666666666666666 +754,1702102485456.0,1.0,0.016666666666666666 +755,1702102545456.0,1.0,0.016666666666666666 +756,1702102605456.0,1.0,0.016666666666666666 +757,1702102665456.0,1.0,0.016666666666666666 +758,1702102725456.0,1.0,0.016666666666666666 +759,1702102785456.0,1.0,0.016666666666666666 +760,1702102845456.0,1.0,0.016666666666666666 +761,1702102905456.0,1.0,0.016666666666666666 +762,1702102965456.0,1.0,0.016666666666666666 +763,1702103025456.0,1.0,0.016666666666666666 +764,1702103085456.0,1.0,0.016666666666666666 +765,1702103145456.0,1.0,0.016666666666666666 +766,1702103205456.0,1.0,0.016666666666666666 +767,1702103265456.0,1.0,0.016666666666666666 +768,1702103325456.0,1.0,0.016666666666666666 +769,1702103385456.0,1.0,0.016666666666666666 +770,1702103445456.0,1.0,0.016666666666666666 +771,1702103505456.0,1.0,0.016666666666666666 +772,1702103565456.0,1.0,0.016666666666666666 +773,1702103625456.0,1.0,0.016666666666666666 +774,1702103685456.0,1.0,0.016666666666666666 +775,1702103745456.0,1.0,0.016666666666666666 +776,1702103805456.0,1.0,0.016666666666666666 +777,1702103865456.0,1.0,0.016666666666666666 +778,1702103925456.0,1.0,0.016666666666666666 +779,1702103985456.0,1.0,0.016666666666666666 +780,1702104045456.0,1.0,0.016666666666666666 +781,1702104105456.0,1.0,0.016666666666666666 +782,1702104165456.0,1.0,0.016666666666666666 +783,1702104225456.0,1.0,0.016666666666666666 +784,1702104285456.0,1.0,0.016666666666666666 +785,1702104345456.0,1.0,0.016666666666666666 +786,1702104405456.0,1.0,0.016666666666666666 +787,1702104465456.0,1.0,0.016666666666666666 +788,1702104525456.0,1.0,0.016666666666666666 +789,1702104585456.0,1.0,0.016666666666666666 +790,1702104645456.0,1.0,0.016666666666666666 +791,1702104705456.0,1.0,0.016666666666666666 +792,1702104765456.0,1.0,0.016666666666666666 +793,1702104825456.0,1.0,0.016666666666666666 +794,1702104885456.0,1.0,0.016666666666666666 +795,1702104945456.0,1.0,0.016666666666666666 +796,1702105005456.0,1.0,0.016666666666666666 +797,1702105065456.0,1.0,0.016666666666666666 +798,1702105125456.0,1.0,0.016666666666666666 +799,1702105185456.0,1.0,0.016666666666666666 +800,1702105245456.0,1.0,0.016666666666666666 +801,1702105305456.0,1.0,0.016666666666666666 +802,1702105365456.0,1.0,0.016666666666666666 +803,1702105425456.0,1.0,0.016666666666666666 +804,1702105485456.0,1.0,0.016666666666666666 +805,1702105545456.0,1.0,0.016666666666666666 +806,1702105605456.0,1.0,0.016666666666666666 +807,1702105665456.0,1.0,0.016666666666666666 +808,1702105725456.0,1.0,0.016666666666666666 +809,1702105785456.0,1.0,0.016666666666666666 +810,1702105845456.0,1.0,0.016666666666666666 +811,1702105905456.0,1.0,0.016666666666666666 +812,1702105965456.0,1.0,0.016666666666666666 +813,1702106025456.0,1.0,0.016666666666666666 +814,1702106085456.0,1.0,0.016666666666666666 +815,1702106145456.0,1.0,0.016666666666666666 +816,1702106205456.0,1.0,0.016666666666666666 +817,1702106265456.0,1.0,0.016666666666666666 +818,1702106325456.0,1.0,0.016666666666666666 +819,1702106385456.0,1.0,0.016666666666666666 +820,1702106445456.0,1.0,0.016666666666666666 +821,1702106505456.0,1.0,0.016666666666666666 +822,1702106565456.0,1.0,0.016666666666666666 +823,1702106625456.0,1.0,0.016666666666666666 +824,1702106685456.0,1.0,0.016666666666666666 +825,1702106745456.0,1.0,0.016666666666666666 +826,1702106805456.0,1.0,0.016666666666666666 +827,1702106865456.0,1.0,0.016666666666666666 +828,1702106925456.0,1.0,0.016666666666666666 +829,1702106985456.0,1.0,0.016666666666666666 +830,1702107045456.0,1.0,0.016666666666666666 +831,1702107105456.0,1.0,0.016666666666666666 +832,1702107165456.0,1.0,0.016666666666666666 +833,1702107225456.0,1.0,0.016666666666666666 +834,1702107285456.0,1.0,0.016666666666666666 +835,1702107345456.0,1.0,0.016666666666666666 +836,1702107405456.0,1.0,0.016666666666666666 +837,1702107465456.0,1.0,0.016666666666666666 +838,1702107525456.0,1.0,0.016666666666666666 +839,1702107585456.0,1.0,0.016666666666666666 +840,1702107645456.0,1.0,0.016666666666666666 +841,1702107705456.0,1.0,0.016666666666666666 +842,1702107765456.0,1.0,0.016666666666666666 +843,1702107825456.0,1.0,0.016666666666666666 +844,1702107885456.0,1.0,0.016666666666666666 +845,1702107945456.0,1.0,0.016666666666666666 +846,1702108005456.0,1.0,0.016666666666666666 +847,1702108065456.0,1.0,0.016666666666666666 +848,1702108125456.0,1.0,0.016666666666666666 +849,1702108185456.0,1.0,0.016666666666666666 +850,1702108245456.0,1.0,0.016666666666666666 +851,1702108305456.0,1.0,0.016666666666666666 +852,1702108365456.0,1.0,0.016666666666666666 +853,1702108425456.0,1.0,0.016666666666666666 +854,1702108485456.0,1.0,0.016666666666666666 +855,1702108545456.0,1.0,0.016666666666666666 +856,1702108605456.0,1.0,0.016666666666666666 +857,1702108665456.0,1.0,0.016666666666666666 +858,1702108725456.0,1.0,0.016666666666666666 +859,1702108785456.0,1.0,0.016666666666666666 +860,1702108845456.0,1.0,0.016666666666666666 +861,1702108905456.0,1.0,0.016666666666666666 +862,1702108965456.0,1.0,0.016666666666666666 +863,1702109025456.0,1.0,0.016666666666666666 +864,1702109085456.0,1.0,0.016666666666666666 +865,1702109145456.0,1.0,0.016666666666666666 +866,1702109205456.0,1.0,0.016666666666666666 +867,1702109265456.0,1.0,0.016666666666666666 +868,1702109325456.0,1.0,0.016666666666666666 +869,1702109385456.0,1.0,0.016666666666666666 +870,1702109445456.0,1.0,0.016666666666666666 +871,1702109505456.0,1.0,0.016666666666666666 +872,1702109565456.0,1.0,0.016666666666666666 +873,1702109625456.0,1.0,0.016666666666666666 +874,1702109685456.0,1.0,0.016666666666666666 +875,1702109745456.0,1.0,0.016666666666666666 +876,1702109805456.0,1.0,0.016666666666666666 +877,1702109865456.0,1.0,0.016666666666666666 +878,1702109925456.0,1.0,0.016666666666666666 +879,1702109985456.0,1.0,0.016666666666666666 +880,1702110045456.0,1.0,0.016666666666666666 +881,1702110105456.0,1.0,0.016666666666666666 +882,1702110165456.0,1.0,0.016666666666666666 +883,1702110225456.0,1.0,0.016666666666666666 +884,1702110285456.0,1.0,0.016666666666666666 +885,1702110345456.0,1.0,0.016666666666666666 +886,1702110405456.0,1.0,0.016666666666666666 +887,1702110465456.0,1.0,0.016666666666666666 +888,1702110525456.0,1.0,0.016666666666666666 +889,1702110585456.0,1.0,0.016666666666666666 +890,1702110645456.0,1.0,0.016666666666666666 +891,1702110705456.0,1.0,0.016666666666666666 +892,1702110765456.0,1.0,0.016666666666666666 +893,1702110825456.0,1.0,0.016666666666666666 +894,1702110885456.0,1.0,0.016666666666666666 +895,1702110945456.0,1.0,0.016666666666666666 +896,1702111005456.0,1.0,0.016666666666666666 +897,1702111065456.0,1.0,0.016666666666666666 +898,1702111125456.0,1.0,0.016666666666666666 +899,1702111185456.0,1.0,0.016666666666666666 +900,1702111245456.0,1.0,0.016666666666666666 +901,1702111305456.0,1.0,0.016666666666666666 +902,1702111365456.0,1.0,0.016666666666666666 +903,1702111425456.0,1.0,0.016666666666666666 +904,1702111485456.0,1.0,0.016666666666666666 +905,1702111545456.0,1.0,0.016666666666666666 +906,1702111605456.0,1.0,0.016666666666666666 +907,1702111665456.0,1.0,0.016666666666666666 +908,1702111725456.0,1.0,0.016666666666666666 +909,1702111785456.0,1.0,0.016666666666666666 +910,1702111845456.0,1.0,0.016666666666666666 +911,1702111905456.0,1.0,0.016666666666666666 +912,1702111965456.0,1.0,0.016666666666666666 +913,1702112025456.0,1.0,0.016666666666666666 +914,1702112085456.0,1.0,0.016666666666666666 +915,1702112145456.0,1.0,0.016666666666666666 +916,1702112205456.0,1.0,0.016666666666666666 +917,1702112265456.0,1.0,0.016666666666666666 +918,1702112325456.0,1.0,0.016666666666666666 +919,1702112385456.0,1.0,0.016666666666666666 +920,1702112445456.0,1.0,0.016666666666666666 +921,1702112505456.0,1.0,0.016666666666666666 +922,1702112565456.0,1.0,0.016666666666666666 +923,1702112625456.0,1.0,0.016666666666666666 +924,1702112685456.0,1.0,0.016666666666666666 +925,1702112745456.0,1.0,0.016666666666666666 +926,1702112805456.0,1.0,0.016666666666666666 +927,1702112865456.0,1.0,0.016666666666666666 +928,1702112925456.0,1.0,0.016666666666666666 +929,1702112985456.0,1.0,0.016666666666666666 +930,1702113045456.0,1.0,0.016666666666666666 +931,1702113105456.0,1.0,0.016666666666666666 +932,1702113165456.0,1.0,0.016666666666666666 +933,1702113225456.0,1.0,0.016666666666666666 +934,1702113285456.0,1.0,0.016666666666666666 +935,1702113345456.0,1.0,0.016666666666666666 +936,1702113405456.0,1.0,0.016666666666666666 +937,1702113465456.0,1.0,0.016666666666666666 +938,1702113525456.0,1.0,0.016666666666666666 +939,1702113585456.0,1.0,0.016666666666666666 +940,1702113645456.0,1.0,0.016666666666666666 +941,1702113705456.0,1.0,0.016666666666666666 +942,1702113765456.0,1.0,0.016666666666666666 +943,1702113825456.0,1.0,0.016666666666666666 +944,1702113885456.0,1.0,0.016666666666666666 +945,1702113945456.0,1.0,0.016666666666666666 +946,1702114005456.0,1.0,0.016666666666666666 +947,1702114065456.0,1.0,0.016666666666666666 +948,1702114125456.0,1.0,0.016666666666666666 +949,1702114185456.0,1.0,0.016666666666666666 +950,1702114245456.0,1.0,0.016666666666666666 +951,1702114305456.0,1.0,0.016666666666666666 +952,1702114365456.0,1.0,0.016666666666666666 +953,1702114425456.0,1.0,0.016666666666666666 +954,1702114485456.0,1.0,0.016666666666666666 +955,1702114545456.0,1.0,0.016666666666666666 +956,1702114605456.0,1.0,0.016666666666666666 +957,1702114665456.0,1.0,0.016666666666666666 +958,1702114725456.0,1.0,0.016666666666666666 +959,1702114785456.0,1.0,0.016666666666666666 +960,1702114845456.0,1.0,0.016666666666666666 +961,1702114905456.0,1.0,0.016666666666666666 +962,1702114965456.0,1.0,0.016666666666666666 +963,1702115025456.0,1.0,0.016666666666666666 +964,1702115085456.0,1.0,0.016666666666666666 +965,1702115145456.0,1.0,0.016666666666666666 +966,1702115205456.0,1.0,0.016666666666666666 +967,1702115265456.0,1.0,0.016666666666666666 +968,1702115325456.0,1.0,0.016666666666666666 +969,1702115385456.0,1.0,0.016666666666666666 +970,1702115445456.0,1.0,0.016666666666666666 +971,1702115505456.0,1.0,0.016666666666666666 +972,1702115565456.0,1.0,0.016666666666666666 +973,1702115625456.0,1.0,0.016666666666666666 +974,1702115685456.0,1.0,0.016666666666666666 +975,1702115745456.0,1.0,0.016666666666666666 +976,1702115805456.0,1.0,0.016666666666666666 +977,1702115865456.0,1.0,0.016666666666666666 +978,1702115925456.0,1.0,0.016666666666666666 +979,1702115985456.0,1.0,0.016666666666666666 +980,1702116045456.0,1.0,0.016666666666666666 +981,1702116105456.0,1.0,0.016666666666666666 +982,1702116165456.0,1.0,0.016666666666666666 +983,1702116225456.0,1.0,0.016666666666666666 +984,1702116285456.0,1.0,0.016666666666666666 +985,1702116345456.0,1.0,0.016666666666666666 +986,1702116405456.0,1.0,0.016666666666666666 +987,1702116465456.0,1.0,0.016666666666666666 +988,1702116525456.0,1.0,0.016666666666666666 +989,1702116585456.0,1.0,0.016666666666666666 +990,1702116645456.0,1.0,0.016666666666666666 +991,1702116705456.0,1.0,0.016666666666666666 +992,1702116765456.0,1.0,0.016666666666666666 +993,1702116825456.0,1.0,0.016666666666666666 +994,1702116885456.0,1.0,0.016666666666666666 +995,1702116945456.0,1.0,0.016666666666666666 +996,1702117005456.0,1.0,0.016666666666666666 +997,1702117065456.0,1.0,0.016666666666666666 +998,1702117125456.0,1.0,0.016666666666666666 +999,1702117185456.0,1.0,0.016666666666666666 +1000,1702117245456.0,1.0,0.016666666666666666 +1001,1702117305456.0,1.0,0.016666666666666666 +1002,1702117365456.0,1.0,0.016666666666666666 +1003,1702117425456.0,1.0,0.016666666666666666 +1004,1702117485456.0,1.0,0.016666666666666666 +1005,1702117545456.0,1.0,0.016666666666666666 +1006,1702117605456.0,1.0,0.016666666666666666 +1007,1702117665456.0,1.0,0.016666666666666666 +1008,1702117725456.0,1.0,0.016666666666666666 +1009,1702117785456.0,1.0,0.016666666666666666 +1010,1702117845456.0,1.0,0.016666666666666666 +1011,1702117905456.0,1.0,0.016666666666666666 +1012,1702117965456.0,1.0,0.016666666666666666 +1013,1702118025456.0,1.0,0.016666666666666666 +1014,1702118085456.0,1.0,0.016666666666666666 +1015,1702118145456.0,1.0,0.016666666666666666 +1016,1702118205456.0,1.0,0.016666666666666666 +1017,1702118265456.0,1.0,0.016666666666666666 +1018,1702118325456.0,1.0,0.016666666666666666 +1019,1702118385456.0,1.0,0.016666666666666666 +1020,1702118445456.0,1.0,0.016666666666666666 +1021,1702118505456.0,1.0,0.016666666666666666 +1022,1702118565456.0,1.0,0.016666666666666666 +1023,1702118625456.0,1.0,0.016666666666666666 +1024,1702118685456.0,1.0,0.016666666666666666 +1025,1702118745456.0,1.0,0.016666666666666666 +1026,1702118805456.0,1.0,0.016666666666666666 +1027,1702118865456.0,1.0,0.016666666666666666 +1028,1702118925456.0,1.0,0.016666666666666666 +1029,1702118985456.0,1.0,0.016666666666666666 +1030,1702119045456.0,1.0,0.016666666666666666 +1031,1702119105456.0,1.0,0.016666666666666666 +1032,1702119165456.0,1.0,0.016666666666666666 +1033,1702119225456.0,1.0,0.016666666666666666 +1034,1702119285456.0,1.0,0.016666666666666666 +1035,1702119345456.0,1.0,0.016666666666666666 +1036,1702119405456.0,1.0,0.016666666666666666 +1037,1702119465456.0,1.0,0.016666666666666666 +1038,1702119525456.0,1.0,0.016666666666666666 +1039,1702119585456.0,1.0,0.016666666666666666 +1040,1702119645456.0,1.0,0.016666666666666666 +1041,1702119705456.0,1.0,0.016666666666666666 +1042,1702119765456.0,1.0,0.016666666666666666 +1043,1702119825456.0,1.0,0.016666666666666666 +1044,1702119885456.0,1.0,0.016666666666666666 +1045,1702119945456.0,1.0,0.016666666666666666 +1046,1702120005456.0,1.0,0.016666666666666666 +1047,1702120065456.0,1.0,0.016666666666666666 +1048,1702120125456.0,1.0,0.016666666666666666 +1049,1702120185456.0,1.0,0.016666666666666666 +1050,1702120245456.0,1.0,0.016666666666666666 +1051,1702120305456.0,1.0,0.016666666666666666 +1052,1702120365456.0,1.0,0.016666666666666666 +1053,1702120425456.0,1.0,0.016666666666666666 +1054,1702120485456.0,1.0,0.016666666666666666 +1055,1702120545456.0,1.0,0.016666666666666666 +1056,1702120605456.0,1.0,0.016666666666666666 +1057,1702120665456.0,1.0,0.016666666666666666 +1058,1702120725456.0,1.0,0.016666666666666666 +1059,1702120785456.0,1.0,0.016666666666666666 +1060,1702120845456.0,1.0,0.016666666666666666 +1061,1702120905456.0,1.0,0.016666666666666666 +1062,1702120965456.0,1.0,0.016666666666666666 +1063,1702121025456.0,1.0,0.016666666666666666 +1064,1702121085456.0,1.0,0.016666666666666666 +1065,1702121145456.0,1.0,0.016666666666666666 +1066,1702121205456.0,1.0,0.016666666666666666 +1067,1702121265456.0,1.0,0.016666666666666666 +1068,1702121325456.0,1.0,0.016666666666666666 +1069,1702121385456.0,1.0,0.016666666666666666 +1070,1702121445456.0,1.0,0.016666666666666666 +1071,1702121505456.0,1.0,0.016666666666666666 +1072,1702121565456.0,1.0,0.016666666666666666 +1073,1702121625456.0,1.0,0.016666666666666666 +1074,1702121685456.0,1.0,0.016666666666666666 +1075,1702121745456.0,1.0,0.016666666666666666 +1076,1702121805456.0,1.0,0.016666666666666666 +1077,1702121865456.0,1.0,0.016666666666666666 +1078,1702121925456.0,1.0,0.016666666666666666 +1079,1702121985456.0,1.0,0.016666666666666666 +1080,1702122045456.0,1.0,0.016666666666666666 +1081,1702122105456.0,1.0,0.016666666666666666 +1082,1702122165456.0,1.0,0.016666666666666666 +1083,1702122225456.0,1.0,0.016666666666666666 +1084,1702122285456.0,1.0,0.016666666666666666 +1085,1702122345456.0,1.0,0.016666666666666666 +1086,1702122405456.0,1.0,0.016666666666666666 +1087,1702122465456.0,1.0,0.016666666666666666 +1088,1702122525456.0,1.0,0.016666666666666666 +1089,1702122585456.0,1.0,0.016666666666666666 +1090,1702122645456.0,1.0,0.016666666666666666 +1091,1702122705456.0,1.0,0.016666666666666666 +1092,1702122765456.0,1.0,0.016666666666666666 +1093,1702122825456.0,1.0,0.016666666666666666 +1094,1702122885456.0,1.0,0.016666666666666666 +1095,1702122945456.0,1.0,0.016666666666666666 +1096,1702123005456.0,1.0,0.016666666666666666 +1097,1702123065456.0,1.0,0.016666666666666666 +1098,1702123125456.0,1.0,0.016666666666666666 +1099,1702123185456.0,1.0,0.016666666666666666 +1100,1702123245456.0,1.0,0.016666666666666666 +1101,1702123305456.0,1.0,0.016666666666666666 +1102,1702123365456.0,1.0,0.016666666666666666 +1103,1702123425456.0,1.0,0.016666666666666666 +1104,1702123485456.0,1.0,0.016666666666666666 +1105,1702123545456.0,1.0,0.016666666666666666 +1106,1702123605456.0,1.0,0.016666666666666666 +1107,1702123665456.0,1.0,0.016666666666666666 +1108,1702123725456.0,1.0,0.016666666666666666 +1109,1702123785456.0,1.0,0.016666666666666666 +1110,1702123845456.0,1.0,0.016666666666666666 +1111,1702123905456.0,1.0,0.016666666666666666 +1112,1702123965456.0,1.0,0.016666666666666666 +1113,1702124025456.0,1.0,0.016666666666666666 +1114,1702124085456.0,1.0,0.016666666666666666 +1115,1702124145456.0,1.0,0.016666666666666666 +1116,1702124205456.0,1.0,0.016666666666666666 +1117,1702124265456.0,1.0,0.016666666666666666 +1118,1702124325456.0,1.0,0.016666666666666666 +1119,1702124385456.0,1.0,0.016666666666666666 +1120,1702124445456.0,1.0,0.016666666666666666 +1121,1702124505456.0,1.0,0.016666666666666666 +1122,1702124565456.0,1.0,0.016666666666666666 +1123,1702124625456.0,1.0,0.016666666666666666 +1124,1702124685456.0,1.0,0.016666666666666666 +1125,1702124745456.0,1.0,0.016666666666666666 +1126,1702124805456.0,1.0,0.016666666666666666 +1127,1702124865456.0,1.0,0.016666666666666666 +1128,1702124925456.0,1.0,0.016666666666666666 +1129,1702124985456.0,1.0,0.016666666666666666 +1130,1702125045456.0,1.0,0.016666666666666666 +1131,1702125105456.0,1.0,0.016666666666666666 +1132,1702125165456.0,1.0,0.016666666666666666 +1133,1702125225456.0,1.0,0.016666666666666666 +1134,1702125285456.0,1.0,0.016666666666666666 +1135,1702125345456.0,1.0,0.016666666666666666 +1136,1702125405456.0,1.0,0.016666666666666666 +1137,1702125465456.0,1.0,0.016666666666666666 +1138,1702125525456.0,1.0,0.016666666666666666 +1139,1702125585456.0,1.0,0.016666666666666666 +1140,1702125645456.0,1.0,0.016666666666666666 +1141,1702125705456.0,1.0,0.016666666666666666 +1142,1702125765456.0,1.0,0.016666666666666666 +1143,1702125825456.0,1.0,0.016666666666666666 +1144,1702125885456.0,1.0,0.016666666666666666 +1145,1702125945456.0,1.0,0.016666666666666666 +1146,1702126005456.0,1.0,0.016666666666666666 +1147,1702126065456.0,1.0,0.016666666666666666 +1148,1702126125456.0,1.0,0.016666666666666666 +1149,1702126185456.0,1.0,0.016666666666666666 +1150,1702126245456.0,1.0,0.016666666666666666 +1151,1702126305456.0,1.0,0.016666666666666666 +1152,1702126365456.0,1.0,0.016666666666666666 +1153,1702126425456.0,1.0,0.016666666666666666 +1154,1702126485456.0,1.0,0.016666666666666666 +1155,1702126545456.0,1.0,0.016666666666666666 +1156,1702126605456.0,1.0,0.016666666666666666 +1157,1702126665456.0,1.0,0.016666666666666666 +1158,1702126725456.0,1.0,0.016666666666666666 +1159,1702126785456.0,1.0,0.016666666666666666 +1160,1702126845456.0,1.0,0.016666666666666666 +1161,1702126905456.0,1.0,0.016666666666666666 +1162,1702126965456.0,1.0,0.016666666666666666 +1163,1702127025456.0,1.0,0.016666666666666666 +1164,1702127085456.0,1.0,0.016666666666666666 +1165,1702127145456.0,1.0,0.016666666666666666 +1166,1702127205456.0,1.0,0.016666666666666666 +1167,1702127265456.0,1.0,0.016666666666666666 +1168,1702127325456.0,1.0,0.016666666666666666 +1169,1702127385456.0,1.0,0.016666666666666666 +1170,1702127445456.0,1.0,0.016666666666666666 +1171,1702127505456.0,1.0,0.016666666666666666 +1172,1702127565456.0,1.0,0.016666666666666666 +1173,1702127625456.0,1.0,0.016666666666666666 +1174,1702127685456.0,1.0,0.016666666666666666 +1175,1702127745456.0,1.0,0.016666666666666666 +1176,1702127805456.0,1.0,0.016666666666666666 +1177,1702127865456.0,1.0,0.016666666666666666 +1178,1702127925456.0,1.0,0.016666666666666666 +1179,1702127985456.0,1.0,0.016666666666666666 +1180,1702128045456.0,1.0,0.016666666666666666 +1181,1702128105456.0,1.0,0.016666666666666666 +1182,1702128165456.0,1.0,0.016666666666666666 +1183,1702128225456.0,1.0,0.016666666666666666 +1184,1702128285456.0,1.0,0.016666666666666666 +1185,1702128345456.0,1.0,0.016666666666666666 +1186,1702128405456.0,1.0,0.016666666666666666 +1187,1702128465456.0,1.0,0.016666666666666666 +1188,1702128525456.0,1.0,0.016666666666666666 +1189,1702128585456.0,1.0,0.016666666666666666 +1190,1702128645456.0,1.0,0.016666666666666666 +1191,1702128705456.0,1.0,0.016666666666666666 +1192,1702128765456.0,1.0,0.016666666666666666 +1193,1702128825456.0,1.0,0.016666666666666666 +1194,1702128885456.0,1.0,0.016666666666666666 +1195,1702128945456.0,1.0,0.016666666666666666 +1196,1702129005456.0,1.0,0.016666666666666666 +1197,1702129065456.0,1.0,0.016666666666666666 +1198,1702129125456.0,1.0,0.016666666666666666 +1199,1702129185456.0,1.0,0.016666666666666666 +1200,1702129245456.0,1.0,0.016666666666666666 +1201,1702129305456.0,1.0,0.016666666666666666 +1202,1702129365456.0,1.0,0.016666666666666666 +1203,1702129425456.0,1.0,0.016666666666666666 +1204,1702129485456.0,1.0,0.016666666666666666 +1205,1702129545456.0,1.0,0.016666666666666666 +1206,1702129605456.0,1.0,0.016666666666666666 +1207,1702129665456.0,1.0,0.016666666666666666 +1208,1702129725456.0,1.0,0.016666666666666666 +1209,1702129785456.0,1.0,0.016666666666666666 +1210,1702129845456.0,1.0,0.016666666666666666 +1211,1702129905456.0,1.0,0.016666666666666666 +1212,1702129965456.0,1.0,0.016666666666666666 +1213,1702130025456.0,1.0,0.016666666666666666 +1214,1702130085456.0,1.0,0.016666666666666666 +1215,1702130145456.0,1.0,0.016666666666666666 +1216,1702130205456.0,1.0,0.016666666666666666 +1217,1702130265456.0,1.0,0.016666666666666666 +1218,1702130325456.0,1.0,0.016666666666666666 +1219,1702130385456.0,1.0,0.016666666666666666 +1220,1702130445456.0,1.0,0.016666666666666666 +1221,1702130505456.0,1.0,0.016666666666666666 +1222,1702130565456.0,1.0,0.016666666666666666 +1223,1702130625456.0,1.0,0.016666666666666666 +1224,1702130685456.0,1.0,0.016666666666666666 +1225,1702130745456.0,1.0,0.016666666666666666 +1226,1702130805456.0,1.0,0.016666666666666666 +1227,1702130865456.0,1.0,0.016666666666666666 +1228,1702130925456.0,1.0,0.016666666666666666 +1229,1702130985456.0,1.0,0.016666666666666666 +1230,1702131045456.0,1.0,0.016666666666666666 +1231,1702131105456.0,1.0,0.016666666666666666 +1232,1702131165456.0,1.0,0.016666666666666666 +1233,1702131225456.0,1.0,0.016666666666666666 +1234,1702131285456.0,1.0,0.016666666666666666 +1235,1702131345456.0,1.0,0.016666666666666666 +1236,1702131405456.0,1.0,0.016666666666666666 +1237,1702131465456.0,1.0,0.016666666666666666 +1238,1702131525456.0,1.0,0.016666666666666666 +1239,1702131585456.0,1.0,0.016666666666666666 +1240,1702131645456.0,1.0,0.016666666666666666 +1241,1702131705456.0,1.0,0.016666666666666666 +1242,1702131765456.0,1.0,0.016666666666666666 +1243,1702131825456.0,1.0,0.016666666666666666 +1244,1702131885456.0,1.0,0.016666666666666666 +1245,1702131945456.0,1.0,0.016666666666666666 +1246,1702132005456.0,1.0,0.016666666666666666 +1247,1702132065456.0,1.0,0.016666666666666666 +1248,1702132125456.0,1.0,0.016666666666666666 +1249,1702132185456.0,1.0,0.016666666666666666 +1250,1702132245456.0,1.0,0.016666666666666666 +1251,1702132305456.0,1.0,0.016666666666666666 +1252,1702132365456.0,1.0,0.016666666666666666 +1253,1702132425456.0,1.0,0.016666666666666666 +1254,1702132485456.0,1.0,0.016666666666666666 +1255,1702132545456.0,1.0,0.016666666666666666 +1256,1702132605456.0,1.0,0.016666666666666666 +1257,1702132665456.0,1.0,0.016666666666666666 +1258,1702132725456.0,1.0,0.016666666666666666 +1259,1702132785456.0,1.0,0.016666666666666666 +1260,1702132845456.0,1.0,0.016666666666666666 +1261,1702132905456.0,1.0,0.016666666666666666 +1262,1702132965456.0,1.0,0.016666666666666666 +1263,1702133025456.0,1.0,0.016666666666666666 +1264,1702133085456.0,1.0,0.016666666666666666 +1265,1702133145456.0,1.0,0.016666666666666666 +1266,1702133205456.0,1.0,0.016666666666666666 +1267,1702133265456.0,1.0,0.016666666666666666 +1268,1702133325456.0,1.0,0.016666666666666666 +1269,1702133385456.0,1.0,0.016666666666666666 +1270,1702133445456.0,1.0,0.016666666666666666 +1271,1702133505456.0,1.0,0.016666666666666666 +1272,1702133565456.0,1.0,0.016666666666666666 +1273,1702133625456.0,1.0,0.016666666666666666 +1274,1702133685456.0,1.0,0.016666666666666666 +1275,1702133745456.0,1.0,0.016666666666666666 +1276,1702133805456.0,1.0,0.016666666666666666 +1277,1702133865456.0,1.0,0.016666666666666666 +1278,1702133925456.0,1.0,0.016666666666666666 +1279,1702133985456.0,1.0,0.016666666666666666 +1280,1702134045456.0,1.0,0.016666666666666666 +1281,1702134105456.0,1.0,0.016666666666666666 +1282,1702134165456.0,1.0,0.016666666666666666 +1283,1702134225456.0,1.0,0.016666666666666666 +1284,1702134285456.0,1.0,0.016666666666666666 +1285,1702134345456.0,1.0,0.016666666666666666 +1286,1702134405456.0,1.0,0.016666666666666666 +1287,1702134465456.0,1.0,0.016666666666666666 +1288,1702134525456.0,1.0,0.016666666666666666 +1289,1702134585456.0,1.0,0.016666666666666666 +1290,1702134645456.0,1.0,0.016666666666666666 +1291,1702134705456.0,1.0,0.016666666666666666 +1292,1702134765456.0,1.0,0.016666666666666666 +1293,1702134825456.0,1.0,0.016666666666666666 +1294,1702134885456.0,1.0,0.016666666666666666 +1295,1702134945456.0,1.0,0.016666666666666666 +1296,1702135005456.0,1.0,0.016666666666666666 +1297,1702135065456.0,1.0,0.016666666666666666 +1298,1702135125456.0,1.0,0.016666666666666666 +1299,1702135185456.0,1.0,0.016666666666666666 +1300,1702135245456.0,1.0,0.016666666666666666 +1301,1702135305456.0,1.0,0.016666666666666666 +1302,1702135365456.0,1.0,0.016666666666666666 +1303,1702135425456.0,1.0,0.016666666666666666 +1304,1702135485456.0,1.0,0.016666666666666666 +1305,1702135545456.0,1.0,0.016666666666666666 +1306,1702135605456.0,1.0,0.016666666666666666 +1307,1702135665456.0,1.0,0.016666666666666666 +1308,1702135725456.0,1.0,0.016666666666666666 +1309,1702135785456.0,1.0,0.016666666666666666 +1310,1702135845456.0,1.0,0.016666666666666666 +1311,1702135905456.0,1.0,0.016666666666666666 +1312,1702135965456.0,1.0,0.016666666666666666 +1313,1702136025456.0,1.0,0.016666666666666666 +1314,1702136085456.0,1.0,0.016666666666666666 +1315,1702136145456.0,1.0,0.016666666666666666 +1316,1702136205456.0,1.0,0.016666666666666666 +1317,1702136265456.0,1.0,0.016666666666666666 +1318,1702136325456.0,1.0,0.016666666666666666 +1319,1702136385456.0,1.0,0.016666666666666666 +1320,1702136445456.0,1.0,0.016666666666666666 +1321,1702136505456.0,1.0,0.016666666666666666 +1322,1702136565456.0,1.0,0.016666666666666666 +1323,1702136625456.0,1.0,0.016666666666666666 +1324,1702136685456.0,1.0,0.016666666666666666 +1325,1702136745456.0,1.0,0.016666666666666666 +1326,1702136805456.0,1.0,0.016666666666666666 +1327,1702136865456.0,1.0,0.016666666666666666 +1328,1702136925456.0,1.0,0.016666666666666666 +1329,1702136985456.0,1.0,0.016666666666666666 +1330,1702137045456.0,1.0,0.016666666666666666 +1331,1702137105456.0,1.0,0.016666666666666666 +1332,1702137165456.0,1.0,0.016666666666666666 +1333,1702137225456.0,1.0,0.016666666666666666 +1334,1702137285456.0,1.0,0.016666666666666666 +1335,1702137345456.0,1.0,0.016666666666666666 +1336,1702137405456.0,1.0,0.016666666666666666 +1337,1702137465456.0,1.0,0.016666666666666666 +1338,1702137525456.0,1.0,0.016666666666666666 +1339,1702137585456.0,1.0,0.016666666666666666 +1340,1702137645456.0,1.0,0.016666666666666666 +1341,1702137705456.0,1.0,0.016666666666666666 +1342,1702137765456.0,1.0,0.016666666666666666 +1343,1702137825456.0,1.0,0.016666666666666666 +1344,1702137885456.0,1.0,0.016666666666666666 +1345,1702137945456.0,1.0,0.016666666666666666 +1346,1702138005456.0,1.0,0.016666666666666666 +1347,1702138065456.0,1.0,0.016666666666666666 +1348,1702138125456.0,1.0,0.016666666666666666 +1349,1702138185456.0,1.0,0.016666666666666666 +1350,1702138245456.0,1.0,0.016666666666666666 +1351,1702138305456.0,1.0,0.016666666666666666 +1352,1702138365456.0,1.0,0.016666666666666666 +1353,1702138425456.0,1.0,0.016666666666666666 +1354,1702138485456.0,1.0,0.016666666666666666 +1355,1702138545456.0,1.0,0.016666666666666666 +1356,1702138605456.0,1.0,0.016666666666666666 +1357,1702138665456.0,1.0,0.016666666666666666 +1358,1702138725456.0,1.0,0.016666666666666666 +1359,1702138785456.0,1.0,0.016666666666666666 +1360,1702138845456.0,1.0,0.016666666666666666 +1361,1702138905456.0,1.0,0.016666666666666666 +1362,1702138965456.0,1.0,0.016666666666666666 +1363,1702139025456.0,1.0,0.016666666666666666 +1364,1702139085456.0,1.0,0.016666666666666666 +1365,1702139145456.0,1.0,0.016666666666666666 +1366,1702139205456.0,1.0,0.016666666666666666 +1367,1702139265456.0,1.0,0.016666666666666666 +1368,1702139325456.0,1.0,0.016666666666666666 +1369,1702139385456.0,1.0,0.016666666666666666 +1370,1702139445456.0,1.0,0.016666666666666666 +1371,1702139505456.0,1.0,0.016666666666666666 +1372,1702139565456.0,1.0,0.016666666666666666 +1373,1702139625456.0,1.0,0.016666666666666666 +1374,1702139685456.0,1.0,0.016666666666666666 +1375,1702139745456.0,1.0,0.016666666666666666 +1376,1702139805456.0,1.0,0.016666666666666666 +1377,1702139865456.0,1.0,0.016666666666666666 +1378,1702139925456.0,1.0,0.016666666666666666 +1379,1702139985456.0,1.0,0.016666666666666666 +1380,1702140045456.0,1.0,0.016666666666666666 +1381,1702140105456.0,1.0,0.016666666666666666 +1382,1702140165456.0,1.0,0.016666666666666666 +1383,1702140225456.0,1.0,0.016666666666666666 +1384,1702140285456.0,1.0,0.016666666666666666 +1385,1702140345456.0,1.0,0.016666666666666666 +1386,1702140405456.0,1.0,0.016666666666666666 +1387,1702140465456.0,1.0,0.016666666666666666 +1388,1702140525456.0,1.0,0.016666666666666666 +1389,1702140585456.0,1.0,0.016666666666666666 +1390,1702140645456.0,1.0,0.016666666666666666 +1391,1702140705456.0,1.0,0.016666666666666666 +1392,1702140765456.0,1.0,0.016666666666666666 +1393,1702140825456.0,1.0,0.016666666666666666 +1394,1702140885456.0,1.0,0.016666666666666666 +1395,1702140945456.0,1.0,0.016666666666666666 +1396,1702141005456.0,1.0,0.016666666666666666 +1397,1702141065456.0,1.0,0.016666666666666666 +1398,1702141125456.0,1.0,0.016666666666666666 +1399,1702141185456.0,1.0,0.016666666666666666 +1400,1702141245456.0,1.0,0.016666666666666666 +1401,1702141305456.0,1.0,0.016666666666666666 +1402,1702141365456.0,1.0,0.016666666666666666 +1403,1702141425456.0,1.0,0.016666666666666666 +1404,1702141485456.0,1.0,0.016666666666666666 +1405,1702141545456.0,1.0,0.016666666666666666 +1406,1702141605456.0,1.0,0.016666666666666666 +1407,1702141665456.0,1.0,0.016666666666666666 +1408,1702141725456.0,1.0,0.016666666666666666 +1409,1702141785456.0,1.0,0.016666666666666666 +1410,1702141845456.0,1.0,0.016666666666666666 +1411,1702141905456.0,1.0,0.016666666666666666 +1412,1702141965456.0,1.0,0.016666666666666666 +1413,1702142025456.0,1.0,0.016666666666666666 +1414,1702142085456.0,1.0,0.016666666666666666 +1415,1702142145456.0,1.0,0.016666666666666666 +1416,1702142205456.0,1.0,0.016666666666666666 +1417,1702142265456.0,1.0,0.016666666666666666 +1418,1702142325456.0,1.0,0.016666666666666666 +1419,1702142385456.0,1.0,0.016666666666666666 +1420,1702142445456.0,1.0,0.016666666666666666 +1421,1702142505456.0,1.0,0.016666666666666666 +1422,1702142565456.0,1.0,0.016666666666666666 +1423,1702142625456.0,1.0,0.016666666666666666 +1424,1702142685456.0,1.0,0.016666666666666666 +1425,1702142745456.0,1.0,0.016666666666666666 +1426,1702142805456.0,1.0,0.016666666666666666 +1427,1702142865456.0,1.0,0.016666666666666666 +1428,1702142925456.0,1.0,0.016666666666666666 +1429,1702142985456.0,1.0,0.016666666666666666 +1430,1702143045456.0,1.0,0.016666666666666666 +1431,1702143105456.0,1.0,0.016666666666666666 +1432,1702143165456.0,1.0,0.016666666666666666 +1433,1702143225456.0,1.0,0.016666666666666666 +1434,1702143285456.0,1.0,0.016666666666666666 +1435,1702143345456.0,1.0,0.016666666666666666 +1436,1702143405456.0,1.0,0.016666666666666666 +1437,1702143465456.0,1.0,0.016666666666666666 +1438,1702143525456.0,1.0,0.016666666666666666 +1439,1702143585456.0,1.0,0.016666666666666666 +1440,1702143645456.0,1.0,0.016666666666666666 +1441,1702143705456.0,1.0,0.016666666666666666 +1442,1702143765456.0,1.0,0.016666666666666666 +1443,1702143825456.0,1.0,0.016666666666666666 +1444,1702143885456.0,1.0,0.016666666666666666 +1445,1702143945456.0,1.0,0.016666666666666666 +1446,1702144005456.0,1.0,0.016666666666666666 +1447,1702144065456.0,1.0,0.016666666666666666 +1448,1702144125456.0,1.0,0.016666666666666666 +1449,1702144185456.0,1.0,0.016666666666666666 +1450,1702144245456.0,1.0,0.016666666666666666 +1451,1702144305456.0,1.0,0.016666666666666666 +1452,1702144365456.0,1.0,0.016666666666666666 +1453,1702144425456.0,1.0,0.016666666666666666 +1454,1702144485456.0,1.0,0.016666666666666666 +1455,1702144545456.0,1.0,0.016666666666666666 +1456,1702144605456.0,1.0,0.016666666666666666 +1457,1702144665456.0,1.0,0.016666666666666666 +1458,1702144725456.0,1.0,0.016666666666666666 +1459,1702144785456.0,1.0,0.016666666666666666 +1460,1702144845456.0,1.0,0.016666666666666666 +1461,1702144905456.0,1.0,0.016666666666666666 +1462,1702144965456.0,1.0,0.016666666666666666 +1463,1702145025456.0,1.0,0.016666666666666666 +1464,1702145085456.0,1.0,0.016666666666666666 +1465,1702145145456.0,1.0,0.016666666666666666 +1466,1702145205456.0,1.0,0.016666666666666666 +1467,1702145265456.0,1.0,0.016666666666666666 +1468,1702145325456.0,1.0,0.016666666666666666 +1469,1702145385456.0,1.0,0.016666666666666666 +1470,1702145445456.0,1.0,0.016666666666666666 +1471,1702145505456.0,1.0,0.016666666666666666 +1472,1702145565456.0,1.0,0.016666666666666666 +1473,1702145625456.0,1.0,0.016666666666666666 +1474,1702145685456.0,1.0,0.016666666666666666 +1475,1702145745456.0,1.0,0.016666666666666666 +1476,1702145805456.0,1.0,0.016666666666666666 +1477,1702145865456.0,1.0,0.016666666666666666 +1478,1702145925456.0,1.0,0.016666666666666666 +1479,1702145985456.0,1.0,0.016666666666666666 +1480,1702146045456.0,1.0,0.016666666666666666 +1481,1702146105456.0,1.0,0.016666666666666666 +1482,1702146165456.0,1.0,0.016666666666666666 +1483,1702146225456.0,1.0,0.016666666666666666 +1484,1702146285456.0,1.0,0.016666666666666666 +1485,1702146345456.0,1.0,0.016666666666666666 +1486,1702146405456.0,1.0,0.016666666666666666 +1487,1702146465456.0,1.0,0.016666666666666666 +1488,1702146525456.0,1.0,0.016666666666666666 +1489,1702146585456.0,1.0,0.016666666666666666 +1490,1702146645456.0,1.0,0.016666666666666666 +1491,1702146705456.0,1.0,0.016666666666666666 +1492,1702146765456.0,1.0,0.016666666666666666 +1493,1702146825456.0,1.0,0.016666666666666666 +1494,1702146885456.0,1.0,0.016666666666666666 +1495,1702146945456.0,1.0,0.016666666666666666 +1496,1702147005456.0,1.0,0.016666666666666666 +1497,1702147065456.0,1.0,0.016666666666666666 +1498,1702147125456.0,1.0,0.016666666666666666 +1499,1702147185456.0,1.0,0.016666666666666666 +1500,1702147245456.0,1.0,0.016666666666666666 +1501,1702147305456.0,1.0,0.016666666666666666 +1502,1702147365456.0,1.0,0.016666666666666666 +1503,1702147425456.0,1.0,0.016666666666666666 +1504,1702147485456.0,1.0,0.016666666666666666 +1505,1702147545456.0,1.0,0.016666666666666666 +1506,1702147605456.0,1.0,0.016666666666666666 +1507,1702147665456.0,1.0,0.016666666666666666 +1508,1702147725456.0,1.0,0.016666666666666666 +1509,1702147785456.0,1.0,0.016666666666666666 +1510,1702147845456.0,1.0,0.016666666666666666 +1511,1702147905456.0,1.0,0.016666666666666666 +1512,1702147965456.0,1.0,0.016666666666666666 +1513,1702148025456.0,1.0,0.016666666666666666 +1514,1702148085456.0,1.0,0.016666666666666666 +1515,1702148145456.0,1.0,0.016666666666666666 +1516,1702148205456.0,1.0,0.016666666666666666 +1517,1702148265456.0,1.0,0.016666666666666666 +1518,1702148325456.0,1.0,0.016666666666666666 +1519,1702148385456.0,1.0,0.016666666666666666 +1520,1702148445456.0,1.0,0.016666666666666666 +1521,1702148505456.0,1.0,0.016666666666666666 +1522,1702148565456.0,1.0,0.016666666666666666 +1523,1702148625456.0,1.0,0.016666666666666666 +1524,1702148685456.0,1.0,0.016666666666666666 +1525,1702148745456.0,1.0,0.016666666666666666 +1526,1702148805456.0,1.0,0.016666666666666666 +1527,1702148865456.0,1.0,0.016666666666666666 +1528,1702148925456.0,1.0,0.016666666666666666 +1529,1702148985456.0,1.0,0.016666666666666666 +1530,1702149045456.0,1.0,0.016666666666666666 +1531,1702149105456.0,1.0,0.016666666666666666 +1532,1702149165456.0,1.0,0.016666666666666666 +1533,1702149225456.0,1.0,0.016666666666666666 +1534,1702149285456.0,1.0,0.016666666666666666 +1535,1702149345456.0,1.0,0.016666666666666666 +1536,1702149405456.0,1.0,0.016666666666666666 +1537,1702149465456.0,1.0,0.016666666666666666 +1538,1702149525456.0,1.0,0.016666666666666666 +1539,1702149585456.0,1.0,0.016666666666666666 +1540,1702149645456.0,1.0,0.016666666666666666 +1541,1702149705456.0,1.0,0.016666666666666666 +1542,1702149765456.0,1.0,0.016666666666666666 +1543,1702149825456.0,1.0,0.016666666666666666 +1544,1702149885456.0,1.0,0.016666666666666666 +1545,1702149945456.0,1.0,0.016666666666666666 +1546,1702150005456.0,1.0,0.016666666666666666 +1547,1702150065456.0,1.0,0.016666666666666666 +1548,1702150125456.0,1.0,0.016666666666666666 +1549,1702150185456.0,1.0,0.016666666666666666 +1550,1702150245456.0,1.0,0.016666666666666666 +1551,1702150305456.0,1.0,0.016666666666666666 +1552,1702150365456.0,1.0,0.016666666666666666 +1553,1702150425456.0,1.0,0.016666666666666666 +1554,1702150485456.0,1.0,0.016666666666666666 +1555,1702150545456.0,1.0,0.016666666666666666 +1556,1702150605456.0,1.0,0.016666666666666666 +1557,1702150665456.0,1.0,0.016666666666666666 +1558,1702150725456.0,1.0,0.016666666666666666 +1559,1702150785456.0,1.0,0.016666666666666666 +1560,1702150845456.0,1.0,0.016666666666666666 +1561,1702150905456.0,1.0,0.016666666666666666 +1562,1702150965456.0,1.0,0.016666666666666666 +1563,1702151025456.0,1.0,0.016666666666666666 +1564,1702151085456.0,1.0,0.016666666666666666 +1565,1702151145456.0,1.0,0.016666666666666666 +1566,1702151205456.0,1.0,0.016666666666666666 +1567,1702151265456.0,1.0,0.016666666666666666 +1568,1702151325456.0,1.0,0.016666666666666666 +1569,1702151385456.0,1.0,0.016666666666666666 +1570,1702151445456.0,1.0,0.016666666666666666 +1571,1702151505456.0,1.0,0.016666666666666666 +1572,1702151565456.0,1.0,0.016666666666666666 +1573,1702151625456.0,1.0,0.016666666666666666 +1574,1702151685456.0,1.0,0.016666666666666666 +1575,1702151745456.0,1.0,0.016666666666666666 +1576,1702151805456.0,1.0,0.016666666666666666 +1577,1702151865456.0,1.0,0.016666666666666666 +1578,1702151925456.0,1.0,0.016666666666666666 +1579,1702151985456.0,1.0,0.016666666666666666 +1580,1702152045456.0,1.0,0.016666666666666666 +1581,1702152105456.0,1.0,0.016666666666666666 +1582,1702152165456.0,1.0,0.016666666666666666 +1583,1702152225456.0,1.0,0.016666666666666666 +1584,1702152285456.0,1.0,0.016666666666666666 +1585,1702152345456.0,1.0,0.016666666666666666 +1586,1702152405456.0,1.0,0.016666666666666666 +1587,1702152465456.0,1.0,0.016666666666666666 +1588,1702152525456.0,1.0,0.016666666666666666 +1589,1702152585456.0,1.0,0.016666666666666666 +1590,1702152645456.0,1.0,0.016666666666666666 +1591,1702152705456.0,1.0,0.016666666666666666 +1592,1702152765456.0,1.0,0.016666666666666666 +1593,1702152825456.0,1.0,0.016666666666666666 +1594,1702152885456.0,1.0,0.016666666666666666 +1595,1702152945456.0,1.0,0.016666666666666666 +1596,1702153005456.0,1.0,0.016666666666666666 +1597,1702153065456.0,1.0,0.016666666666666666 +1598,1702153125456.0,1.0,0.016666666666666666 +1599,1702153185456.0,1.0,0.016666666666666666 +1600,1702153245456.0,1.0,0.016666666666666666 +1601,1702153305456.0,1.0,0.016666666666666666 +1602,1702153365456.0,1.0,0.016666666666666666 +1603,1702153425456.0,1.0,0.016666666666666666 +1604,1702153485456.0,1.0,0.016666666666666666 +1605,1702153545456.0,1.0,0.016666666666666666 +1606,1702153605456.0,1.0,0.016666666666666666 +1607,1702153665456.0,1.0,0.016666666666666666 +1608,1702153725456.0,1.0,0.016666666666666666 +1609,1702153785456.0,1.0,0.016666666666666666 +1610,1702153845456.0,1.0,0.016666666666666666 +1611,1702153905456.0,1.0,0.016666666666666666 +1612,1702153965456.0,1.0,0.016666666666666666 +1613,1702154025456.0,1.0,0.016666666666666666 +1614,1702154085456.0,1.0,0.016666666666666666 +1615,1702154145456.0,1.0,0.016666666666666666 +1616,1702154205456.0,1.0,0.016666666666666666 +1617,1702154265456.0,1.0,0.016666666666666666 +1618,1702154325456.0,1.0,0.016666666666666666 +1619,1702154385456.0,1.0,0.016666666666666666 +1620,1702154445456.0,1.0,0.016666666666666666 +1621,1702154505456.0,1.0,0.016666666666666666 +1622,1702154565456.0,1.0,0.016666666666666666 +1623,1702154625456.0,1.0,0.016666666666666666 +1624,1702154685456.0,1.0,0.016666666666666666 +1625,1702154745456.0,1.0,0.016666666666666666 +1626,1702154805456.0,1.0,0.016666666666666666 +1627,1702154865456.0,1.0,0.016666666666666666 +1628,1702154925456.0,1.0,0.016666666666666666 +1629,1702154985456.0,1.0,0.016666666666666666 +1630,1702155045456.0,1.0,0.016666666666666666 +1631,1702155105456.0,1.0,0.016666666666666666 +1632,1702155165456.0,1.0,0.016666666666666666 +1633,1702155225456.0,1.0,0.016666666666666666 +1634,1702155285456.0,1.0,0.016666666666666666 +1635,1702155345456.0,1.0,0.016666666666666666 +1636,1702155405456.0,1.0,0.016666666666666666 +1637,1702155465456.0,1.0,0.016666666666666666 +1638,1702155525456.0,1.0,0.016666666666666666 +1639,1702155585456.0,1.0,0.016666666666666666 +1640,1702155645456.0,1.0,0.016666666666666666 +1641,1702155705456.0,1.0,0.016666666666666666 +1642,1702155765456.0,1.0,0.016666666666666666 +1643,1702155825456.0,1.0,0.016666666666666666 +1644,1702155885456.0,1.0,0.016666666666666666 +1645,1702155945456.0,1.0,0.016666666666666666 +1646,1702156005456.0,1.0,0.016666666666666666 +1647,1702156065456.0,1.0,0.016666666666666666 +1648,1702156125456.0,1.0,0.016666666666666666 +1649,1702156185456.0,1.0,0.016666666666666666 +1650,1702156245456.0,1.0,0.016666666666666666 +1651,1702156305456.0,1.0,0.016666666666666666 +1652,1702156365456.0,1.0,0.016666666666666666 +1653,1702156425456.0,1.0,0.016666666666666666 +1654,1702156485456.0,1.0,0.016666666666666666 +1655,1702156545456.0,1.0,0.016666666666666666 +1656,1702156605456.0,1.0,0.016666666666666666 +1657,1702156665456.0,1.0,0.016666666666666666 +1658,1702156725456.0,1.0,0.016666666666666666 +1659,1702156785456.0,1.0,0.016666666666666666 +1660,1702156845456.0,1.0,0.016666666666666666 +1661,1702156905456.0,1.0,0.016666666666666666 +1662,1702156965456.0,1.0,0.016666666666666666 +1663,1702157025456.0,1.0,0.016666666666666666 +1664,1702157085456.0,1.0,0.016666666666666666 +1665,1702157145456.0,1.0,0.016666666666666666 +1666,1702157205456.0,1.0,0.016666666666666666 +1667,1702157265456.0,1.0,0.016666666666666666 +1668,1702157325456.0,1.0,0.016666666666666666 +1669,1702157385456.0,1.0,0.016666666666666666 +1670,1702157445456.0,1.0,0.016666666666666666 +1671,1702157505456.0,1.0,0.016666666666666666 +1672,1702157565456.0,1.0,0.016666666666666666 +1673,1702157625456.0,1.0,0.016666666666666666 +1674,1702157685456.0,1.0,0.016666666666666666 +1675,1702157745456.0,1.0,0.016666666666666666 +1676,1702157805456.0,1.0,0.016666666666666666 +1677,1702157865456.0,1.0,0.016666666666666666 +1678,1702157925456.0,1.0,0.016666666666666666 +1679,1702157985456.0,1.0,0.016666666666666666 +1680,1702158045456.0,1.0,0.016666666666666666 +1681,1702158105456.0,1.0,0.016666666666666666 +1682,1702158165456.0,1.0,0.016666666666666666 +1683,1702158225456.0,1.0,0.016666666666666666 +1684,1702158285456.0,1.0,0.016666666666666666 +1685,1702158345456.0,1.0,0.016666666666666666 +1686,1702158405456.0,1.0,0.016666666666666666 +1687,1702158465456.0,1.0,0.016666666666666666 +1688,1702158525456.0,1.0,0.016666666666666666 +1689,1702158585456.0,1.0,0.016666666666666666 +1690,1702158645456.0,1.0,0.016666666666666666 +1691,1702158705456.0,1.0,0.016666666666666666 +1692,1702158765456.0,1.0,0.016666666666666666 +1693,1702158825456.0,1.0,0.016666666666666666 +1694,1702158885456.0,1.0,0.016666666666666666 +1695,1702158945456.0,1.0,0.016666666666666666 +1696,1702159005456.0,1.0,0.016666666666666666 +1697,1702159065456.0,1.0,0.016666666666666666 +1698,1702159125456.0,1.0,0.016666666666666666 +1699,1702159185456.0,1.0,0.016666666666666666 +1700,1702159245456.0,1.0,0.016666666666666666 +1701,1702159305456.0,1.0,0.016666666666666666 +1702,1702159365456.0,1.0,0.016666666666666666 +1703,1702159425456.0,1.0,0.016666666666666666 +1704,1702159485456.0,1.0,0.016666666666666666 +1705,1702159545456.0,1.0,0.016666666666666666 +1706,1702159605456.0,1.0,0.016666666666666666 +1707,1702159665456.0,1.0,0.016666666666666666 +1708,1702159725456.0,1.0,0.016666666666666666 +1709,1702159785456.0,1.0,0.016666666666666666 +1710,1702159845456.0,1.0,0.016666666666666666 +1711,1702159905456.0,1.0,0.016666666666666666 +1712,1702159965456.0,1.0,0.016666666666666666 +1713,1702160025456.0,1.0,0.016666666666666666 +1714,1702160085456.0,1.0,0.016666666666666666 +1715,1702160145456.0,1.0,0.016666666666666666 +1716,1702160205456.0,1.0,0.016666666666666666 +1717,1702160265456.0,1.0,0.016666666666666666 +1718,1702160325456.0,1.0,0.016666666666666666 +1719,1702160385456.0,1.0,0.016666666666666666 +1720,1702160445456.0,1.0,0.016666666666666666 +1721,1702160505456.0,1.0,0.016666666666666666 +1722,1702160565456.0,1.0,0.016666666666666666 +1723,1702160625456.0,1.0,0.016666666666666666 +1724,1702160685456.0,1.0,0.016666666666666666 +1725,1702160745456.0,1.0,0.016666666666666666 +1726,1702160805456.0,1.0,0.016666666666666666 +1727,1702160865456.0,1.0,0.016666666666666666 +1728,1702160925456.0,1.0,0.016666666666666666 +1729,1702160985456.0,1.0,0.016666666666666666 +1730,1702161045456.0,1.0,0.016666666666666666 +1731,1702161105456.0,1.0,0.016666666666666666 +1732,1702161165456.0,1.0,0.016666666666666666 +1733,1702161225456.0,1.0,0.016666666666666666 +1734,1702161285456.0,1.0,0.016666666666666666 +1735,1702161345456.0,1.0,0.016666666666666666 +1736,1702161405456.0,1.0,0.016666666666666666 +1737,1702161465456.0,1.0,0.016666666666666666 +1738,1702161525456.0,1.0,0.016666666666666666 +1739,1702161585456.0,1.0,0.016666666666666666 +1740,1702161645456.0,1.0,0.016666666666666666 +1741,1702161705456.0,1.0,0.016666666666666666 +1742,1702161765456.0,1.0,0.016666666666666666 +1743,1702161825456.0,1.0,0.016666666666666666 +1744,1702161885456.0,1.0,0.016666666666666666 +1745,1702161945456.0,1.0,0.016666666666666666 +1746,1702162005456.0,1.0,0.016666666666666666 +1747,1702162065456.0,1.0,0.016666666666666666 +1748,1702162125456.0,1.0,0.016666666666666666 +1749,1702162185456.0,1.0,0.016666666666666666 +1750,1702162245456.0,1.0,0.016666666666666666 +1751,1702162305456.0,1.0,0.016666666666666666 +1752,1702162365456.0,1.0,0.016666666666666666 +1753,1702162425456.0,1.0,0.016666666666666666 +1754,1702162485456.0,1.0,0.016666666666666666 +1755,1702162545456.0,1.0,0.016666666666666666 +1756,1702162605456.0,1.0,0.016666666666666666 +1757,1702162665456.0,1.0,0.016666666666666666 +1758,1702162725456.0,1.0,0.016666666666666666 +1759,1702162785456.0,1.0,0.016666666666666666 +1760,1702162845456.0,1.0,0.016666666666666666 +1761,1702162905456.0,1.0,0.016666666666666666 +1762,1702162965456.0,1.0,0.016666666666666666 +1763,1702163025456.0,1.0,0.016666666666666666 +1764,1702163085456.0,1.0,0.016666666666666666 +1765,1702163145456.0,1.0,0.016666666666666666 +1766,1702163205456.0,1.0,0.016666666666666666 +1767,1702163265456.0,1.0,0.016666666666666666 +1768,1702163325456.0,1.0,0.016666666666666666 +1769,1702163385456.0,1.0,0.016666666666666666 +1770,1702163445456.0,1.0,0.016666666666666666 +1771,1702163505456.0,1.0,0.016666666666666666 +1772,1702163565456.0,1.0,0.016666666666666666 +1773,1702163625456.0,1.0,0.016666666666666666 +1774,1702163685456.0,1.0,0.016666666666666666 +1775,1702163745456.0,1.0,0.016666666666666666 +1776,1702163805456.0,1.0,0.016666666666666666 +1777,1702163865456.0,1.0,0.016666666666666666 +1778,1702163925456.0,1.0,0.016666666666666666 +1779,1702163985456.0,1.0,0.016666666666666666 +1780,1702164045456.0,1.0,0.016666666666666666 +1781,1702164105456.0,1.0,0.016666666666666666 +1782,1702164165456.0,1.0,0.016666666666666666 +1783,1702164225456.0,1.0,0.016666666666666666 +1784,1702164285456.0,1.0,0.016666666666666666 +1785,1702164345456.0,1.0,0.016666666666666666 +1786,1702164405456.0,1.0,0.016666666666666666 +1787,1702164465456.0,1.0,0.016666666666666666 +1788,1702164525456.0,1.0,0.016666666666666666 +1789,1702164585456.0,1.0,0.016666666666666666 +1790,1702164645456.0,1.0,0.016666666666666666 +1791,1702164705456.0,1.0,0.016666666666666666 +1792,1702164765456.0,1.0,0.016666666666666666 +1793,1702164825456.0,1.0,0.016666666666666666 +1794,1702164885456.0,1.0,0.016666666666666666 +1795,1702164945456.0,1.0,0.016666666666666666 +1796,1702165005456.0,1.0,0.016666666666666666 +1797,1702165065456.0,1.0,0.016666666666666666 +1798,1702165125456.0,1.0,0.016666666666666666 +1799,1702165185456.0,1.0,0.016666666666666666 +1800,1702165245456.0,1.0,0.016666666666666666 +1801,1702165305456.0,1.0,0.016666666666666666 +1802,1702165365456.0,1.0,0.016666666666666666 +1803,1702165425456.0,1.0,0.016666666666666666 +1804,1702165485456.0,1.0,0.016666666666666666 +1805,1702165545456.0,1.0,0.016666666666666666 +1806,1702165605456.0,1.0,0.016666666666666666 +1807,1702165665456.0,1.0,0.016666666666666666 +1808,1702165725456.0,1.0,0.016666666666666666 +1809,1702165785456.0,1.0,0.016666666666666666 +1810,1702165845456.0,1.0,0.016666666666666666 +1811,1702165905456.0,1.0,0.016666666666666666 +1812,1702165965456.0,1.0,0.016666666666666666 +1813,1702166025456.0,1.0,0.016666666666666666 +1814,1702166085456.0,1.0,0.016666666666666666 +1815,1702166145456.0,1.0,0.016666666666666666 +1816,1702166205456.0,1.0,0.016666666666666666 +1817,1702166265456.0,1.0,0.016666666666666666 +1818,1702166325456.0,1.0,0.016666666666666666 +1819,1702166385456.0,1.0,0.016666666666666666 +1820,1702166445456.0,1.0,0.016666666666666666 +1821,1702166505456.0,1.0,0.016666666666666666 +1822,1702166565456.0,1.0,0.016666666666666666 +1823,1702166625456.0,1.0,0.016666666666666666 +1824,1702166685456.0,1.0,0.016666666666666666 +1825,1702166745456.0,1.0,0.016666666666666666 +1826,1702166805456.0,1.0,0.016666666666666666 +1827,1702166865456.0,1.0,0.016666666666666666 +1828,1702166925456.0,1.0,0.016666666666666666 +1829,1702166985456.0,1.0,0.016666666666666666 +1830,1702167045456.0,1.0,0.016666666666666666 +1831,1702167105456.0,1.0,0.016666666666666666 +1832,1702167165456.0,1.0,0.016666666666666666 +1833,1702167225456.0,1.0,0.016666666666666666 +1834,1702167285456.0,1.0,0.016666666666666666 +1835,1702167345456.0,1.0,0.016666666666666666 +1836,1702167405456.0,1.0,0.016666666666666666 +1837,1702167465456.0,1.0,0.016666666666666666 +1838,1702167525456.0,1.0,0.016666666666666666 +1839,1702167585456.0,1.0,0.016666666666666666 +1840,1702167645456.0,1.0,0.016666666666666666 +1841,1702167705456.0,1.0,0.016666666666666666 +1842,1702167765456.0,1.0,0.016666666666666666 +1843,1702167825456.0,1.0,0.016666666666666666 +1844,1702167885456.0,1.0,0.016666666666666666 +1845,1702167945456.0,1.0,0.016666666666666666 +1846,1702168005456.0,1.0,0.016666666666666666 +1847,1702168065456.0,1.0,0.016666666666666666 +1848,1702168125456.0,1.0,0.016666666666666666 +1849,1702168185456.0,1.0,0.016666666666666666 +1850,1702168245456.0,1.0,0.016666666666666666 +1851,1702168305456.0,1.0,0.016666666666666666 +1852,1702168365456.0,1.0,0.016666666666666666 +1853,1702168425456.0,1.0,0.016666666666666666 +1854,1702168485456.0,1.0,0.016666666666666666 +1855,1702168545456.0,1.0,0.016666666666666666 +1856,1702168605456.0,1.0,0.016666666666666666 +1857,1702168665456.0,1.0,0.016666666666666666 +1858,1702168725456.0,1.0,0.016666666666666666 +1859,1702168785456.0,1.0,0.016666666666666666 +1860,1702168845456.0,1.0,0.016666666666666666 +1861,1702168905456.0,1.0,0.016666666666666666 +1862,1702168965456.0,1.0,0.016666666666666666 +1863,1702169025456.0,1.0,0.016666666666666666 +1864,1702169085456.0,1.0,0.016666666666666666 +1865,1702169145456.0,1.0,0.016666666666666666 +1866,1702169205456.0,1.0,0.016666666666666666 +1867,1702169265456.0,1.0,0.016666666666666666 +1868,1702169325456.0,1.0,0.016666666666666666 +1869,1702169385456.0,1.0,0.016666666666666666 +1870,1702169445456.0,1.0,0.016666666666666666 +1871,1702169505456.0,1.0,0.016666666666666666 +1872,1702169565456.0,1.0,0.016666666666666666 +1873,1702169625456.0,1.0,0.016666666666666666 +1874,1702169685456.0,1.0,0.016666666666666666 +1875,1702169745456.0,1.0,0.016666666666666666 +1876,1702169805456.0,1.0,0.016666666666666666 +1877,1702169865456.0,1.0,0.016666666666666666 +1878,1702169925456.0,1.0,0.016666666666666666 +1879,1702169985456.0,1.0,0.016666666666666666 +1880,1702170045456.0,1.0,0.016666666666666666 +1881,1702170105456.0,1.0,0.016666666666666666 +1882,1702170165456.0,1.0,0.016666666666666666 +1883,1702170225456.0,1.0,0.016666666666666666 +1884,1702170285456.0,1.0,0.016666666666666666 +1885,1702170345456.0,1.0,0.016666666666666666 +1886,1702170405456.0,1.0,0.016666666666666666 +1887,1702170465456.0,1.0,0.016666666666666666 +1888,1702170525456.0,1.0,0.016666666666666666 +1889,1702170585456.0,1.0,0.016666666666666666 +1890,1702170645456.0,1.0,0.016666666666666666 +1891,1702170705456.0,1.0,0.016666666666666666 +1892,1702170765456.0,1.0,0.016666666666666666 +1893,1702170825456.0,1.0,0.016666666666666666 +1894,1702170885456.0,1.0,0.016666666666666666 +1895,1702170945456.0,1.0,0.016666666666666666 +1896,1702171005456.0,1.0,0.016666666666666666 +1897,1702171065456.0,1.0,0.016666666666666666 +1898,1702171125456.0,1.0,0.016666666666666666 +1899,1702171185456.0,1.0,0.016666666666666666 +1900,1702171245456.0,1.0,0.016666666666666666 +1901,1702171305456.0,1.0,0.016666666666666666 +1902,1702171365456.0,1.0,0.016666666666666666 +1903,1702171425456.0,1.0,0.016666666666666666 +1904,1702171485456.0,1.0,0.016666666666666666 +1905,1702171545456.0,1.0,0.016666666666666666 +1906,1702171605456.0,1.0,0.016666666666666666 +1907,1702171665456.0,1.0,0.016666666666666666 +1908,1702171725456.0,1.0,0.016666666666666666 +1909,1702171785456.0,1.0,0.016666666666666666 +1910,1702171845456.0,1.0,0.016666666666666666 +1911,1702171905456.0,1.0,0.016666666666666666 +1912,1702171965456.0,1.0,0.016666666666666666 +1913,1702172025456.0,1.0,0.016666666666666666 +1914,1702172085456.0,1.0,0.016666666666666666 +1915,1702172145456.0,1.0,0.016666666666666666 +1916,1702172205456.0,1.0,0.016666666666666666 +1917,1702172265456.0,1.0,0.016666666666666666 +1918,1702172325456.0,1.0,0.016666666666666666 +1919,1702172385456.0,1.0,0.016666666666666666 +1920,1702172445456.0,1.0,0.016666666666666666 +1921,1702172505456.0,1.0,0.016666666666666666 +1922,1702172565456.0,1.0,0.016666666666666666 +1923,1702172625456.0,1.0,0.016666666666666666 +1924,1702172685456.0,1.0,0.016666666666666666 +1925,1702172745456.0,1.0,0.016666666666666666 +1926,1702172805456.0,1.0,0.016666666666666666 +1927,1702172865456.0,1.0,0.016666666666666666 +1928,1702172925456.0,1.0,0.016666666666666666 +1929,1702172985456.0,1.0,0.016666666666666666 +1930,1702173045456.0,1.0,0.016666666666666666 +1931,1702173105456.0,1.0,0.016666666666666666 +1932,1702173165456.0,1.0,0.016666666666666666 +1933,1702173225456.0,1.0,0.016666666666666666 +1934,1702173285456.0,1.0,0.016666666666666666 +1935,1702173345456.0,1.0,0.016666666666666666 +1936,1702173405456.0,1.0,0.016666666666666666 +1937,1702173465456.0,1.0,0.016666666666666666 +1938,1702173525456.0,1.0,0.016666666666666666 +1939,1702173585456.0,1.0,0.016666666666666666 +1940,1702173645456.0,1.0,0.016666666666666666 +1941,1702173705456.0,1.0,0.016666666666666666 +1942,1702173765456.0,1.0,0.016666666666666666 +1943,1702173825456.0,1.0,0.016666666666666666 +1944,1702173885456.0,1.0,0.016666666666666666 +1945,1702173945456.0,1.0,0.016666666666666666 +1946,1702174005456.0,1.0,0.016666666666666666 +1947,1702174065456.0,1.0,0.016666666666666666 +1948,1702174125456.0,1.0,0.016666666666666666 +1949,1702174185456.0,1.0,0.016666666666666666 +1950,1702174245456.0,1.0,0.016666666666666666 +1951,1702174305456.0,1.0,0.016666666666666666 +1952,1702174365456.0,1.0,0.016666666666666666 +1953,1702174425456.0,1.0,0.016666666666666666 +1954,1702174485456.0,1.0,0.016666666666666666 +1955,1702174545456.0,1.0,0.016666666666666666 +1956,1702174605456.0,1.0,0.016666666666666666 +1957,1702174665456.0,1.0,0.016666666666666666 +1958,1702174725456.0,1.0,0.016666666666666666 +1959,1702174785456.0,1.0,0.016666666666666666 +1960,1702174845456.0,1.0,0.016666666666666666 +1961,1702174905456.0,1.0,0.016666666666666666 +1962,1702174965456.0,1.0,0.016666666666666666 +1963,1702175025456.0,1.0,0.016666666666666666 +1964,1702175085456.0,1.0,0.016666666666666666 +1965,1702175145456.0,1.0,0.016666666666666666 +1966,1702175205456.0,1.0,0.016666666666666666 +1967,1702175265456.0,1.0,0.016666666666666666 +1968,1702175325456.0,1.0,0.016666666666666666 +1969,1702175385456.0,1.0,0.016666666666666666 +1970,1702175445456.0,1.0,0.016666666666666666 +1971,1702175505456.0,1.0,0.016666666666666666 +1972,1702175565456.0,1.0,0.016666666666666666 +1973,1702175625456.0,1.0,0.016666666666666666 +1974,1702175685456.0,1.0,0.016666666666666666 +1975,1702175745456.0,1.0,0.016666666666666666 +1976,1702175805456.0,1.0,0.016666666666666666 +1977,1702175865456.0,1.0,0.016666666666666666 +1978,1702175925456.0,1.0,0.016666666666666666 +1979,1702175985456.0,1.0,0.016666666666666666 +1980,1702176045456.0,1.0,0.016666666666666666 +1981,1702176105456.0,1.0,0.016666666666666666 +1982,1702176165456.0,1.0,0.016666666666666666 +1983,1702176225456.0,1.0,0.016666666666666666 +1984,1702176285456.0,1.0,0.016666666666666666 +1985,1702176345456.0,1.0,0.016666666666666666 +1986,1702176405456.0,1.0,0.016666666666666666 +1987,1702176465456.0,1.0,0.016666666666666666 +1988,1702176525456.0,1.0,0.016666666666666666 +1989,1702176585456.0,1.0,0.016666666666666666 +1990,1702176645456.0,1.0,0.016666666666666666 +1991,1702176705456.0,1.0,0.016666666666666666 +1992,1702176765456.0,1.0,0.016666666666666666 +1993,1702176825456.0,1.0,0.016666666666666666 +1994,1702176885456.0,1.0,0.016666666666666666 +1995,1702176945456.0,1.0,0.016666666666666666 +1996,1702177005456.0,1.0,0.016666666666666666 +1997,1702177065456.0,1.0,0.016666666666666666 +1998,1702177125456.0,1.0,0.016666666666666666 +1999,1702177185456.0,1.0,0.016666666666666666 +2000,1702177245456.0,1.0,0.016666666666666666 +2001,1702177305456.0,1.0,0.016666666666666666 +2002,1702177365456.0,1.0,0.016666666666666666 +2003,1702177425456.0,1.0,0.016666666666666666 +2004,1702177485456.0,1.0,0.016666666666666666 +2005,1702177545456.0,1.0,0.016666666666666666 +2006,1702177605456.0,1.0,0.016666666666666666 +2007,1702177665456.0,1.0,0.016666666666666666 +2008,1702177725456.0,1.0,0.016666666666666666 +2009,1702177785456.0,1.0,0.016666666666666666 +2010,1702177845456.0,1.0,0.016666666666666666 +2011,1702177905456.0,1.0,0.016666666666666666 +2012,1702177965456.0,1.0,0.016666666666666666 +2013,1702178025456.0,1.0,0.016666666666666666 +2014,1702178085456.0,1.0,0.016666666666666666 +2015,1702178145456.0,1.0,0.016666666666666666 +2016,1702178205456.0,1.0,0.016666666666666666 +2017,1702178265456.0,1.0,0.016666666666666666 +2018,1702178325456.0,1.0,0.016666666666666666 +2019,1702178385456.0,1.0,0.016666666666666666 +2020,1702178445456.0,1.0,0.016666666666666666 +2021,1702178505456.0,1.0,0.016666666666666666 +2022,1702178565456.0,1.0,0.016666666666666666 +2023,1702178625456.0,1.0,0.016666666666666666 +2024,1702178685456.0,1.0,0.016666666666666666 +2025,1702178745456.0,1.0,0.016666666666666666 +2026,1702178805456.0,1.0,0.016666666666666666 +2027,1702178865456.0,1.0,0.016666666666666666 +2028,1702178925456.0,1.0,0.016666666666666666 +2029,1702178985456.0,1.0,0.016666666666666666 +2030,1702179045456.0,1.0,0.016666666666666666 +2031,1702179105456.0,1.0,0.016666666666666666 +2032,1702179165456.0,1.0,0.016666666666666666 +2033,1702179225456.0,1.0,0.016666666666666666 +2034,1702179285456.0,1.0,0.016666666666666666 +2035,1702179345456.0,1.0,0.016666666666666666 +2036,1702179405456.0,1.0,0.016666666666666666 +2037,1702179465456.0,1.0,0.016666666666666666 +2038,1702179525456.0,1.0,0.016666666666666666 +2039,1702179585456.0,1.0,0.016666666666666666 +2040,1702179645456.0,1.0,0.016666666666666666 +2041,1702179705456.0,1.0,0.016666666666666666 +2042,1702179765456.0,1.0,0.016666666666666666 +2043,1702179825456.0,1.0,0.016666666666666666 +2044,1702179885456.0,1.0,0.016666666666666666 +2045,1702179945456.0,1.0,0.016666666666666666 +2046,1702180005456.0,1.0,0.016666666666666666 +2047,1702180065456.0,1.0,0.016666666666666666 +2048,1702180125456.0,1.0,0.016666666666666666 +2049,1702180185456.0,1.0,0.016666666666666666 +2050,1702180245456.0,1.0,0.016666666666666666 +2051,1702180305456.0,1.0,0.016666666666666666 +2052,1702180365456.0,1.0,0.016666666666666666 +2053,1702180425456.0,1.0,0.016666666666666666 +2054,1702180485456.0,1.0,0.016666666666666666 +2055,1702180545456.0,1.0,0.016666666666666666 +2056,1702180605456.0,1.0,0.016666666666666666 +2057,1702180665456.0,1.0,0.016666666666666666 +2058,1702180725456.0,1.0,0.016666666666666666 +2059,1702180785456.0,1.0,0.016666666666666666 +2060,1702180845456.0,1.0,0.016666666666666666 +2061,1702180905456.0,1.0,0.016666666666666666 +2062,1702180965456.0,1.0,0.016666666666666666 +2063,1702181025456.0,1.0,0.016666666666666666 +2064,1702181085456.0,1.0,0.016666666666666666 +2065,1702181145456.0,1.0,0.016666666666666666 +2066,1702181205456.0,1.0,0.016666666666666666 +2067,1702181265456.0,1.0,0.016666666666666666 +2068,1702181325456.0,1.0,0.016666666666666666 +2069,1702181385456.0,1.0,0.016666666666666666 +2070,1702181445456.0,1.0,0.016666666666666666 +2071,1702181505456.0,1.0,0.016666666666666666 +2072,1702181565456.0,1.0,0.016666666666666666 +2073,1702181625456.0,1.0,0.016666666666666666 +2074,1702181685456.0,1.0,0.016666666666666666 +2075,1702181745456.0,1.0,0.016666666666666666 +2076,1702181805456.0,1.0,0.016666666666666666 +2077,1702181865456.0,1.0,0.016666666666666666 +2078,1702181925456.0,1.0,0.016666666666666666 +2079,1702181985456.0,1.0,0.016666666666666666 +2080,1702182045456.0,1.0,0.016666666666666666 +2081,1702182105456.0,1.0,0.016666666666666666 +2082,1702182165456.0,1.0,0.016666666666666666 +2083,1702182225456.0,1.0,0.016666666666666666 +2084,1702182285456.0,1.0,0.016666666666666666 +2085,1702182345456.0,1.0,0.016666666666666666 +2086,1702182405456.0,1.0,0.016666666666666666 +2087,1702182465456.0,1.0,0.016666666666666666 +2088,1702182525456.0,1.0,0.016666666666666666 +2089,1702182585456.0,1.0,0.016666666666666666 +2090,1702182645456.0,1.0,0.016666666666666666 +2091,1702182705456.0,1.0,0.016666666666666666 +2092,1702182765456.0,1.0,0.016666666666666666 +2093,1702182825456.0,1.0,0.016666666666666666 +2094,1702182885456.0,1.0,0.016666666666666666 +2095,1702182945456.0,1.0,0.016666666666666666 +2096,1702183005456.0,1.0,0.016666666666666666 +2097,1702183065456.0,1.0,0.016666666666666666 +2098,1702183125456.0,1.0,0.016666666666666666 +2099,1702183185456.0,1.0,0.016666666666666666 +2100,1702183245456.0,1.0,0.016666666666666666 +2101,1702183305456.0,1.0,0.016666666666666666 +2102,1702183365456.0,1.0,0.016666666666666666 +2103,1702183425456.0,1.0,0.016666666666666666 +2104,1702183485456.0,1.0,0.016666666666666666 +2105,1702183545456.0,1.0,0.016666666666666666 +2106,1702183605456.0,1.0,0.016666666666666666 +2107,1702183665456.0,1.0,0.016666666666666666 +2108,1702183725456.0,1.0,0.016666666666666666 +2109,1702183785456.0,1.0,0.016666666666666666 +2110,1702183845456.0,1.0,0.016666666666666666 +2111,1702183905456.0,1.0,0.016666666666666666 +2112,1702183965456.0,1.0,0.016666666666666666 +2113,1702184025456.0,1.0,0.016666666666666666 +2114,1702184085456.0,1.0,0.016666666666666666 +2115,1702184145456.0,1.0,0.016666666666666666 +2116,1702184205456.0,1.0,0.016666666666666666 +2117,1702184265456.0,1.0,0.016666666666666666 +2118,1702184325456.0,1.0,0.016666666666666666 +2119,1702184385456.0,1.0,0.016666666666666666 +2120,1702184445456.0,1.0,0.016666666666666666 +2121,1702184505456.0,1.0,0.016666666666666666 +2122,1702184565456.0,1.0,0.016666666666666666 +2123,1702184625456.0,1.0,0.016666666666666666 +2124,1702184685456.0,1.0,0.016666666666666666 +2125,1702184745456.0,1.0,0.016666666666666666 +2126,1702184805456.0,1.0,0.016666666666666666 +2127,1702184865456.0,1.0,0.016666666666666666 +2128,1702184925456.0,1.0,0.016666666666666666 +2129,1702184985456.0,1.0,0.016666666666666666 +2130,1702185045456.0,1.0,0.016666666666666666 +2131,1702185105456.0,1.0,0.016666666666666666 +2132,1702185165456.0,1.0,0.016666666666666666 +2133,1702185225456.0,1.0,0.016666666666666666 +2134,1702185285456.0,1.0,0.016666666666666666 +2135,1702185345456.0,1.0,0.016666666666666666 +2136,1702185405456.0,1.0,0.016666666666666666 +2137,1702185465456.0,1.0,0.016666666666666666 +2138,1702185525456.0,1.0,0.016666666666666666 +2139,1702185585456.0,1.0,0.016666666666666666 +2140,1702185645456.0,1.0,0.016666666666666666 +2141,1702185705456.0,1.0,0.016666666666666666 +2142,1702185765456.0,1.0,0.016666666666666666 +2143,1702185825456.0,1.0,0.016666666666666666 +2144,1702185885456.0,1.0,0.016666666666666666 +2145,1702185945456.0,1.0,0.016666666666666666 +2146,1702186005456.0,1.0,0.016666666666666666 +2147,1702186065456.0,1.0,0.016666666666666666 +2148,1702186125456.0,1.0,0.016666666666666666 +2149,1702186185456.0,1.0,0.016666666666666666 +2150,1702186245456.0,1.0,0.016666666666666666 +2151,1702186305456.0,1.0,0.016666666666666666 +2152,1702186365456.0,1.0,0.016666666666666666 +2153,1702186425456.0,1.0,0.016666666666666666 +2154,1702186485456.0,1.0,0.016666666666666666 +2155,1702186545456.0,1.0,0.016666666666666666 +2156,1702186605456.0,1.0,0.016666666666666666 +2157,1702186665456.0,1.0,0.016666666666666666 +2158,1702186725456.0,1.0,0.016666666666666666 +2159,1702186785456.0,1.0,0.016666666666666666 +2160,1702186845456.0,1.0,0.016666666666666666 +2161,1702186905456.0,1.0,0.016666666666666666 +2162,1702186965456.0,1.0,0.016666666666666666 +2163,1702187025456.0,1.0,0.016666666666666666 +2164,1702187085456.0,1.0,0.016666666666666666 +2165,1702187145456.0,1.0,0.016666666666666666 +2166,1702187205456.0,1.0,0.016666666666666666 +2167,1702187265456.0,1.0,0.016666666666666666 +2168,1702187325456.0,1.0,0.016666666666666666 +2169,1702187385456.0,1.0,0.016666666666666666 +2170,1702187445456.0,1.0,0.016666666666666666 +2171,1702187505456.0,1.0,0.016666666666666666 +2172,1702187565456.0,1.0,0.016666666666666666 +2173,1702187625456.0,1.0,0.016666666666666666 +2174,1702187685456.0,1.0,0.016666666666666666 +2175,1702187745456.0,1.0,0.016666666666666666 +2176,1702187805456.0,1.0,0.016666666666666666 +2177,1702187865456.0,1.0,0.016666666666666666 +2178,1702187925456.0,1.0,0.016666666666666666 +2179,1702187985456.0,1.0,0.016666666666666666 +2180,1702188045456.0,1.0,0.016666666666666666 +2181,1702188105456.0,1.0,0.016666666666666666 +2182,1702188165456.0,1.0,0.016666666666666666 +2183,1702188225456.0,1.0,0.016666666666666666 +2184,1702188285456.0,1.0,0.016666666666666666 +2185,1702188345456.0,1.0,0.016666666666666666 +2186,1702188405456.0,1.0,0.016666666666666666 +2187,1702188465456.0,1.0,0.016666666666666666 +2188,1702188525456.0,1.0,0.016666666666666666 +2189,1702188585456.0,1.0,0.016666666666666666 +2190,1702188645456.0,1.0,0.016666666666666666 +2191,1702188705456.0,1.0,0.016666666666666666 +2192,1702188765456.0,1.0,0.016666666666666666 +2193,1702188825456.0,1.0,0.016666666666666666 +2194,1702188885456.0,1.0,0.016666666666666666 +2195,1702188945456.0,1.0,0.016666666666666666 +2196,1702189005456.0,1.0,0.016666666666666666 +2197,1702189065456.0,1.0,0.016666666666666666 +2198,1702189125456.0,1.0,0.016666666666666666 +2199,1702189185456.0,1.0,0.016666666666666666 +2200,1702189245456.0,1.0,0.016666666666666666 +2201,1702189305456.0,1.0,0.016666666666666666 +2202,1702189365456.0,1.0,0.016666666666666666 +2203,1702189425456.0,1.0,0.016666666666666666 +2204,1702189485456.0,1.0,0.016666666666666666 +2205,1702189545456.0,1.0,0.016666666666666666 +2206,1702189605456.0,1.0,0.016666666666666666 +2207,1702189665456.0,1.0,0.016666666666666666 +2208,1702189725456.0,1.0,0.016666666666666666 +2209,1702189785456.0,1.0,0.016666666666666666 +2210,1702189845456.0,1.0,0.016666666666666666 +2211,1702189905456.0,1.0,0.016666666666666666 +2212,1702189965456.0,1.0,0.016666666666666666 +2213,1702190025456.0,1.0,0.016666666666666666 +2214,1702190085456.0,1.0,0.016666666666666666 +2215,1702190145456.0,1.0,0.016666666666666666 +2216,1702190205456.0,1.0,0.016666666666666666 +2217,1702190265456.0,1.0,0.016666666666666666 +2218,1702190325456.0,1.0,0.016666666666666666 +2219,1702190385456.0,1.0,0.016666666666666666 +2220,1702190445456.0,1.0,0.016666666666666666 +2221,1702190505456.0,1.0,0.016666666666666666 +2222,1702190565456.0,1.0,0.016666666666666666 +2223,1702190625456.0,1.0,0.016666666666666666 +2224,1702190685456.0,1.0,0.016666666666666666 +2225,1702190745456.0,1.0,0.016666666666666666 +2226,1702190805456.0,1.0,0.016666666666666666 +2227,1702190865456.0,1.0,0.016666666666666666 +2228,1702190925456.0,1.0,0.016666666666666666 +2229,1702190985456.0,1.0,0.016666666666666666 +2230,1702191045456.0,1.0,0.016666666666666666 +2231,1702191105456.0,1.0,0.016666666666666666 +2232,1702191165456.0,1.0,0.016666666666666666 +2233,1702191225456.0,1.0,0.016666666666666666 +2234,1702191285456.0,1.0,0.016666666666666666 +2235,1702191345456.0,1.0,0.016666666666666666 +2236,1702191405456.0,1.0,0.016666666666666666 +2237,1702191465456.0,1.0,0.016666666666666666 +2238,1702191525456.0,1.0,0.016666666666666666 +2239,1702191585456.0,1.0,0.016666666666666666 +2240,1702191645456.0,1.0,0.016666666666666666 +2241,1702191705456.0,1.0,0.016666666666666666 +2242,1702191765456.0,1.0,0.016666666666666666 +2243,1702191825456.0,1.0,0.016666666666666666 +2244,1702191885456.0,1.0,0.016666666666666666 +2245,1702191945456.0,1.0,0.016666666666666666 +2246,1702192005456.0,1.0,0.016666666666666666 +2247,1702192065456.0,1.0,0.016666666666666666 +2248,1702192125456.0,1.0,0.016666666666666666 +2249,1702192185456.0,1.0,0.016666666666666666 +2250,1702192245456.0,1.0,0.016666666666666666 +2251,1702192305456.0,1.0,0.016666666666666666 +2252,1702192365456.0,1.0,0.016666666666666666 +2253,1702192425456.0,1.0,0.016666666666666666 +2254,1702192485456.0,1.0,0.016666666666666666 +2255,1702192545456.0,1.0,0.016666666666666666 +2256,1702192605456.0,1.0,0.016666666666666666 +2257,1702192665456.0,1.0,0.016666666666666666 +2258,1702192725456.0,1.0,0.016666666666666666 +2259,1702192785456.0,1.0,0.016666666666666666 +2260,1702192845456.0,1.0,0.016666666666666666 +2261,1702192905456.0,1.0,0.016666666666666666 +2262,1702192965456.0,1.0,0.016666666666666666 +2263,1702193025456.0,1.0,0.016666666666666666 +2264,1702193085456.0,1.0,0.016666666666666666 +2265,1702193145456.0,1.0,0.016666666666666666 +2266,1702193205456.0,1.0,0.016666666666666666 +2267,1702193265456.0,1.0,0.016666666666666666 +2268,1702193325456.0,1.0,0.016666666666666666 +2269,1702193385456.0,1.0,0.016666666666666666 +2270,1702193445456.0,1.0,0.016666666666666666 +2271,1702193505456.0,1.0,0.016666666666666666 +2272,1702193565456.0,1.0,0.016666666666666666 +2273,1702193625456.0,1.0,0.016666666666666666 +2274,1702193685456.0,1.0,0.016666666666666666 +2275,1702193745456.0,1.0,0.016666666666666666 +2276,1702193805456.0,1.0,0.016666666666666666 +2277,1702193865456.0,1.0,0.016666666666666666 +2278,1702193925456.0,1.0,0.016666666666666666 +2279,1702193985456.0,1.0,0.016666666666666666 +2280,1702194045456.0,1.0,0.016666666666666666 +2281,1702194105456.0,1.0,0.016666666666666666 +2282,1702194165456.0,1.0,0.016666666666666666 +2283,1702194225456.0,1.0,0.016666666666666666 +2284,1702194285456.0,1.0,0.016666666666666666 +2285,1702194345456.0,1.0,0.016666666666666666 +2286,1702194405456.0,1.0,0.016666666666666666 +2287,1702194465456.0,1.0,0.016666666666666666 +2288,1702194525456.0,1.0,0.016666666666666666 +2289,1702194585456.0,1.0,0.016666666666666666 +2290,1702194645456.0,1.0,0.016666666666666666 +2291,1702194705456.0,1.0,0.016666666666666666 +2292,1702194765456.0,1.0,0.016666666666666666 +2293,1702194825456.0,1.0,0.016666666666666666 +2294,1702194885456.0,1.0,0.016666666666666666 +2295,1702194945456.0,1.0,0.016666666666666666 +2296,1702195005456.0,1.0,0.016666666666666666 +2297,1702195065456.0,1.0,0.016666666666666666 +2298,1702195125456.0,1.0,0.016666666666666666 +2299,1702195185456.0,1.0,0.016666666666666666 +2300,1702195245456.0,1.0,0.016666666666666666 +2301,1702195305456.0,1.0,0.016666666666666666 +2302,1702195365456.0,1.0,0.016666666666666666 +2303,1702195425456.0,1.0,0.016666666666666666 +2304,1702195485456.0,1.0,0.016666666666666666 +2305,1702195545456.0,1.0,0.016666666666666666 +2306,1702195605456.0,1.0,0.016666666666666666 +2307,1702195665456.0,1.0,0.016666666666666666 +2308,1702195725456.0,1.0,0.016666666666666666 +2309,1702195785456.0,1.0,0.016666666666666666 +2310,1702195845456.0,1.0,0.016666666666666666 +2311,1702195905456.0,1.0,0.016666666666666666 +2312,1702195965456.0,1.0,0.016666666666666666 +2313,1702196025456.0,1.0,0.016666666666666666 +2314,1702196085456.0,1.0,0.016666666666666666 +2315,1702196145456.0,1.0,0.016666666666666666 +2316,1702196205456.0,1.0,0.016666666666666666 +2317,1702196265456.0,1.0,0.016666666666666666 +2318,1702196325456.0,1.0,0.016666666666666666 +2319,1702196385456.0,1.0,0.016666666666666666 +2320,1702196445456.0,1.0,0.016666666666666666 +2321,1702196505456.0,1.0,0.016666666666666666 +2322,1702196565456.0,1.0,0.016666666666666666 +2323,1702196625456.0,1.0,0.016666666666666666 +2324,1702196685456.0,1.0,0.016666666666666666 +2325,1702196745456.0,1.0,0.016666666666666666 +2326,1702196805456.0,1.0,0.016666666666666666 +2327,1702196865456.0,1.0,0.016666666666666666 +2328,1702196925456.0,1.0,0.016666666666666666 +2329,1702196985456.0,1.0,0.016666666666666666 +2330,1702197045456.0,1.0,0.016666666666666666 +2331,1702197105456.0,1.0,0.016666666666666666 +2332,1702197165456.0,1.0,0.016666666666666666 +2333,1702197225456.0,1.0,0.016666666666666666 +2334,1702197285456.0,1.0,0.016666666666666666 +2335,1702197345456.0,1.0,0.016666666666666666 +2336,1702197405456.0,1.0,0.016666666666666666 +2337,1702197465456.0,1.0,0.016666666666666666 +2338,1702197525456.0,1.0,0.016666666666666666 +2339,1702197585456.0,1.0,0.016666666666666666 +2340,1702197645456.0,1.0,0.016666666666666666 +2341,1702197705456.0,1.0,0.016666666666666666 +2342,1702197765456.0,1.0,0.016666666666666666 +2343,1702197825456.0,1.0,0.016666666666666666 +2344,1702197885456.0,1.0,0.016666666666666666 +2345,1702197945456.0,1.0,0.016666666666666666 +2346,1702198005456.0,1.0,0.016666666666666666 +2347,1702198065456.0,1.0,0.016666666666666666 +2348,1702198125456.0,1.0,0.016666666666666666 +2349,1702198185456.0,1.0,0.016666666666666666 +2350,1702198245456.0,1.0,0.016666666666666666 +2351,1702198305456.0,1.0,0.016666666666666666 +2352,1702198365456.0,1.0,0.016666666666666666 +2353,1702198425456.0,1.0,0.016666666666666666 +2354,1702198485456.0,1.0,0.016666666666666666 +2355,1702198545456.0,1.0,0.016666666666666666 +2356,1702198605456.0,1.0,0.016666666666666666 +2357,1702198665456.0,1.0,0.016666666666666666 +2358,1702198725456.0,1.0,0.016666666666666666 +2359,1702198785456.0,1.0,0.016666666666666666 +2360,1702198845456.0,1.0,0.016666666666666666 +2361,1702198905456.0,1.0,0.016666666666666666 +2362,1702198965456.0,1.0,0.016666666666666666 +2363,1702199025456.0,1.0,0.016666666666666666 +2364,1702199085456.0,1.0,0.016666666666666666 +2365,1702199145456.0,1.0,0.016666666666666666 +2366,1702199205456.0,1.0,0.016666666666666666 +2367,1702199265456.0,1.0,0.016666666666666666 +2368,1702199325456.0,1.0,0.016666666666666666 +2369,1702199385456.0,1.0,0.016666666666666666 +2370,1702199445456.0,1.0,0.016666666666666666 +2371,1702199505456.0,1.0,0.016666666666666666 +2372,1702199565456.0,1.0,0.016666666666666666 +2373,1702199625456.0,1.0,0.016666666666666666 +2374,1702199685456.0,1.0,0.016666666666666666 +2375,1702199745456.0,1.0,0.016666666666666666 +2376,1702199805456.0,1.0,0.016666666666666666 +2377,1702199865456.0,1.0,0.016666666666666666 +2378,1702199925456.0,1.0,0.016666666666666666 +2379,1702199985456.0,1.0,0.016666666666666666 +2380,1702200045456.0,1.0,0.016666666666666666 +2381,1702200105456.0,1.0,0.016666666666666666 +2382,1702200165456.0,1.0,0.016666666666666666 +2383,1702200225456.0,1.0,0.016666666666666666 +2384,1702200285456.0,1.0,0.016666666666666666 +2385,1702200345456.0,1.0,0.016666666666666666 +2386,1702200405456.0,1.0,0.016666666666666666 +2387,1702200465456.0,1.0,0.016666666666666666 +2388,1702200525456.0,1.0,0.016666666666666666 +2389,1702200585456.0,1.0,0.016666666666666666 +2390,1702200645456.0,1.0,0.016666666666666666 +2391,1702200705456.0,1.0,0.016666666666666666 +2392,1702200765456.0,1.0,0.016666666666666666 +2393,1702200825456.0,1.0,0.016666666666666666 +2394,1702200885456.0,1.0,0.016666666666666666 +2395,1702200945456.0,1.0,0.016666666666666666 +2396,1702201005456.0,1.0,0.016666666666666666 +2397,1702201065456.0,1.0,0.016666666666666666 +2398,1702201125456.0,1.0,0.016666666666666666 +2399,1702201185456.0,1.0,0.016666666666666666 +2400,1702201245456.0,1.0,0.016666666666666666 +2401,1702201305456.0,1.0,0.016666666666666666 +2402,1702201365456.0,1.0,0.016666666666666666 +2403,1702201425456.0,1.0,0.016666666666666666 +2404,1702201485456.0,1.0,0.016666666666666666 +2405,1702201545456.0,1.0,0.016666666666666666 +2406,1702201605456.0,1.0,0.016666666666666666 +2407,1702201665456.0,1.0,0.016666666666666666 +2408,1702201725456.0,1.0,0.016666666666666666 +2409,1702201785456.0,1.0,0.016666666666666666 +2410,1702201845456.0,1.0,0.016666666666666666 +2411,1702201905456.0,1.0,0.016666666666666666 +2412,1702201965456.0,1.0,0.016666666666666666 +2413,1702202025456.0,1.0,0.016666666666666666 +2414,1702202085456.0,1.0,0.016666666666666666 +2415,1702202145456.0,1.0,0.016666666666666666 +2416,1702202205456.0,1.0,0.016666666666666666 +2417,1702202265456.0,1.0,0.016666666666666666 +2418,1702202325456.0,1.0,0.016666666666666666 +2419,1702202385456.0,1.0,0.016666666666666666 +2420,1702202445456.0,1.0,0.016666666666666666 +2421,1702202505456.0,1.0,0.016666666666666666 +2422,1702202565456.0,1.0,0.016666666666666666 +2423,1702202625456.0,1.0,0.016666666666666666 +2424,1702202685456.0,1.0,0.016666666666666666 +2425,1702202745456.0,1.0,0.016666666666666666 +2426,1702202805456.0,1.0,0.016666666666666666 +2427,1702202865456.0,1.0,0.016666666666666666 +2428,1702202925456.0,1.0,0.016666666666666666 +2429,1702202985456.0,1.0,0.016666666666666666 +2430,1702203045456.0,1.0,0.016666666666666666 +2431,1702203105456.0,1.0,0.016666666666666666 +2432,1702203165456.0,1.0,0.016666666666666666 +2433,1702203225456.0,1.0,0.016666666666666666 +2434,1702203285456.0,1.0,0.016666666666666666 +2435,1702203345456.0,1.0,0.016666666666666666 +2436,1702203405456.0,1.0,0.016666666666666666 +2437,1702203465456.0,1.0,0.016666666666666666 +2438,1702203525456.0,1.0,0.016666666666666666 +2439,1702203585456.0,1.0,0.016666666666666666 +2440,1702203645456.0,1.0,0.016666666666666666 +2441,1702203705456.0,1.0,0.016666666666666666 +2442,1702203765456.0,1.0,0.016666666666666666 +2443,1702203825456.0,1.0,0.016666666666666666 +2444,1702203885456.0,1.0,0.016666666666666666 +2445,1702203945456.0,1.0,0.016666666666666666 +2446,1702204005456.0,1.0,0.016666666666666666 +2447,1702204065456.0,1.0,0.016666666666666666 +2448,1702204125456.0,1.0,0.016666666666666666 +2449,1702204185456.0,1.0,0.016666666666666666 +2450,1702204245456.0,1.0,0.016666666666666666 +2451,1702204305456.0,1.0,0.016666666666666666 +2452,1702204365456.0,1.0,0.016666666666666666 +2453,1702204425456.0,1.0,0.016666666666666666 +2454,1702204485456.0,1.0,0.016666666666666666 +2455,1702204545456.0,1.0,0.016666666666666666 +2456,1702204605456.0,1.0,0.016666666666666666 +2457,1702204665456.0,1.0,0.016666666666666666 +2458,1702204725456.0,1.0,0.016666666666666666 +2459,1702204785456.0,1.0,0.016666666666666666 +2460,1702204845456.0,1.0,0.016666666666666666 +2461,1702204905456.0,1.0,0.016666666666666666 +2462,1702204965456.0,1.0,0.016666666666666666 +2463,1702205025456.0,1.0,0.016666666666666666 +2464,1702205085456.0,1.0,0.016666666666666666 +2465,1702205145456.0,1.0,0.016666666666666666 +2466,1702205205456.0,1.0,0.016666666666666666 +2467,1702205265456.0,1.0,0.016666666666666666 +2468,1702205325456.0,1.0,0.016666666666666666 +2469,1702205385456.0,1.0,0.016666666666666666 +2470,1702205445456.0,1.0,0.016666666666666666 +2471,1702205505456.0,1.0,0.016666666666666666 +2472,1702205565456.0,1.0,0.016666666666666666 +2473,1702205625456.0,1.0,0.016666666666666666 +2474,1702205685456.0,1.0,0.016666666666666666 +2475,1702205745456.0,1.0,0.016666666666666666 +2476,1702205805456.0,1.0,0.016666666666666666 +2477,1702205865456.0,1.0,0.016666666666666666 +2478,1702205925456.0,1.0,0.016666666666666666 +2479,1702205985456.0,1.0,0.016666666666666666 +2480,1702206045456.0,1.0,0.016666666666666666 +2481,1702206105456.0,1.0,0.016666666666666666 +2482,1702206165456.0,1.0,0.016666666666666666 +2483,1702206225456.0,1.0,0.016666666666666666 +2484,1702206285456.0,1.0,0.016666666666666666 +2485,1702206345456.0,1.0,0.016666666666666666 +2486,1702206405456.0,1.0,0.016666666666666666 +2487,1702206465456.0,1.0,0.016666666666666666 +2488,1702206525456.0,1.0,0.016666666666666666 +2489,1702206585456.0,1.0,0.016666666666666666 +2490,1702206645456.0,1.0,0.016666666666666666 +2491,1702206705456.0,1.0,0.016666666666666666 +2492,1702206765456.0,1.0,0.016666666666666666 +2493,1702206825456.0,1.0,0.016666666666666666 +2494,1702206885456.0,1.0,0.016666666666666666 +2495,1702206945456.0,1.0,0.016666666666666666 +2496,1702207005456.0,1.0,0.016666666666666666 +2497,1702207065456.0,1.0,0.016666666666666666 +2498,1702207125456.0,1.0,0.016666666666666666 +2499,1702207185456.0,1.0,0.016666666666666666 +2500,1702207245456.0,1.0,0.016666666666666666 +2501,1702207305456.0,1.0,0.016666666666666666 +2502,1702207365456.0,1.0,0.016666666666666666 +2503,1702207425456.0,1.0,0.016666666666666666 +2504,1702207485456.0,1.0,0.016666666666666666 +2505,1702207545456.0,1.0,0.016666666666666666 +2506,1702207605456.0,1.0,0.016666666666666666 +2507,1702207665456.0,1.0,0.016666666666666666 +2508,1702207725456.0,1.0,0.016666666666666666 +2509,1702207785456.0,1.0,0.016666666666666666 +2510,1702207845456.0,1.0,0.016666666666666666 +2511,1702207905456.0,1.0,0.016666666666666666 +2512,1702207965456.0,1.0,0.016666666666666666 +2513,1702208025456.0,1.0,0.016666666666666666 +2514,1702208085456.0,1.0,0.016666666666666666 +2515,1702208145456.0,1.0,0.016666666666666666 +2516,1702208205456.0,1.0,0.016666666666666666 +2517,1702208265456.0,1.0,0.016666666666666666 +2518,1702208325456.0,1.0,0.016666666666666666 +2519,1702208385456.0,1.0,0.016666666666666666 +2520,1702208445456.0,1.0,0.016666666666666666 +2521,1702208505456.0,1.0,0.016666666666666666 +2522,1702208565456.0,1.0,0.016666666666666666 +2523,1702208625456.0,1.0,0.016666666666666666 +2524,1702208685456.0,1.0,0.016666666666666666 +2525,1702208745456.0,1.0,0.016666666666666666 +2526,1702208805456.0,1.0,0.016666666666666666 +2527,1702208865456.0,1.0,0.016666666666666666 +2528,1702208925456.0,1.0,0.016666666666666666 +2529,1702208985456.0,1.0,0.016666666666666666 +2530,1702209045456.0,1.0,0.016666666666666666 +2531,1702209105456.0,1.0,0.016666666666666666 +2532,1702209165456.0,1.0,0.016666666666666666 +2533,1702209225456.0,1.0,0.016666666666666666 +2534,1702209285456.0,1.0,0.016666666666666666 +2535,1702209345456.0,1.0,0.016666666666666666 +2536,1702209405456.0,1.0,0.016666666666666666 +2537,1702209465456.0,1.0,0.016666666666666666 +2538,1702209525456.0,1.0,0.016666666666666666 +2539,1702209585456.0,1.0,0.016666666666666666 +2540,1702209645456.0,1.0,0.016666666666666666 +2541,1702209705456.0,1.0,0.016666666666666666 +2542,1702209765456.0,1.0,0.016666666666666666 +2543,1702209825456.0,1.0,0.016666666666666666 +2544,1702209885456.0,1.0,0.016666666666666666 +2545,1702209945456.0,1.0,0.016666666666666666 +2546,1702210005456.0,1.0,0.016666666666666666 +2547,1702210065456.0,1.0,0.016666666666666666 +2548,1702210125456.0,1.0,0.016666666666666666 +2549,1702210185456.0,1.0,0.016666666666666666 +2550,1702210245456.0,1.0,0.016666666666666666 +2551,1702210305456.0,1.0,0.016666666666666666 +2552,1702210365456.0,1.0,0.016666666666666666 +2553,1702210425456.0,1.0,0.016666666666666666 +2554,1702210485456.0,1.0,0.016666666666666666 +2555,1702210545456.0,1.0,0.016666666666666666 +2556,1702210605456.0,1.0,0.016666666666666666 +2557,1702210665456.0,1.0,0.016666666666666666 +2558,1702210725456.0,1.0,0.016666666666666666 +2559,1702210785456.0,1.0,0.016666666666666666 +2560,1702210845456.0,1.0,0.016666666666666666 +2561,1702210905456.0,1.0,0.016666666666666666 +2562,1702210965456.0,1.0,0.016666666666666666 +2563,1702211025456.0,1.0,0.016666666666666666 +2564,1702211085456.0,1.0,0.016666666666666666 +2565,1702211145456.0,1.0,0.016666666666666666 +2566,1702211205456.0,1.0,0.016666666666666666 +2567,1702211265456.0,1.0,0.016666666666666666 +2568,1702211325456.0,1.0,0.016666666666666666 +2569,1702211385456.0,1.0,0.016666666666666666 +2570,1702211445456.0,1.0,0.016666666666666666 +2571,1702211505456.0,1.0,0.016666666666666666 +2572,1702211565456.0,1.0,0.016666666666666666 +2573,1702211625456.0,1.0,0.016666666666666666 +2574,1702211685456.0,1.0,0.016666666666666666 +2575,1702211745456.0,1.0,0.016666666666666666 +2576,1702211805456.0,1.0,0.016666666666666666 +2577,1702211865456.0,1.0,0.016666666666666666 +2578,1702211925456.0,1.0,0.016666666666666666 +2579,1702211985456.0,1.0,0.016666666666666666 +2580,1702212045456.0,1.0,0.016666666666666666 +2581,1702212105456.0,1.0,0.016666666666666666 +2582,1702212165456.0,1.0,0.016666666666666666 +2583,1702212225456.0,1.0,0.016666666666666666 +2584,1702212285456.0,1.0,0.016666666666666666 +2585,1702212345456.0,1.0,0.016666666666666666 +2586,1702212405456.0,1.0,0.016666666666666666 +2587,1702212465456.0,1.0,0.016666666666666666 +2588,1702212525456.0,1.0,0.016666666666666666 +2589,1702212585456.0,1.0,0.016666666666666666 +2590,1702212645456.0,1.0,0.016666666666666666 +2591,1702212705456.0,1.0,0.016666666666666666 +2592,1702212765456.0,1.0,0.016666666666666666 +2593,1702212825456.0,1.0,0.016666666666666666 +2594,1702212885456.0,1.0,0.016666666666666666 +2595,1702212945456.0,1.0,0.016666666666666666 +2596,1702213005456.0,1.0,0.016666666666666666 +2597,1702213065456.0,1.0,0.016666666666666666 +2598,1702213125456.0,1.0,0.016666666666666666 +2599,1702213185456.0,1.0,0.016666666666666666 +2600,1702213245456.0,1.0,0.016666666666666666 +2601,1702213305456.0,1.0,0.016666666666666666 +2602,1702213365456.0,1.0,0.016666666666666666 +2603,1702213425456.0,1.0,0.016666666666666666 +2604,1702213485456.0,1.0,0.016666666666666666 +2605,1702213545456.0,1.0,0.016666666666666666 +2606,1702213605456.0,1.0,0.016666666666666666 +2607,1702213665456.0,1.0,0.016666666666666666 +2608,1702213725456.0,1.0,0.016666666666666666 +2609,1702213785456.0,1.0,0.016666666666666666 +2610,1702213845456.0,1.0,0.016666666666666666 +2611,1702213905456.0,1.0,0.016666666666666666 +2612,1702213965456.0,1.0,0.016666666666666666 +2613,1702214025456.0,1.0,0.016666666666666666 +2614,1702214085456.0,1.0,0.016666666666666666 +2615,1702214145456.0,1.0,0.016666666666666666 +2616,1702214205456.0,1.0,0.016666666666666666 +2617,1702214265456.0,1.0,0.016666666666666666 +2618,1702214325456.0,1.0,0.016666666666666666 +2619,1702214385456.0,1.0,0.016666666666666666 +2620,1702214445456.0,1.0,0.016666666666666666 +2621,1702214505456.0,1.0,0.016666666666666666 +2622,1702214565456.0,1.0,0.016666666666666666 +2623,1702214625456.0,1.0,0.016666666666666666 +2624,1702214685456.0,1.0,0.016666666666666666 +2625,1702214745456.0,1.0,0.016666666666666666 +2626,1702214805456.0,1.0,0.016666666666666666 +2627,1702214865456.0,1.0,0.016666666666666666 +2628,1702214925456.0,1.0,0.016666666666666666 +2629,1702214985456.0,1.0,0.016666666666666666 +2630,1702215045456.0,1.0,0.016666666666666666 +2631,1702215105456.0,1.0,0.016666666666666666 +2632,1702215165456.0,1.0,0.016666666666666666 +2633,1702215225456.0,1.0,0.016666666666666666 +2634,1702215285456.0,1.0,0.016666666666666666 +2635,1702215345456.0,1.0,0.016666666666666666 +2636,1702215405456.0,1.0,0.016666666666666666 +2637,1702215465456.0,1.0,0.016666666666666666 +2638,1702215525456.0,1.0,0.016666666666666666 +2639,1702215585456.0,1.0,0.016666666666666666 +2640,1702215645456.0,1.0,0.016666666666666666 +2641,1702215705456.0,1.0,0.016666666666666666 +2642,1702215765456.0,1.0,0.016666666666666666 +2643,1702215825456.0,1.0,0.016666666666666666 +2644,1702215885456.0,1.0,0.016666666666666666 +2645,1702215945456.0,1.0,0.016666666666666666 +2646,1702216005456.0,1.0,0.016666666666666666 +2647,1702216065456.0,1.0,0.016666666666666666 +2648,1702216125456.0,1.0,0.016666666666666666 +2649,1702216185456.0,1.0,0.016666666666666666 +2650,1702216245456.0,1.0,0.016666666666666666 +2651,1702216305456.0,1.0,0.016666666666666666 +2652,1702216365456.0,1.0,0.016666666666666666 +2653,1702216425456.0,1.0,0.016666666666666666 +2654,1702216485456.0,1.0,0.016666666666666666 +2655,1702216545456.0,1.0,0.016666666666666666 +2656,1702216605456.0,1.0,0.016666666666666666 +2657,1702216665456.0,1.0,0.016666666666666666 +2658,1702216725456.0,1.0,0.016666666666666666 +2659,1702216785456.0,1.0,0.016666666666666666 +2660,1702216845456.0,1.0,0.016666666666666666 +2661,1702216905456.0,1.0,0.016666666666666666 +2662,1702216965456.0,1.0,0.016666666666666666 +2663,1702217025456.0,1.0,0.016666666666666666 +2664,1702217085456.0,1.0,0.016666666666666666 +2665,1702217145456.0,1.0,0.016666666666666666 +2666,1702217205456.0,1.0,0.016666666666666666 +2667,1702217265456.0,1.0,0.016666666666666666 +2668,1702217325456.0,1.0,0.016666666666666666 +2669,1702217385456.0,1.0,0.016666666666666666 +2670,1702217445456.0,1.0,0.016666666666666666 +2671,1702217505456.0,1.0,0.016666666666666666 +2672,1702217565456.0,1.0,0.016666666666666666 +2673,1702217625456.0,1.0,0.016666666666666666 +2674,1702217685456.0,1.0,0.016666666666666666 +2675,1702217745456.0,1.0,0.016666666666666666 +2676,1702217805456.0,1.0,0.016666666666666666 +2677,1702217865456.0,1.0,0.016666666666666666 +2678,1702217925456.0,1.0,0.016666666666666666 +2679,1702217985456.0,1.0,0.016666666666666666 +2680,1702218045456.0,1.0,0.016666666666666666 +2681,1702218105456.0,1.0,0.016666666666666666 +2682,1702218165456.0,1.0,0.016666666666666666 +2683,1702218225456.0,1.0,0.016666666666666666 +2684,1702218285456.0,1.0,0.016666666666666666 +2685,1702218345456.0,1.0,0.016666666666666666 +2686,1702218405456.0,1.0,0.016666666666666666 +2687,1702218465456.0,1.0,0.016666666666666666 +2688,1702218525456.0,1.0,0.016666666666666666 +2689,1702218585456.0,1.0,0.016666666666666666 +2690,1702218645456.0,1.0,0.016666666666666666 +2691,1702218705456.0,1.0,0.016666666666666666 +2692,1702218765456.0,1.0,0.016666666666666666 +2693,1702218825456.0,1.0,0.016666666666666666 +2694,1702218885456.0,1.0,0.016666666666666666 +2695,1702218945456.0,1.0,0.016666666666666666 +2696,1702219005456.0,1.0,0.016666666666666666 +2697,1702219065456.0,1.0,0.016666666666666666 +2698,1702219125456.0,1.0,0.016666666666666666 +2699,1702219185456.0,1.0,0.016666666666666666 +2700,1702219245456.0,1.0,0.016666666666666666 +2701,1702219305456.0,1.0,0.016666666666666666 +2702,1702219365456.0,1.0,0.016666666666666666 +2703,1702219425456.0,1.0,0.016666666666666666 +2704,1702219485456.0,1.0,0.016666666666666666 +2705,1702219545456.0,1.0,0.016666666666666666 +2706,1702219605456.0,1.0,0.016666666666666666 +2707,1702219665456.0,1.0,0.016666666666666666 +2708,1702219725456.0,1.0,0.016666666666666666 +2709,1702219785456.0,1.0,0.016666666666666666 +2710,1702219845456.0,1.0,0.016666666666666666 +2711,1702219905456.0,1.0,0.016666666666666666 +2712,1702219965456.0,1.0,0.016666666666666666 +2713,1702220025456.0,1.0,0.016666666666666666 +2714,1702220085456.0,1.0,0.016666666666666666 +2715,1702220145456.0,1.0,0.016666666666666666 +2716,1702220205456.0,1.0,0.016666666666666666 +2717,1702220265456.0,1.0,0.016666666666666666 +2718,1702220325456.0,1.0,0.016666666666666666 +2719,1702220385456.0,1.0,0.016666666666666666 +2720,1702220445456.0,1.0,0.016666666666666666 +2721,1702220505456.0,1.0,0.016666666666666666 +2722,1702220565456.0,1.0,0.016666666666666666 +2723,1702220625456.0,1.0,0.016666666666666666 +2724,1702220685456.0,1.0,0.016666666666666666 +2725,1702220745456.0,1.0,0.016666666666666666 +2726,1702220805456.0,1.0,0.016666666666666666 +2727,1702220865456.0,1.0,0.016666666666666666 +2728,1702220925456.0,1.0,0.016666666666666666 +2729,1702220985456.0,1.0,0.016666666666666666 +2730,1702221045456.0,1.0,0.016666666666666666 +2731,1702221105456.0,1.0,0.016666666666666666 +2732,1702221165456.0,1.0,0.016666666666666666 +2733,1702221225456.0,1.0,0.016666666666666666 +2734,1702221285456.0,1.0,0.016666666666666666 +2735,1702221345456.0,1.0,0.016666666666666666 +2736,1702221405456.0,1.0,0.016666666666666666 +2737,1702221465456.0,1.0,0.016666666666666666 +2738,1702221525456.0,1.0,0.016666666666666666 +2739,1702221585456.0,1.0,0.016666666666666666 +2740,1702221645456.0,1.0,0.016666666666666666 +2741,1702221705456.0,1.0,0.016666666666666666 +2742,1702221765456.0,1.0,0.016666666666666666 +2743,1702221825456.0,1.0,0.016666666666666666 +2744,1702221885456.0,1.0,0.016666666666666666 +2745,1702221945456.0,1.0,0.016666666666666666 +2746,1702222005456.0,1.0,0.016666666666666666 +2747,1702222065456.0,1.0,0.016666666666666666 +2748,1702222125456.0,1.0,0.016666666666666666 +2749,1702222185456.0,1.0,0.016666666666666666 +2750,1702222245456.0,1.0,0.016666666666666666 +2751,1702222305456.0,1.0,0.016666666666666666 +2752,1702222365456.0,1.0,0.016666666666666666 +2753,1702222425456.0,1.0,0.016666666666666666 +2754,1702222485456.0,1.0,0.016666666666666666 +2755,1702222545456.0,1.0,0.016666666666666666 +2756,1702222605456.0,1.0,0.016666666666666666 +2757,1702222665456.0,1.0,0.016666666666666666 +2758,1702222725456.0,1.0,0.016666666666666666 +2759,1702222785456.0,1.0,0.016666666666666666 +2760,1702222845456.0,1.0,0.016666666666666666 +2761,1702222905456.0,1.0,0.016666666666666666 +2762,1702222965456.0,1.0,0.016666666666666666 +2763,1702223025456.0,1.0,0.016666666666666666 +2764,1702223085456.0,1.0,0.016666666666666666 +2765,1702223145456.0,1.0,0.016666666666666666 +2766,1702223205456.0,1.0,0.016666666666666666 +2767,1702223265456.0,1.0,0.016666666666666666 +2768,1702223325456.0,1.0,0.016666666666666666 +2769,1702223385456.0,1.0,0.016666666666666666 +2770,1702223445456.0,1.0,0.016666666666666666 +2771,1702223505456.0,1.0,0.016666666666666666 +2772,1702223565456.0,1.0,0.016666666666666666 +2773,1702223625456.0,1.0,0.016666666666666666 +2774,1702223685456.0,1.0,0.016666666666666666 +2775,1702223745456.0,1.0,0.016666666666666666 +2776,1702223805456.0,1.0,0.016666666666666666 +2777,1702223865456.0,1.0,0.016666666666666666 +2778,1702223925456.0,1.0,0.016666666666666666 +2779,1702223985456.0,1.0,0.016666666666666666 +2780,1702224045456.0,1.0,0.016666666666666666 +2781,1702224105456.0,1.0,0.016666666666666666 +2782,1702224165456.0,1.0,0.016666666666666666 +2783,1702224225456.0,1.0,0.016666666666666666 +2784,1702224285456.0,1.0,0.016666666666666666 +2785,1702224345456.0,1.0,0.016666666666666666 +2786,1702224405456.0,1.0,0.016666666666666666 +2787,1702224465456.0,1.0,0.016666666666666666 +2788,1702224525456.0,1.0,0.016666666666666666 +2789,1702224585456.0,1.0,0.016666666666666666 +2790,1702224645456.0,1.0,0.016666666666666666 +2791,1702224705456.0,1.0,0.016666666666666666 +2792,1702224765456.0,1.0,0.016666666666666666 +2793,1702224825456.0,1.0,0.016666666666666666 +2794,1702224885456.0,1.0,0.016666666666666666 +2795,1702224945456.0,1.0,0.016666666666666666 +2796,1702225005456.0,1.0,0.016666666666666666 +2797,1702225065456.0,1.0,0.016666666666666666 +2798,1702225125456.0,1.0,0.016666666666666666 +2799,1702225185456.0,1.0,0.016666666666666666 +2800,1702225245456.0,1.0,0.016666666666666666 +2801,1702225305456.0,1.0,0.016666666666666666 +2802,1702225365456.0,1.0,0.016666666666666666 +2803,1702225425456.0,1.0,0.016666666666666666 +2804,1702225485456.0,1.0,0.016666666666666666 +2805,1702225545456.0,1.0,0.016666666666666666 +2806,1702225605456.0,1.0,0.016666666666666666 +2807,1702225665456.0,1.0,0.016666666666666666 +2808,1702225725456.0,1.0,0.016666666666666666 +2809,1702225785456.0,1.0,0.016666666666666666 +2810,1702225845456.0,1.0,0.016666666666666666 +2811,1702225905456.0,1.0,0.016666666666666666 +2812,1702225965456.0,1.0,0.016666666666666666 +2813,1702226025456.0,1.0,0.016666666666666666 +2814,1702226085456.0,1.0,0.016666666666666666 +2815,1702226145456.0,1.0,0.016666666666666666 +2816,1702226205456.0,1.0,0.016666666666666666 +2817,1702226265456.0,1.0,0.016666666666666666 +2818,1702226325456.0,1.0,0.016666666666666666 +2819,1702226385456.0,1.0,0.016666666666666666 +2820,1702226445456.0,1.0,0.016666666666666666 +2821,1702226505456.0,1.0,0.016666666666666666 +2822,1702226565456.0,1.0,0.016666666666666666 +2823,1702226625456.0,1.0,0.016666666666666666 +2824,1702226685456.0,1.0,0.016666666666666666 +2825,1702226745456.0,1.0,0.016666666666666666 +2826,1702226805456.0,1.0,0.016666666666666666 +2827,1702226865456.0,1.0,0.016666666666666666 +2828,1702226925456.0,1.0,0.016666666666666666 +2829,1702226985456.0,1.0,0.016666666666666666 +2830,1702227045456.0,1.0,0.016666666666666666 +2831,1702227105456.0,1.0,0.016666666666666666 +2832,1702227165456.0,1.0,0.016666666666666666 +2833,1702227225456.0,1.0,0.016666666666666666 +2834,1702227285456.0,1.0,0.016666666666666666 +2835,1702227345456.0,1.0,0.016666666666666666 +2836,1702227405456.0,1.0,0.016666666666666666 +2837,1702227465456.0,1.0,0.016666666666666666 +2838,1702227525456.0,1.0,0.016666666666666666 +2839,1702227585456.0,1.0,0.016666666666666666 +2840,1702227645456.0,1.0,0.016666666666666666 +2841,1702227705456.0,1.0,0.016666666666666666 +2842,1702227765456.0,1.0,0.016666666666666666 +2843,1702227825456.0,1.0,0.016666666666666666 +2844,1702227885456.0,1.0,0.016666666666666666 +2845,1702227945456.0,1.0,0.016666666666666666 +2846,1702228005456.0,1.0,0.016666666666666666 +2847,1702228065456.0,1.0,0.016666666666666666 +2848,1702228125456.0,1.0,0.016666666666666666 +2849,1702228185456.0,1.0,0.016666666666666666 +2850,1702228245456.0,1.0,0.016666666666666666 +2851,1702228305456.0,1.0,0.016666666666666666 +2852,1702228365456.0,1.0,0.016666666666666666 +2853,1702228425456.0,1.0,0.016666666666666666 +2854,1702228485456.0,1.0,0.016666666666666666 +2855,1702228545456.0,1.0,0.016666666666666666 +2856,1702228605456.0,1.0,0.016666666666666666 +2857,1702228665456.0,1.0,0.016666666666666666 +2858,1702228725456.0,1.0,0.016666666666666666 +2859,1702228785456.0,1.0,0.016666666666666666 +2860,1702228845456.0,1.0,0.016666666666666666 +2861,1702228905456.0,1.0,0.016666666666666666 +2862,1702228965456.0,1.0,0.016666666666666666 +2863,1702229025456.0,1.0,0.016666666666666666 +2864,1702229085456.0,1.0,0.016666666666666666 +2865,1702229145456.0,1.0,0.016666666666666666 +2866,1702229205456.0,1.0,0.016666666666666666 +2867,1702229265456.0,1.0,0.016666666666666666 +2868,1702229325456.0,1.0,0.016666666666666666 +2869,1702229385456.0,1.0,0.016666666666666666 +2870,1702229445456.0,1.0,0.016666666666666666 +2871,1702229505456.0,1.0,0.016666666666666666 +2872,1702229565456.0,1.0,0.016666666666666666 +2873,1702229625456.0,1.0,0.016666666666666666 +2874,1702229685456.0,1.0,0.016666666666666666 +2875,1702229745456.0,1.0,0.016666666666666666 +2876,1702229805456.0,1.0,0.016666666666666666 +2877,1702229865456.0,1.0,0.016666666666666666 +2878,1702229925456.0,1.0,0.016666666666666666 +2879,1702229985456.0,1.0,0.016666666666666666 +2880,1702230045456.0,1.0,0.016666666666666666 +2881,1702230105456.0,1.0,0.016666666666666666 +2882,1702230165456.0,1.0,0.016666666666666666 +2883,1702230225456.0,1.0,0.016666666666666666 +2884,1702230285456.0,1.0,0.016666666666666666 +2885,1702230345456.0,1.0,0.016666666666666666 +2886,1702230405456.0,1.0,0.016666666666666666 +2887,1702230465456.0,1.0,0.016666666666666666 +2888,1702230525456.0,1.0,0.016666666666666666 +2889,1702230585456.0,1.0,0.016666666666666666 +2890,1702230645456.0,1.0,0.016666666666666666 +2891,1702230705456.0,1.0,0.016666666666666666 +2892,1702230765456.0,1.0,0.016666666666666666 +2893,1702230825456.0,1.0,0.016666666666666666 +2894,1702230885456.0,1.0,0.016666666666666666 +2895,1702230945456.0,1.0,0.016666666666666666 +2896,1702231005456.0,1.0,0.016666666666666666 +2897,1702231065456.0,1.0,0.016666666666666666 +2898,1702231125456.0,1.0,0.016666666666666666 +2899,1702231185456.0,1.0,0.016666666666666666 +2900,1702231245456.0,1.0,0.016666666666666666 +2901,1702231305456.0,1.0,0.016666666666666666 +2902,1702231365456.0,1.0,0.016666666666666666 +2903,1702231425456.0,1.0,0.016666666666666666 +2904,1702231485456.0,1.0,0.016666666666666666 +2905,1702231545456.0,1.0,0.016666666666666666 +2906,1702231605456.0,1.0,0.016666666666666666 +2907,1702231665456.0,1.0,0.016666666666666666 +2908,1702231725456.0,1.0,0.016666666666666666 +2909,1702231785456.0,1.0,0.016666666666666666 +2910,1702231845456.0,1.0,0.016666666666666666 +2911,1702231905456.0,1.0,0.016666666666666666 +2912,1702231965456.0,1.0,0.016666666666666666 +2913,1702232025456.0,1.0,0.016666666666666666 +2914,1702232085456.0,1.0,0.016666666666666666 +2915,1702232145456.0,1.0,0.016666666666666666 +2916,1702232205456.0,1.0,0.016666666666666666 +2917,1702232265456.0,1.0,0.016666666666666666 +2918,1702232325456.0,1.0,0.016666666666666666 +2919,1702232385456.0,1.0,0.016666666666666666 +2920,1702232445456.0,1.0,0.016666666666666666 +2921,1702232505456.0,1.0,0.016666666666666666 +2922,1702232565456.0,1.0,0.016666666666666666 +2923,1702232625456.0,1.0,0.016666666666666666 +2924,1702232685456.0,1.0,0.016666666666666666 +2925,1702232745456.0,1.0,0.016666666666666666 +2926,1702232805456.0,1.0,0.016666666666666666 +2927,1702232865456.0,1.0,0.016666666666666666 +2928,1702232925456.0,1.0,0.016666666666666666 +2929,1702232985456.0,1.0,0.016666666666666666 +2930,1702233045456.0,1.0,0.016666666666666666 +2931,1702233105456.0,1.0,0.016666666666666666 +2932,1702233165456.0,1.0,0.016666666666666666 +2933,1702233225456.0,1.0,0.016666666666666666 +2934,1702233285456.0,1.0,0.016666666666666666 +2935,1702233345456.0,1.0,0.016666666666666666 +2936,1702233405456.0,1.0,0.016666666666666666 +2937,1702233465456.0,1.0,0.016666666666666666 +2938,1702233525456.0,1.0,0.016666666666666666 +2939,1702233585456.0,1.0,0.016666666666666666 +2940,1702233645456.0,1.0,0.016666666666666666 +2941,1702233705456.0,1.0,0.016666666666666666 +2942,1702233765456.0,1.0,0.016666666666666666 +2943,1702233825456.0,1.0,0.016666666666666666 +2944,1702233885456.0,1.0,0.016666666666666666 +2945,1702233945456.0,1.0,0.016666666666666666 +2946,1702234005456.0,1.0,0.016666666666666666 +2947,1702234065456.0,1.0,0.016666666666666666 +2948,1702234125456.0,1.0,0.016666666666666666 +2949,1702234185456.0,1.0,0.016666666666666666 +2950,1702234245456.0,1.0,0.016666666666666666 +2951,1702234305456.0,1.0,0.016666666666666666 +2952,1702234365456.0,1.0,0.016666666666666666 +2953,1702234425456.0,1.0,0.016666666666666666 +2954,1702234485456.0,1.0,0.016666666666666666 +2955,1702234545456.0,1.0,0.016666666666666666 +2956,1702234605456.0,1.0,0.016666666666666666 +2957,1702234665456.0,1.0,0.016666666666666666 +2958,1702234725456.0,1.0,0.016666666666666666 +2959,1702234785456.0,1.0,0.016666666666666666 +2960,1702234845456.0,1.0,0.016666666666666666 +2961,1702234905456.0,1.0,0.016666666666666666 +2962,1702234965456.0,1.0,0.016666666666666666 +2963,1702235025456.0,1.0,0.016666666666666666 +2964,1702235085456.0,1.0,0.016666666666666666 +2965,1702235145456.0,1.0,0.016666666666666666 +2966,1702235205456.0,1.0,0.016666666666666666 +2967,1702235265456.0,1.0,0.016666666666666666 +2968,1702235325456.0,1.0,0.016666666666666666 +2969,1702235385456.0,1.0,0.016666666666666666 +2970,1702235445456.0,1.0,0.016666666666666666 +2971,1702235505456.0,1.0,0.016666666666666666 +2972,1702235565456.0,1.0,0.016666666666666666 +2973,1702235625456.0,1.0,0.016666666666666666 +2974,1702235685456.0,1.0,0.016666666666666666 +2975,1702235745456.0,1.0,0.016666666666666666 +2976,1702235805456.0,1.0,0.016666666666666666 +2977,1702235865456.0,1.0,0.016666666666666666 +2978,1702235925456.0,1.0,0.016666666666666666 +2979,1702235985456.0,1.0,0.016666666666666666 +2980,1702236045456.0,1.0,0.016666666666666666 +2981,1702236105456.0,1.0,0.016666666666666666 +2982,1702236165456.0,1.0,0.016666666666666666 +2983,1702236225456.0,1.0,0.016666666666666666 +2984,1702236285456.0,1.0,0.016666666666666666 +2985,1702236345456.0,1.0,0.016666666666666666 +2986,1702236405456.0,1.0,0.016666666666666666 +2987,1702236465456.0,1.0,0.016666666666666666 +2988,1702236525456.0,1.0,0.016666666666666666 +2989,1702236585456.0,1.0,0.016666666666666666 +2990,1702236645456.0,1.0,0.016666666666666666 +2991,1702236705456.0,1.0,0.016666666666666666 +2992,1702236765456.0,1.0,0.016666666666666666 +2993,1702236825456.0,1.0,0.016666666666666666 +2994,1702236885456.0,1.0,0.016666666666666666 +2995,1702236945456.0,1.0,0.016666666666666666 +2996,1702237005456.0,1.0,0.016666666666666666 +2997,1702237065456.0,1.0,0.016666666666666666 +2998,1702237125456.0,1.0,0.016666666666666666 +2999,1702237185456.0,1.0,0.016666666666666666 +3000,1702237245456.0,1.0,0.016666666666666666 +3001,1702237305456.0,1.0,0.016666666666666666 +3002,1702237365456.0,1.0,0.016666666666666666 +3003,1702237425456.0,1.0,0.016666666666666666 +3004,1702237485456.0,1.0,0.016666666666666666 +3005,1702237545456.0,1.0,0.016666666666666666 +3006,1702237605456.0,1.0,0.016666666666666666 +3007,1702237665456.0,1.0,0.016666666666666666 +3008,1702237725456.0,1.0,0.016666666666666666 +3009,1702237785456.0,1.0,0.016666666666666666 +3010,1702237845456.0,1.0,0.016666666666666666 +3011,1702237905456.0,1.0,0.016666666666666666 +3012,1702237965456.0,1.0,0.016666666666666666 +3013,1702238025456.0,1.0,0.016666666666666666 +3014,1702238085456.0,1.0,0.016666666666666666 +3015,1702238145456.0,1.0,0.016666666666666666 +3016,1702238205456.0,1.0,0.016666666666666666 +3017,1702238265456.0,1.0,0.016666666666666666 +3018,1702238325456.0,1.0,0.016666666666666666 +3019,1702238385456.0,1.0,0.016666666666666666 +3020,1702238445456.0,1.0,0.016666666666666666 +3021,1702238505456.0,1.0,0.016666666666666666 +3022,1702238565456.0,1.0,0.016666666666666666 +3023,1702238625456.0,1.0,0.016666666666666666 +3024,1702238685456.0,1.0,0.016666666666666666 +3025,1702238745456.0,1.0,0.016666666666666666 +3026,1702238805456.0,1.0,0.016666666666666666 +3027,1702238865456.0,1.0,0.016666666666666666 +3028,1702238925456.0,1.0,0.016666666666666666 +3029,1702238985456.0,1.0,0.016666666666666666 +3030,1702239045456.0,1.0,0.016666666666666666 +3031,1702239105456.0,1.0,0.016666666666666666 +3032,1702239165456.0,1.0,0.016666666666666666 +3033,1702239225456.0,1.0,0.016666666666666666 +3034,1702239285456.0,1.0,0.016666666666666666 +3035,1702239345456.0,1.0,0.016666666666666666 +3036,1702239405456.0,1.0,0.016666666666666666 +3037,1702239465456.0,1.0,0.016666666666666666 +3038,1702239525456.0,1.0,0.016666666666666666 +3039,1702239585456.0,1.0,0.016666666666666666 +3040,1702239645456.0,1.0,0.016666666666666666 +3041,1702239705456.0,1.0,0.016666666666666666 +3042,1702239765456.0,1.0,0.016666666666666666 +3043,1702239825456.0,1.0,0.016666666666666666 +3044,1702239885456.0,1.0,0.016666666666666666 +3045,1702239945456.0,1.0,0.016666666666666666 +3046,1702240005456.0,1.0,0.016666666666666666 +3047,1702240065456.0,1.0,0.016666666666666666 +3048,1702240125456.0,1.0,0.016666666666666666 +3049,1702240185456.0,1.0,0.016666666666666666 +3050,1702240245456.0,1.0,0.016666666666666666 +3051,1702240305456.0,1.0,0.016666666666666666 +3052,1702240365456.0,1.0,0.016666666666666666 +3053,1702240425456.0,1.0,0.016666666666666666 +3054,1702240485456.0,1.0,0.016666666666666666 +3055,1702240545456.0,1.0,0.016666666666666666 +3056,1702240605456.0,1.0,0.016666666666666666 +3057,1702240665456.0,1.0,0.016666666666666666 +3058,1702240725456.0,1.0,0.016666666666666666 +3059,1702240785456.0,1.0,0.016666666666666666 +3060,1702240845456.0,1.0,0.016666666666666666 +3061,1702240905456.0,1.0,0.016666666666666666 +3062,1702240965456.0,1.0,0.016666666666666666 +3063,1702241025456.0,1.0,0.016666666666666666 +3064,1702241085456.0,1.0,0.016666666666666666 +3065,1702241145456.0,1.0,0.016666666666666666 +3066,1702241205456.0,1.0,0.016666666666666666 +3067,1702241265456.0,1.0,0.016666666666666666 +3068,1702241325456.0,1.0,0.016666666666666666 +3069,1702241385456.0,1.0,0.016666666666666666 +3070,1702241445456.0,1.0,0.016666666666666666 +3071,1702241505456.0,1.0,0.016666666666666666 +3072,1702241565456.0,1.0,0.016666666666666666 +3073,1702241625456.0,1.0,0.016666666666666666 +3074,1702241685456.0,1.0,0.016666666666666666 +3075,1702241745456.0,1.0,0.016666666666666666 +3076,1702241805456.0,1.0,0.016666666666666666 +3077,1702241865456.0,1.0,0.016666666666666666 +3078,1702241925456.0,1.0,0.016666666666666666 +3079,1702241985456.0,1.0,0.016666666666666666 +3080,1702242045456.0,1.0,0.016666666666666666 +3081,1702242105456.0,1.0,0.016666666666666666 +3082,1702242165456.0,1.0,0.016666666666666666 +3083,1702242225456.0,1.0,0.016666666666666666 +3084,1702242285456.0,1.0,0.016666666666666666 +3085,1702242345456.0,1.0,0.016666666666666666 +3086,1702242405456.0,1.0,0.016666666666666666 +3087,1702242465456.0,1.0,0.016666666666666666 +3088,1702242525456.0,1.0,0.016666666666666666 +3089,1702242585456.0,1.0,0.016666666666666666 +3090,1702242645456.0,1.0,0.016666666666666666 +3091,1702242705456.0,1.0,0.016666666666666666 +3092,1702242765456.0,1.0,0.016666666666666666 +3093,1702242825456.0,1.0,0.016666666666666666 +3094,1702242885456.0,1.0,0.016666666666666666 +3095,1702242945456.0,1.0,0.016666666666666666 +3096,1702243005456.0,1.0,0.016666666666666666 +3097,1702243065456.0,1.0,0.016666666666666666 +3098,1702243125456.0,1.0,0.016666666666666666 +3099,1702243185456.0,1.0,0.016666666666666666 +3100,1702243245456.0,1.0,0.016666666666666666 +3101,1702243305456.0,1.0,0.016666666666666666 +3102,1702243365456.0,1.0,0.016666666666666666 +3103,1702243425456.0,1.0,0.016666666666666666 +3104,1702243485456.0,1.0,0.016666666666666666 +3105,1702243545456.0,1.0,0.016666666666666666 +3106,1702243605456.0,1.0,0.016666666666666666 +3107,1702243665456.0,1.0,0.016666666666666666 +3108,1702243725456.0,1.0,0.016666666666666666 +3109,1702243785456.0,1.0,0.016666666666666666 +3110,1702243845456.0,1.0,0.016666666666666666 +3111,1702243905456.0,1.0,0.016666666666666666 +3112,1702243965456.0,1.0,0.016666666666666666 +3113,1702244025456.0,1.0,0.016666666666666666 +3114,1702244085456.0,1.0,0.016666666666666666 +3115,1702244145456.0,1.0,0.016666666666666666 +3116,1702244205456.0,1.0,0.016666666666666666 +3117,1702244265456.0,1.0,0.016666666666666666 +3118,1702244325456.0,1.0,0.016666666666666666 +3119,1702244385456.0,1.0,0.016666666666666666 +3120,1702244445456.0,1.0,0.016666666666666666 +3121,1702244505456.0,1.0,0.016666666666666666 +3122,1702244565456.0,1.0,0.016666666666666666 +3123,1702244625456.0,1.0,0.016666666666666666 +3124,1702244685456.0,1.0,0.016666666666666666 +3125,1702244745456.0,1.0,0.016666666666666666 +3126,1702244805456.0,1.0,0.016666666666666666 +3127,1702244865456.0,1.0,0.016666666666666666 +3128,1702244925456.0,1.0,0.016666666666666666 +3129,1702244985456.0,1.0,0.016666666666666666 +3130,1702245045456.0,1.0,0.016666666666666666 +3131,1702245105456.0,1.0,0.016666666666666666 +3132,1702245165456.0,1.0,0.016666666666666666 +3133,1702245225456.0,1.0,0.016666666666666666 +3134,1702245285456.0,1.0,0.016666666666666666 +3135,1702245345456.0,1.0,0.016666666666666666 +3136,1702245405456.0,1.0,0.016666666666666666 +3137,1702245465456.0,1.0,0.016666666666666666 +3138,1702245525456.0,1.0,0.016666666666666666 +3139,1702245585456.0,1.0,0.016666666666666666 +3140,1702245645456.0,1.0,0.016666666666666666 +3141,1702245705456.0,1.0,0.016666666666666666 +3142,1702245765456.0,1.0,0.016666666666666666 +3143,1702245825456.0,1.0,0.016666666666666666 +3144,1702245885456.0,1.0,0.016666666666666666 +3145,1702245945456.0,1.0,0.016666666666666666 +3146,1702246005456.0,1.0,0.016666666666666666 +3147,1702246065456.0,1.0,0.016666666666666666 +3148,1702246125456.0,1.0,0.016666666666666666 +3149,1702246185456.0,1.0,0.016666666666666666 +3150,1702246245456.0,1.0,0.016666666666666666 +3151,1702246305456.0,1.0,0.016666666666666666 +3152,1702246365456.0,1.0,0.016666666666666666 +3153,1702246425456.0,1.0,0.016666666666666666 +3154,1702246485456.0,1.0,0.016666666666666666 +3155,1702246545456.0,1.0,0.016666666666666666 +3156,1702246605456.0,1.0,0.016666666666666666 +3157,1702246665456.0,1.0,0.016666666666666666 +3158,1702246725456.0,1.0,0.016666666666666666 +3159,1702246785456.0,1.0,0.016666666666666666 +3160,1702246845456.0,1.0,0.016666666666666666 +3161,1702246905456.0,1.0,0.016666666666666666 +3162,1702246965456.0,1.0,0.016666666666666666 +3163,1702247025456.0,1.0,0.016666666666666666 +3164,1702247085456.0,1.0,0.016666666666666666 +3165,1702247145456.0,1.0,0.016666666666666666 +3166,1702247205456.0,1.0,0.016666666666666666 +3167,1702247265456.0,1.0,0.016666666666666666 +3168,1702247325456.0,1.0,0.016666666666666666 +3169,1702247385456.0,1.0,0.016666666666666666 +3170,1702247445456.0,1.0,0.016666666666666666 +3171,1702247505456.0,1.0,0.016666666666666666 +3172,1702247565456.0,1.0,0.016666666666666666 +3173,1702247625456.0,1.0,0.016666666666666666 +3174,1702247685456.0,1.0,0.016666666666666666 +3175,1702247745456.0,1.0,0.016666666666666666 +3176,1702247805456.0,1.0,0.016666666666666666 +3177,1702247865456.0,1.0,0.016666666666666666 +3178,1702247925456.0,1.0,0.016666666666666666 +3179,1702247985456.0,1.0,0.016666666666666666 +3180,1702248045456.0,1.0,0.016666666666666666 +3181,1702248105456.0,1.0,0.016666666666666666 +3182,1702248165456.0,1.0,0.016666666666666666 +3183,1702248225456.0,1.0,0.016666666666666666 +3184,1702248285456.0,1.0,0.016666666666666666 +3185,1702248345456.0,1.0,0.016666666666666666 +3186,1702248405456.0,1.0,0.016666666666666666 +3187,1702248465456.0,1.0,0.016666666666666666 +3188,1702248525456.0,1.0,0.016666666666666666 +3189,1702248585456.0,1.0,0.016666666666666666 +3190,1702248645456.0,1.0,0.016666666666666666 +3191,1702248705456.0,1.0,0.016666666666666666 +3192,1702248765456.0,1.0,0.016666666666666666 +3193,1702248825456.0,1.0,0.016666666666666666 +3194,1702248885456.0,1.0,0.016666666666666666 +3195,1702248945456.0,1.0,0.016666666666666666 +3196,1702249005456.0,1.0,0.016666666666666666 +3197,1702249065456.0,1.0,0.016666666666666666 +3198,1702249125456.0,1.0,0.016666666666666666 +3199,1702249185456.0,1.0,0.016666666666666666 +3200,1702249245456.0,1.0,0.016666666666666666 +3201,1702249305456.0,1.0,0.016666666666666666 +3202,1702249365456.0,1.0,0.016666666666666666 +3203,1702249425456.0,1.0,0.016666666666666666 +3204,1702249485456.0,1.0,0.016666666666666666 +3205,1702249545456.0,1.0,0.016666666666666666 +3206,1702249605456.0,1.0,0.016666666666666666 +3207,1702249665456.0,1.0,0.016666666666666666 +3208,1702249725456.0,1.0,0.016666666666666666 +3209,1702249785456.0,1.0,0.016666666666666666 +3210,1702249845456.0,1.0,0.016666666666666666 +3211,1702249905456.0,1.0,0.016666666666666666 +3212,1702249965456.0,1.0,0.016666666666666666 +3213,1702250025456.0,1.0,0.016666666666666666 +3214,1702250085456.0,1.0,0.016666666666666666 +3215,1702250145456.0,1.0,0.016666666666666666 +3216,1702250205456.0,1.0,0.016666666666666666 +3217,1702250265456.0,1.0,0.016666666666666666 +3218,1702250325456.0,1.0,0.016666666666666666 +3219,1702250385456.0,1.0,0.016666666666666666 +3220,1702250445456.0,1.0,0.016666666666666666 +3221,1702250505456.0,1.0,0.016666666666666666 +3222,1702250565456.0,1.0,0.016666666666666666 +3223,1702250625456.0,1.0,0.016666666666666666 +3224,1702250685456.0,1.0,0.016666666666666666 +3225,1702250745456.0,1.0,0.016666666666666666 +3226,1702250805456.0,1.0,0.016666666666666666 +3227,1702250865456.0,1.0,0.016666666666666666 +3228,1702250925456.0,1.0,0.016666666666666666 +3229,1702250985456.0,1.0,0.016666666666666666 +3230,1702251045456.0,1.0,0.016666666666666666 +3231,1702251105456.0,1.0,0.016666666666666666 +3232,1702251165456.0,1.0,0.016666666666666666 +3233,1702251225456.0,1.0,0.016666666666666666 +3234,1702251285456.0,1.0,0.016666666666666666 +3235,1702251345456.0,1.0,0.016666666666666666 +3236,1702251405456.0,1.0,0.016666666666666666 +3237,1702251465456.0,1.0,0.016666666666666666 +3238,1702251525456.0,1.0,0.016666666666666666 +3239,1702251585456.0,1.0,0.016666666666666666 +3240,1702251645456.0,1.0,0.016666666666666666 +3241,1702251705456.0,1.0,0.016666666666666666 +3242,1702251765456.0,1.0,0.016666666666666666 +3243,1702251825456.0,1.0,0.016666666666666666 +3244,1702251885456.0,1.0,0.016666666666666666 +3245,1702251945456.0,1.0,0.016666666666666666 +3246,1702252005456.0,1.0,0.016666666666666666 +3247,1702252065456.0,1.0,0.016666666666666666 +3248,1702252125456.0,1.0,0.016666666666666666 +3249,1702252185456.0,1.0,0.016666666666666666 +3250,1702252245456.0,1.0,0.016666666666666666 +3251,1702252305456.0,1.0,0.016666666666666666 +3252,1702252365456.0,1.0,0.016666666666666666 +3253,1702252425456.0,1.0,0.016666666666666666 +3254,1702252485456.0,1.0,0.016666666666666666 +3255,1702252545456.0,1.0,0.016666666666666666 +3256,1702252605456.0,1.0,0.016666666666666666 +3257,1702252665456.0,1.0,0.016666666666666666 +3258,1702252725456.0,1.0,0.016666666666666666 +3259,1702252785456.0,1.0,0.016666666666666666 +3260,1702252845456.0,1.0,0.016666666666666666 +3261,1702252905456.0,1.0,0.016666666666666666 +3262,1702252965456.0,1.0,0.016666666666666666 +3263,1702253025456.0,1.0,0.016666666666666666 +3264,1702253085456.0,1.0,0.016666666666666666 +3265,1702253145456.0,1.0,0.016666666666666666 +3266,1702253205456.0,1.0,0.016666666666666666 +3267,1702253265456.0,1.0,0.016666666666666666 +3268,1702253325456.0,1.0,0.016666666666666666 +3269,1702253385456.0,1.0,0.016666666666666666 +3270,1702253445456.0,1.0,0.016666666666666666 +3271,1702253505456.0,1.0,0.016666666666666666 +3272,1702253565456.0,1.0,0.016666666666666666 +3273,1702253625456.0,1.0,0.016666666666666666 +3274,1702253685456.0,1.0,0.016666666666666666 +3275,1702253745456.0,1.0,0.016666666666666666 +3276,1702253805456.0,1.0,0.016666666666666666 +3277,1702253865456.0,1.0,0.016666666666666666 +3278,1702253925456.0,1.0,0.016666666666666666 +3279,1702253985456.0,1.0,0.016666666666666666 +3280,1702254045456.0,1.0,0.016666666666666666 +3281,1702254105456.0,1.0,0.016666666666666666 +3282,1702254165456.0,1.0,0.016666666666666666 +3283,1702254225456.0,1.0,0.016666666666666666 +3284,1702254285456.0,1.0,0.016666666666666666 +3285,1702254345456.0,1.0,0.016666666666666666 +3286,1702254405456.0,1.0,0.016666666666666666 +3287,1702254465456.0,1.0,0.016666666666666666 +3288,1702254525456.0,1.0,0.016666666666666666 +3289,1702254585456.0,1.0,0.016666666666666666 +3290,1702254645456.0,1.0,0.016666666666666666 +3291,1702254705456.0,1.0,0.016666666666666666 +3292,1702254765456.0,1.0,0.016666666666666666 +3293,1702254825456.0,1.0,0.016666666666666666 +3294,1702254885456.0,1.0,0.016666666666666666 +3295,1702254945456.0,1.0,0.016666666666666666 +3296,1702255005456.0,1.0,0.016666666666666666 +3297,1702255065456.0,1.0,0.016666666666666666 +3298,1702255125456.0,1.0,0.016666666666666666 +3299,1702255185456.0,1.0,0.016666666666666666 +3300,1702255245456.0,1.0,0.016666666666666666 +3301,1702255305456.0,1.0,0.016666666666666666 +3302,1702255365456.0,1.0,0.016666666666666666 +3303,1702255425456.0,1.0,0.016666666666666666 +3304,1702255485456.0,1.0,0.016666666666666666 +3305,1702255545456.0,1.0,0.016666666666666666 +3306,1702255605456.0,1.0,0.016666666666666666 +3307,1702255665456.0,1.0,0.016666666666666666 +3308,1702255725456.0,1.0,0.016666666666666666 +3309,1702255785456.0,1.0,0.016666666666666666 +3310,1702255845456.0,1.0,0.016666666666666666 +3311,1702255905456.0,1.0,0.016666666666666666 +3312,1702255965456.0,1.0,0.016666666666666666 +3313,1702256025456.0,1.0,0.016666666666666666 +3314,1702256085456.0,1.0,0.016666666666666666 +3315,1702256145456.0,1.0,0.016666666666666666 +3316,1702256205456.0,1.0,0.016666666666666666 +3317,1702256265456.0,1.0,0.016666666666666666 +3318,1702256325456.0,1.0,0.016666666666666666 +3319,1702256385456.0,1.0,0.016666666666666666 +3320,1702256445456.0,1.0,0.016666666666666666 +3321,1702256505456.0,1.0,0.016666666666666666 +3322,1702256565456.0,1.0,0.016666666666666666 +3323,1702256625456.0,1.0,0.016666666666666666 +3324,1702256685456.0,1.0,0.016666666666666666 +3325,1702256745456.0,1.0,0.016666666666666666 +3326,1702256805456.0,1.0,0.016666666666666666 +3327,1702256865456.0,1.0,0.016666666666666666 +3328,1702256925456.0,1.0,0.016666666666666666 +3329,1702256985456.0,1.0,0.016666666666666666 +3330,1702257045456.0,1.0,0.016666666666666666 +3331,1702257105456.0,1.0,0.016666666666666666 +3332,1702257165456.0,1.0,0.016666666666666666 +3333,1702257225456.0,1.0,0.016666666666666666 +3334,1702257285456.0,1.0,0.016666666666666666 +3335,1702257345456.0,1.0,0.016666666666666666 +3336,1702257405456.0,1.0,0.016666666666666666 +3337,1702257465456.0,1.0,0.016666666666666666 +3338,1702257525456.0,1.0,0.016666666666666666 +3339,1702257585456.0,1.0,0.016666666666666666 +3340,1702257645456.0,1.0,0.016666666666666666 +3341,1702257705456.0,1.0,0.016666666666666666 +3342,1702257765456.0,1.0,0.016666666666666666 +3343,1702257825456.0,1.0,0.016666666666666666 +3344,1702257885456.0,1.0,0.016666666666666666 +3345,1702257945456.0,1.0,0.016666666666666666 +3346,1702258005456.0,1.0,0.016666666666666666 +3347,1702258065456.0,1.0,0.016666666666666666 +3348,1702258125456.0,1.0,0.016666666666666666 +3349,1702258185456.0,1.0,0.016666666666666666 +3350,1702258245456.0,1.0,0.016666666666666666 +3351,1702258305456.0,1.0,0.016666666666666666 +3352,1702258365456.0,1.0,0.016666666666666666 +3353,1702258425456.0,1.0,0.016666666666666666 +3354,1702258485456.0,1.0,0.016666666666666666 +3355,1702258545456.0,1.0,0.016666666666666666 +3356,1702258605456.0,1.0,0.016666666666666666 +3357,1702258665456.0,1.0,0.016666666666666666 +3358,1702258725456.0,1.0,0.016666666666666666 +3359,1702258785456.0,1.0,0.016666666666666666 +3360,1702258845456.0,1.0,0.016666666666666666 +3361,1702258905456.0,1.0,0.016666666666666666 +3362,1702258965456.0,1.0,0.016666666666666666 +3363,1702259025456.0,1.0,0.016666666666666666 +3364,1702259085456.0,1.0,0.016666666666666666 +3365,1702259145456.0,1.0,0.016666666666666666 +3366,1702259205456.0,1.0,0.016666666666666666 +3367,1702259265456.0,1.0,0.016666666666666666 +3368,1702259325456.0,1.0,0.016666666666666666 +3369,1702259385456.0,1.0,0.016666666666666666 +3370,1702259445456.0,1.0,0.016666666666666666 +3371,1702259505456.0,1.0,0.016666666666666666 +3372,1702259565456.0,1.0,0.016666666666666666 +3373,1702259625456.0,1.0,0.016666666666666666 +3374,1702259685456.0,1.0,0.016666666666666666 +3375,1702259745456.0,1.0,0.016666666666666666 +3376,1702259805456.0,1.0,0.016666666666666666 +3377,1702259865456.0,1.0,0.016666666666666666 +3378,1702259925456.0,1.0,0.016666666666666666 +3379,1702259985456.0,1.0,0.016666666666666666 +3380,1702260045456.0,1.0,0.016666666666666666 +3381,1702260105456.0,1.0,0.016666666666666666 +3382,1702260165456.0,1.0,0.016666666666666666 +3383,1702260225456.0,1.0,0.016666666666666666 +3384,1702260285456.0,1.0,0.016666666666666666 +3385,1702260345456.0,1.0,0.016666666666666666 +3386,1702260405456.0,1.0,0.016666666666666666 +3387,1702260465456.0,1.0,0.016666666666666666 +3388,1702260525456.0,1.0,0.016666666666666666 +3389,1702260585456.0,1.0,0.016666666666666666 +3390,1702260645456.0,1.0,0.016666666666666666 +3391,1702260705456.0,1.0,0.016666666666666666 +3392,1702260765456.0,1.0,0.016666666666666666 +3393,1702260825456.0,1.0,0.016666666666666666 +3394,1702260885456.0,1.0,0.016666666666666666 +3395,1702260945456.0,1.0,0.016666666666666666 +3396,1702261005456.0,1.0,0.016666666666666666 +3397,1702261065456.0,1.0,0.016666666666666666 +3398,1702261125456.0,1.0,0.016666666666666666 +3399,1702261185456.0,1.0,0.016666666666666666 +3400,1702261245456.0,1.0,0.016666666666666666 +3401,1702261305456.0,1.0,0.016666666666666666 +3402,1702261365456.0,1.0,0.016666666666666666 +3403,1702261425456.0,1.0,0.016666666666666666 +3404,1702261485456.0,1.0,0.016666666666666666 +3405,1702261545456.0,1.0,0.016666666666666666 +3406,1702261605456.0,1.0,0.016666666666666666 +3407,1702261665456.0,1.0,0.016666666666666666 +3408,1702261725456.0,1.0,0.016666666666666666 +3409,1702261785456.0,1.0,0.016666666666666666 +3410,1702261845456.0,1.0,0.016666666666666666 +3411,1702261905456.0,1.0,0.016666666666666666 +3412,1702261965456.0,1.0,0.016666666666666666 +3413,1702262025456.0,1.0,0.016666666666666666 +3414,1702262085456.0,1.0,0.016666666666666666 +3415,1702262145456.0,1.0,0.016666666666666666 +3416,1702262205456.0,1.0,0.016666666666666666 +3417,1702262265456.0,1.0,0.016666666666666666 +3418,1702262325456.0,1.0,0.016666666666666666 +3419,1702262385456.0,1.0,0.016666666666666666 +3420,1702262445456.0,1.0,0.016666666666666666 +3421,1702262505456.0,1.0,0.016666666666666666 +3422,1702262565456.0,1.0,0.016666666666666666 +3423,1702262625456.0,1.0,0.016666666666666666 +3424,1702262685456.0,1.0,0.016666666666666666 +3425,1702262745456.0,1.0,0.016666666666666666 +3426,1702262805456.0,1.0,0.016666666666666666 +3427,1702262865456.0,1.0,0.016666666666666666 +3428,1702262925456.0,1.0,0.016666666666666666 +3429,1702262985456.0,1.0,0.016666666666666666 +3430,1702263045456.0,1.0,0.016666666666666666 +3431,1702263105456.0,1.0,0.016666666666666666 +3432,1702263165456.0,1.0,0.016666666666666666 +3433,1702263225456.0,1.0,0.016666666666666666 +3434,1702263285456.0,1.0,0.016666666666666666 +3435,1702263345456.0,1.0,0.016666666666666666 +3436,1702263405456.0,1.0,0.016666666666666666 +3437,1702263465456.0,1.0,0.016666666666666666 +3438,1702263525456.0,1.0,0.016666666666666666 +3439,1702263585456.0,1.0,0.016666666666666666 +3440,1702263645456.0,1.0,0.016666666666666666 +3441,1702263705456.0,1.0,0.016666666666666666 +3442,1702263765456.0,1.0,0.016666666666666666 +3443,1702263825456.0,1.0,0.016666666666666666 +3444,1702263885456.0,1.0,0.016666666666666666 +3445,1702263945456.0,1.0,0.016666666666666666 +3446,1702264005456.0,1.0,0.016666666666666666 +3447,1702264065456.0,1.0,0.016666666666666666 +3448,1702264125456.0,1.0,0.016666666666666666 +3449,1702264185456.0,1.0,0.016666666666666666 +3450,1702264245456.0,1.0,0.016666666666666666 +3451,1702264305456.0,1.0,0.016666666666666666 +3452,1702264365456.0,1.0,0.016666666666666666 +3453,1702264425456.0,1.0,0.016666666666666666 +3454,1702264485456.0,1.0,0.016666666666666666 +3455,1702264545456.0,1.0,0.016666666666666666 +3456,1702264605456.0,1.0,0.016666666666666666 +3457,1702264665456.0,1.0,0.016666666666666666 +3458,1702264725456.0,1.0,0.016666666666666666 +3459,1702264785456.0,1.0,0.016666666666666666 +3460,1702264845456.0,1.0,0.016666666666666666 +3461,1702264905456.0,1.0,0.016666666666666666 +3462,1702264965456.0,1.0,0.016666666666666666 +3463,1702265025456.0,1.0,0.016666666666666666 +3464,1702265085456.0,1.0,0.016666666666666666 +3465,1702265145456.0,1.0,0.016666666666666666 +3466,1702265205456.0,1.0,0.016666666666666666 +3467,1702265265456.0,1.0,0.016666666666666666 +3468,1702265325456.0,1.0,0.016666666666666666 +3469,1702265385456.0,1.0,0.016666666666666666 +3470,1702265445456.0,1.0,0.016666666666666666 +3471,1702265505456.0,1.0,0.016666666666666666 +3472,1702265565456.0,1.0,0.016666666666666666 +3473,1702265625456.0,1.0,0.016666666666666666 +3474,1702265685456.0,1.0,0.016666666666666666 +3475,1702265745456.0,1.0,0.016666666666666666 +3476,1702265805456.0,1.0,0.016666666666666666 +3477,1702265865456.0,1.0,0.016666666666666666 +3478,1702265925456.0,1.0,0.016666666666666666 +3479,1702265985456.0,1.0,0.016666666666666666 +3480,1702266045456.0,1.0,0.016666666666666666 +3481,1702266105456.0,1.0,0.016666666666666666 +3482,1702266165456.0,1.0,0.016666666666666666 +3483,1702266225456.0,1.0,0.016666666666666666 +3484,1702266285456.0,1.0,0.016666666666666666 +3485,1702266345456.0,1.0,0.016666666666666666 +3486,1702266405456.0,1.0,0.016666666666666666 +3487,1702266465456.0,1.0,0.016666666666666666 +3488,1702266525456.0,1.0,0.016666666666666666 +3489,1702266585456.0,1.0,0.016666666666666666 +3490,1702266645456.0,1.0,0.016666666666666666 +3491,1702266705456.0,1.0,0.016666666666666666 +3492,1702266765456.0,1.0,0.016666666666666666 +3493,1702266825456.0,1.0,0.016666666666666666 +3494,1702266885456.0,1.0,0.016666666666666666 +3495,1702266945456.0,1.0,0.016666666666666666 +3496,1702267005456.0,1.0,0.016666666666666666 +3497,1702267065456.0,1.0,0.016666666666666666 +3498,1702267125456.0,1.0,0.016666666666666666 +3499,1702267185456.0,1.0,0.016666666666666666 +3500,1702267245456.0,1.0,0.016666666666666666 +3501,1702267305456.0,1.0,0.016666666666666666 +3502,1702267365456.0,1.0,0.016666666666666666 +3503,1702267425456.0,1.0,0.016666666666666666 +3504,1702267485456.0,1.0,0.016666666666666666 +3505,1702267545456.0,1.0,0.016666666666666666 +3506,1702267605456.0,1.0,0.016666666666666666 +3507,1702267665456.0,1.0,0.016666666666666666 +3508,1702267725456.0,1.0,0.016666666666666666 +3509,1702267785456.0,1.0,0.016666666666666666 +3510,1702267845456.0,1.0,0.016666666666666666 +3511,1702267905456.0,1.0,0.016666666666666666 +3512,1702267965456.0,1.0,0.016666666666666666 +3513,1702268025456.0,1.0,0.016666666666666666 +3514,1702268085456.0,1.0,0.016666666666666666 +3515,1702268145456.0,1.0,0.016666666666666666 +3516,1702268205456.0,1.0,0.016666666666666666 +3517,1702268265456.0,1.0,0.016666666666666666 +3518,1702268325456.0,1.0,0.016666666666666666 +3519,1702268385456.0,1.0,0.016666666666666666 +3520,1702268445456.0,1.0,0.016666666666666666 +3521,1702268505456.0,1.0,0.016666666666666666 +3522,1702268565456.0,1.0,0.016666666666666666 +3523,1702268625456.0,1.0,0.016666666666666666 +3524,1702268685456.0,1.0,0.016666666666666666 +3525,1702268745456.0,1.0,0.016666666666666666 +3526,1702268805456.0,1.0,0.016666666666666666 +3527,1702268865456.0,1.0,0.016666666666666666 +3528,1702268925456.0,1.0,0.016666666666666666 +3529,1702268985456.0,1.0,0.016666666666666666 +3530,1702269045456.0,1.0,0.016666666666666666 +3531,1702269105456.0,1.0,0.016666666666666666 +3532,1702269165456.0,1.0,0.016666666666666666 +3533,1702269225456.0,1.0,0.016666666666666666 +3534,1702269285456.0,1.0,0.016666666666666666 +3535,1702269345456.0,1.0,0.016666666666666666 +3536,1702269405456.0,1.0,0.016666666666666666 +3537,1702269465456.0,1.0,0.016666666666666666 +3538,1702269525456.0,1.0,0.016666666666666666 +3539,1702269585456.0,1.0,0.016666666666666666 +3540,1702269645456.0,1.0,0.016666666666666666 +3541,1702269705456.0,1.0,0.016666666666666666 +3542,1702269765456.0,1.0,0.016666666666666666 +3543,1702269825456.0,1.0,0.016666666666666666 +3544,1702269885456.0,1.0,0.016666666666666666 +3545,1702269945456.0,1.0,0.016666666666666666 +3546,1702270005456.0,1.0,0.016666666666666666 +3547,1702270065456.0,1.0,0.016666666666666666 +3548,1702270125456.0,1.0,0.016666666666666666 +3549,1702270185456.0,1.0,0.016666666666666666 +3550,1702270245456.0,1.0,0.016666666666666666 +3551,1702270305456.0,1.0,0.016666666666666666 +3552,1702270365456.0,1.0,0.016666666666666666 +3553,1702270425456.0,1.0,0.016666666666666666 +3554,1702270485456.0,1.0,0.016666666666666666 +3555,1702270545456.0,1.0,0.016666666666666666 +3556,1702270605456.0,1.0,0.016666666666666666 +3557,1702270665456.0,1.0,0.016666666666666666 +3558,1702270725456.0,1.0,0.016666666666666666 +3559,1702270785456.0,1.0,0.016666666666666666 +3560,1702270845456.0,1.0,0.016666666666666666 +3561,1702270905456.0,1.0,0.016666666666666666 +3562,1702270965456.0,1.0,0.016666666666666666 +3563,1702271025456.0,1.0,0.016666666666666666 +3564,1702271085456.0,1.0,0.016666666666666666 +3565,1702271145456.0,1.0,0.016666666666666666 +3566,1702271205456.0,1.0,0.016666666666666666 +3567,1702271265456.0,1.0,0.016666666666666666 +3568,1702271325456.0,1.0,0.016666666666666666 +3569,1702271385456.0,1.0,0.016666666666666666 +3570,1702271445456.0,1.0,0.016666666666666666 +3571,1702271505456.0,1.0,0.016666666666666666 +3572,1702271565456.0,1.0,0.016666666666666666 +3573,1702271625456.0,1.0,0.016666666666666666 +3574,1702271685456.0,1.0,0.016666666666666666 +3575,1702271745456.0,1.0,0.016666666666666666 +3576,1702271805456.0,1.0,0.016666666666666666 +3577,1702271865456.0,1.0,0.016666666666666666 +3578,1702271925456.0,1.0,0.016666666666666666 +3579,1702271985456.0,1.0,0.016666666666666666 +3580,1702272045456.0,1.0,0.016666666666666666 +3581,1702272105456.0,1.0,0.016666666666666666 +3582,1702272165456.0,1.0,0.016666666666666666 +3583,1702272225456.0,1.0,0.016666666666666666 +3584,1702272285456.0,1.0,0.016666666666666666 +3585,1702272345456.0,1.0,0.016666666666666666 +3586,1702272405456.0,1.0,0.016666666666666666 +3587,1702272465456.0,1.0,0.016666666666666666 +3588,1702272525456.0,1.0,0.016666666666666666 +3589,1702272585456.0,1.0,0.016666666666666666 +3590,1702272645456.0,1.0,0.016666666666666666 +3591,1702272705456.0,1.0,0.016666666666666666 +3592,1702272765456.0,1.0,0.016666666666666666 +3593,1702272825456.0,1.0,0.016666666666666666 +3594,1702272885456.0,1.0,0.016666666666666666 +3595,1702272945456.0,1.0,0.016666666666666666 +3596,1702273005456.0,1.0,0.016666666666666666 +3597,1702273065456.0,1.0,0.016666666666666666 +3598,1702273125456.0,1.0,0.016666666666666666 +3599,1702273185456.0,1.0,0.016666666666666666 +3600,1702273245456.0,1.0,0.016666666666666666 +3601,1702273305456.0,1.0,0.016666666666666666 +3602,1702273365456.0,1.0,0.016666666666666666 +3603,1702273425456.0,1.0,0.016666666666666666 +3604,1702273485456.0,1.0,0.016666666666666666 +3605,1702273545456.0,1.0,0.016666666666666666 +3606,1702273605456.0,1.0,0.016666666666666666 +3607,1702273665456.0,1.0,0.016666666666666666 +3608,1702273725456.0,1.0,0.016666666666666666 +3609,1702273785456.0,1.0,0.016666666666666666 +3610,1702273845456.0,1.0,0.016666666666666666 +3611,1702273905456.0,1.0,0.016666666666666666 +3612,1702273965456.0,1.0,0.016666666666666666 +3613,1702274025456.0,1.0,0.016666666666666666 +3614,1702274085456.0,1.0,0.016666666666666666 +3615,1702274145456.0,1.0,0.016666666666666666 +3616,1702274205456.0,1.0,0.016666666666666666 +3617,1702274265456.0,1.0,0.016666666666666666 +3618,1702274325456.0,1.0,0.016666666666666666 +3619,1702274385456.0,1.0,0.016666666666666666 +3620,1702274445456.0,1.0,0.016666666666666666 +3621,1702274505456.0,1.0,0.016666666666666666 +3622,1702274565456.0,1.0,0.016666666666666666 +3623,1702274625456.0,1.0,0.016666666666666666 +3624,1702274685456.0,1.0,0.016666666666666666 +3625,1702274745456.0,1.0,0.016666666666666666 +3626,1702274805456.0,1.0,0.016666666666666666 +3627,1702274865456.0,1.0,0.016666666666666666 +3628,1702274925456.0,1.0,0.016666666666666666 +3629,1702274985456.0,1.0,0.016666666666666666 +3630,1702275045456.0,1.0,0.016666666666666666 +3631,1702275105456.0,1.0,0.016666666666666666 +3632,1702275165456.0,1.0,0.016666666666666666 +3633,1702275225456.0,1.0,0.016666666666666666 +3634,1702275285456.0,1.0,0.016666666666666666 +3635,1702275345456.0,1.0,0.016666666666666666 +3636,1702275405456.0,1.0,0.016666666666666666 +3637,1702275465456.0,1.0,0.016666666666666666 +3638,1702275525456.0,1.0,0.016666666666666666 +3639,1702275585456.0,1.0,0.016666666666666666 +3640,1702275645456.0,1.0,0.016666666666666666 +3641,1702275705456.0,1.0,0.016666666666666666 +3642,1702275765456.0,1.0,0.016666666666666666 +3643,1702275825456.0,1.0,0.016666666666666666 +3644,1702275885456.0,1.0,0.016666666666666666 +3645,1702275945456.0,1.0,0.016666666666666666 +3646,1702276005456.0,1.0,0.016666666666666666 +3647,1702276065456.0,1.0,0.016666666666666666 +3648,1702276125456.0,1.0,0.016666666666666666 +3649,1702276185456.0,1.0,0.016666666666666666 +3650,1702276245456.0,1.0,0.016666666666666666 +3651,1702276305456.0,1.0,0.016666666666666666 +3652,1702276365456.0,1.0,0.016666666666666666 +3653,1702276425456.0,1.0,0.016666666666666666 +3654,1702276485456.0,1.0,0.016666666666666666 +3655,1702276545456.0,1.0,0.016666666666666666 +3656,1702276605456.0,1.0,0.016666666666666666 +3657,1702276665456.0,1.0,0.016666666666666666 +3658,1702276725456.0,1.0,0.016666666666666666 +3659,1702276785456.0,1.0,0.016666666666666666 +3660,1702276845456.0,1.0,0.016666666666666666 +3661,1702276905456.0,1.0,0.016666666666666666 +3662,1702276965456.0,1.0,0.016666666666666666 +3663,1702277025456.0,1.0,0.016666666666666666 +3664,1702277085456.0,1.0,0.016666666666666666 +3665,1702277145456.0,1.0,0.016666666666666666 +3666,1702277205456.0,1.0,0.016666666666666666 +3667,1702277265456.0,1.0,0.016666666666666666 +3668,1702277325456.0,1.0,0.016666666666666666 +3669,1702277385456.0,1.0,0.016666666666666666 +3670,1702277445456.0,1.0,0.016666666666666666 +3671,1702277505456.0,1.0,0.016666666666666666 +3672,1702277565456.0,1.0,0.016666666666666666 +3673,1702277625456.0,1.0,0.016666666666666666 +3674,1702277685456.0,1.0,0.016666666666666666 +3675,1702277745456.0,1.0,0.016666666666666666 +3676,1702277805456.0,1.0,0.016666666666666666 +3677,1702277865456.0,1.0,0.016666666666666666 +3678,1702277925456.0,1.0,0.016666666666666666 +3679,1702277985456.0,1.0,0.016666666666666666 +3680,1702278045456.0,1.0,0.016666666666666666 +3681,1702278105456.0,1.0,0.016666666666666666 +3682,1702278165456.0,1.0,0.016666666666666666 +3683,1702278225456.0,1.0,0.016666666666666666 +3684,1702278285456.0,1.0,0.016666666666666666 +3685,1702278345456.0,1.0,0.016666666666666666 +3686,1702278405456.0,1.0,0.016666666666666666 +3687,1702278465456.0,1.0,0.016666666666666666 +3688,1702278525456.0,1.0,0.016666666666666666 +3689,1702278585456.0,1.0,0.016666666666666666 +3690,1702278645456.0,1.0,0.016666666666666666 +3691,1702278705456.0,1.0,0.016666666666666666 +3692,1702278765456.0,1.0,0.016666666666666666 +3693,1702278825456.0,1.0,0.016666666666666666 +3694,1702278885456.0,1.0,0.016666666666666666 +3695,1702278945456.0,1.0,0.016666666666666666 +3696,1702279005456.0,1.0,0.016666666666666666 +3697,1702279065456.0,1.0,0.016666666666666666 +3698,1702279125456.0,1.0,0.016666666666666666 +3699,1702279185456.0,1.0,0.016666666666666666 +3700,1702279245456.0,1.0,0.016666666666666666 +3701,1702279305456.0,1.0,0.016666666666666666 +3702,1702279365456.0,1.0,0.016666666666666666 +3703,1702279425456.0,1.0,0.016666666666666666 +3704,1702279485456.0,1.0,0.016666666666666666 +3705,1702279545456.0,1.0,0.016666666666666666 +3706,1702279605456.0,1.0,0.016666666666666666 +3707,1702279665456.0,1.0,0.016666666666666666 +3708,1702279725456.0,1.0,0.016666666666666666 +3709,1702279785456.0,1.0,0.016666666666666666 +3710,1702279845456.0,1.0,0.016666666666666666 +3711,1702279905456.0,1.0,0.016666666666666666 +3712,1702279965456.0,1.0,0.016666666666666666 +3713,1702280025456.0,1.0,0.016666666666666666 +3714,1702280085456.0,1.0,0.016666666666666666 +3715,1702280145456.0,1.0,0.016666666666666666 +3716,1702280205456.0,1.0,0.016666666666666666 +3717,1702280265456.0,1.0,0.016666666666666666 +3718,1702280325456.0,1.0,0.016666666666666666 +3719,1702280385456.0,1.0,0.016666666666666666 +3720,1702280445456.0,1.0,0.016666666666666666 +3721,1702280505456.0,1.0,0.016666666666666666 +3722,1702280565456.0,1.0,0.016666666666666666 +3723,1702280625456.0,1.0,0.016666666666666666 +3724,1702280685456.0,1.0,0.016666666666666666 +3725,1702280745456.0,1.0,0.016666666666666666 +3726,1702280805456.0,1.0,0.016666666666666666 +3727,1702280865456.0,1.0,0.016666666666666666 +3728,1702280925456.0,1.0,0.016666666666666666 +3729,1702280985456.0,1.0,0.016666666666666666 +3730,1702281045456.0,1.0,0.016666666666666666 +3731,1702281105456.0,1.0,0.016666666666666666 +3732,1702281165456.0,1.0,0.016666666666666666 +3733,1702281225456.0,1.0,0.016666666666666666 +3734,1702281285456.0,1.0,0.016666666666666666 +3735,1702281345456.0,1.0,0.016666666666666666 +3736,1702281405456.0,1.0,0.016666666666666666 +3737,1702281465456.0,1.0,0.016666666666666666 +3738,1702281525456.0,1.0,0.016666666666666666 +3739,1702281585456.0,1.0,0.016666666666666666 +3740,1702281645456.0,1.0,0.016666666666666666 +3741,1702281705456.0,1.0,0.016666666666666666 +3742,1702281765456.0,1.0,0.016666666666666666 +3743,1702281825456.0,1.0,0.016666666666666666 +3744,1702281885456.0,1.0,0.016666666666666666 +3745,1702281945456.0,1.0,0.016666666666666666 +3746,1702282005456.0,1.0,0.016666666666666666 +3747,1702282065456.0,1.0,0.016666666666666666 +3748,1702282125456.0,1.0,0.016666666666666666 +3749,1702282185456.0,1.0,0.016666666666666666 +3750,1702282245456.0,1.0,0.016666666666666666 +3751,1702282305456.0,1.0,0.016666666666666666 +3752,1702282365456.0,1.0,0.016666666666666666 +3753,1702282425456.0,1.0,0.016666666666666666 +3754,1702282485456.0,1.0,0.016666666666666666 +3755,1702282545456.0,1.0,0.016666666666666666 +3756,1702282605456.0,1.0,0.016666666666666666 +3757,1702282665456.0,1.0,0.016666666666666666 +3758,1702282725456.0,1.0,0.016666666666666666 +3759,1702282785456.0,1.0,0.016666666666666666 +3760,1702282845456.0,1.0,0.016666666666666666 +3761,1702282905456.0,1.0,0.016666666666666666 +3762,1702282965456.0,1.0,0.016666666666666666 +3763,1702283025456.0,1.0,0.016666666666666666 +3764,1702283085456.0,1.0,0.016666666666666666 +3765,1702283145456.0,1.0,0.016666666666666666 +3766,1702283205456.0,1.0,0.016666666666666666 +3767,1702283265456.0,1.0,0.016666666666666666 +3768,1702283325456.0,1.0,0.016666666666666666 +3769,1702283385456.0,1.0,0.016666666666666666 +3770,1702283445456.0,1.0,0.016666666666666666 +3771,1702283505456.0,1.0,0.016666666666666666 +3772,1702283565456.0,1.0,0.016666666666666666 +3773,1702283625456.0,1.0,0.016666666666666666 +3774,1702283685456.0,1.0,0.016666666666666666 +3775,1702283745456.0,1.0,0.016666666666666666 +3776,1702283805456.0,1.0,0.016666666666666666 +3777,1702283865456.0,1.0,0.016666666666666666 +3778,1702283925456.0,1.0,0.016666666666666666 +3779,1702283985456.0,1.0,0.016666666666666666 +3780,1702284045456.0,1.0,0.016666666666666666 +3781,1702284105456.0,1.0,0.016666666666666666 +3782,1702284165456.0,1.0,0.016666666666666666 +3783,1702284225456.0,1.0,0.016666666666666666 +3784,1702284285456.0,1.0,0.016666666666666666 +3785,1702284345456.0,1.0,0.016666666666666666 +3786,1702284405456.0,1.0,0.016666666666666666 +3787,1702284465456.0,1.0,0.016666666666666666 +3788,1702284525456.0,1.0,0.016666666666666666 +3789,1702284585456.0,1.0,0.016666666666666666 +3790,1702284645456.0,1.0,0.016666666666666666 +3791,1702284705456.0,1.0,0.016666666666666666 +3792,1702284765456.0,1.0,0.016666666666666666 +3793,1702284825456.0,1.0,0.016666666666666666 +3794,1702284885456.0,1.0,0.016666666666666666 +3795,1702284945456.0,1.0,0.016666666666666666 +3796,1702285005456.0,1.0,0.016666666666666666 +3797,1702285065456.0,1.0,0.016666666666666666 +3798,1702285125456.0,1.0,0.016666666666666666 +3799,1702285185456.0,1.0,0.016666666666666666 +3800,1702285245456.0,1.0,0.016666666666666666 +3801,1702285305456.0,1.0,0.016666666666666666 +3802,1702285365456.0,1.0,0.016666666666666666 +3803,1702285425456.0,1.0,0.016666666666666666 +3804,1702285485456.0,1.0,0.016666666666666666 +3805,1702285545456.0,1.0,0.016666666666666666 +3806,1702285605456.0,1.0,0.016666666666666666 +3807,1702285665456.0,1.0,0.016666666666666666 +3808,1702285725456.0,1.0,0.016666666666666666 +3809,1702285785456.0,1.0,0.016666666666666666 +3810,1702285845456.0,1.0,0.016666666666666666 +3811,1702285905456.0,1.0,0.016666666666666666 +3812,1702285965456.0,1.0,0.016666666666666666 +3813,1702286025456.0,1.0,0.016666666666666666 +3814,1702286085456.0,1.0,0.016666666666666666 +3815,1702286145456.0,1.0,0.016666666666666666 +3816,1702286205456.0,1.0,0.016666666666666666 +3817,1702286265456.0,1.0,0.016666666666666666 +3818,1702286325456.0,1.0,0.016666666666666666 +3819,1702286385456.0,1.0,0.016666666666666666 +3820,1702286445456.0,1.0,0.016666666666666666 +3821,1702286505456.0,1.0,0.016666666666666666 +3822,1702286565456.0,1.0,0.016666666666666666 +3823,1702286625456.0,1.0,0.016666666666666666 +3824,1702286685456.0,1.0,0.016666666666666666 +3825,1702286745456.0,1.0,0.016666666666666666 +3826,1702286805456.0,1.0,0.016666666666666666 +3827,1702286865456.0,1.0,0.016666666666666666 +3828,1702286925456.0,1.0,0.016666666666666666 +3829,1702286985456.0,1.0,0.016666666666666666 +3830,1702287045456.0,1.0,0.016666666666666666 +3831,1702287105456.0,1.0,0.016666666666666666 +3832,1702287165456.0,1.0,0.016666666666666666 +3833,1702287225456.0,1.0,0.016666666666666666 +3834,1702287285456.0,1.0,0.016666666666666666 +3835,1702287345456.0,1.0,0.016666666666666666 +3836,1702287405456.0,1.0,0.016666666666666666 +3837,1702287465456.0,1.0,0.016666666666666666 +3838,1702287525456.0,1.0,0.016666666666666666 +3839,1702287585456.0,1.0,0.016666666666666666 +3840,1702287645456.0,1.0,0.016666666666666666 +3841,1702287705456.0,1.0,0.016666666666666666 +3842,1702287765456.0,1.0,0.016666666666666666 +3843,1702287825456.0,1.0,0.016666666666666666 +3844,1702287885456.0,1.0,0.016666666666666666 +3845,1702287945456.0,1.0,0.016666666666666666 +3846,1702288005456.0,1.0,0.016666666666666666 +3847,1702288065456.0,1.0,0.016666666666666666 +3848,1702288125456.0,1.0,0.016666666666666666 +3849,1702288185456.0,1.0,0.016666666666666666 +3850,1702288245456.0,1.0,0.016666666666666666 +3851,1702288305456.0,1.0,0.016666666666666666 +3852,1702288365456.0,1.0,0.016666666666666666 +3853,1702288425456.0,1.0,0.016666666666666666 +3854,1702288485456.0,1.0,0.016666666666666666 +3855,1702288545456.0,1.0,0.016666666666666666 +3856,1702288605456.0,1.0,0.016666666666666666 +3857,1702288665456.0,1.0,0.016666666666666666 +3858,1702288725456.0,1.0,0.016666666666666666 +3859,1702288785456.0,1.0,0.016666666666666666 +3860,1702288845456.0,1.0,0.016666666666666666 +3861,1702288905456.0,1.0,0.016666666666666666 +3862,1702288965456.0,1.0,0.016666666666666666 +3863,1702289025456.0,1.0,0.016666666666666666 +3864,1702289085456.0,1.0,0.016666666666666666 +3865,1702289145456.0,1.0,0.016666666666666666 +3866,1702289205456.0,1.0,0.016666666666666666 +3867,1702289265456.0,1.0,0.016666666666666666 +3868,1702289325456.0,1.0,0.016666666666666666 +3869,1702289385456.0,1.0,0.016666666666666666 +3870,1702289445456.0,1.0,0.016666666666666666 +3871,1702289505456.0,1.0,0.016666666666666666 +3872,1702289565456.0,1.0,0.016666666666666666 +3873,1702289625456.0,1.0,0.016666666666666666 +3874,1702289685456.0,1.0,0.016666666666666666 +3875,1702289745456.0,1.0,0.016666666666666666 +3876,1702289805456.0,1.0,0.016666666666666666 +3877,1702289865456.0,1.0,0.016666666666666666 +3878,1702289925456.0,1.0,0.016666666666666666 +3879,1702289985456.0,1.0,0.016666666666666666 +3880,1702290045456.0,1.0,0.016666666666666666 +3881,1702290105456.0,1.0,0.016666666666666666 +3882,1702290165456.0,1.0,0.016666666666666666 +3883,1702290225456.0,1.0,0.016666666666666666 +3884,1702290285456.0,1.0,0.016666666666666666 +3885,1702290345456.0,1.0,0.016666666666666666 +3886,1702290405456.0,1.0,0.016666666666666666 +3887,1702290465456.0,1.0,0.016666666666666666 +3888,1702290525456.0,1.0,0.016666666666666666 +3889,1702290585456.0,1.0,0.016666666666666666 +3890,1702290645456.0,1.0,0.016666666666666666 +3891,1702290705456.0,1.0,0.016666666666666666 +3892,1702290765456.0,1.0,0.016666666666666666 +3893,1702290825456.0,1.0,0.016666666666666666 +3894,1702290885456.0,1.0,0.016666666666666666 +3895,1702290945456.0,1.0,0.016666666666666666 +3896,1702291005456.0,1.0,0.016666666666666666 +3897,1702291065456.0,1.0,0.016666666666666666 +3898,1702291125456.0,1.0,0.016666666666666666 +3899,1702291185456.0,1.0,0.016666666666666666 +3900,1702291245456.0,1.0,0.016666666666666666 +3901,1702291305456.0,1.0,0.016666666666666666 +3902,1702291365456.0,1.0,0.016666666666666666 +3903,1702291425456.0,1.0,0.016666666666666666 +3904,1702291485456.0,1.0,0.016666666666666666 +3905,1702291545456.0,1.0,0.016666666666666666 +3906,1702291605456.0,1.0,0.016666666666666666 +3907,1702291665456.0,1.0,0.016666666666666666 +3908,1702291725456.0,1.0,0.016666666666666666 +3909,1702291785456.0,1.0,0.016666666666666666 +3910,1702291845456.0,1.0,0.016666666666666666 +3911,1702291905456.0,1.0,0.016666666666666666 +3912,1702291965456.0,1.0,0.016666666666666666 +3913,1702292025456.0,1.0,0.016666666666666666 +3914,1702292085456.0,1.0,0.016666666666666666 +3915,1702292145456.0,1.0,0.016666666666666666 +3916,1702292205456.0,1.0,0.016666666666666666 +3917,1702292265456.0,1.0,0.016666666666666666 +3918,1702292325456.0,1.0,0.016666666666666666 +3919,1702292385456.0,1.0,0.016666666666666666 +3920,1702292445456.0,1.0,0.016666666666666666 +3921,1702292505456.0,1.0,0.016666666666666666 +3922,1702292565456.0,1.0,0.016666666666666666 +3923,1702292625456.0,1.0,0.016666666666666666 +3924,1702292685456.0,1.0,0.016666666666666666 +3925,1702292745456.0,1.0,0.016666666666666666 +3926,1702292805456.0,1.0,0.016666666666666666 +3927,1702292865456.0,1.0,0.016666666666666666 +3928,1702292925456.0,1.0,0.016666666666666666 +3929,1702292985456.0,1.0,0.016666666666666666 +3930,1702293045456.0,1.0,0.016666666666666666 +3931,1702293105456.0,1.0,0.016666666666666666 +3932,1702293165456.0,1.0,0.016666666666666666 +3933,1702293225456.0,1.0,0.016666666666666666 +3934,1702293285456.0,1.0,0.016666666666666666 +3935,1702293345456.0,1.0,0.016666666666666666 +3936,1702293405456.0,1.0,0.016666666666666666 +3937,1702293465456.0,1.0,0.016666666666666666 +3938,1702293525456.0,1.0,0.016666666666666666 +3939,1702293585456.0,1.0,0.016666666666666666 +3940,1702293645456.0,1.0,0.016666666666666666 +3941,1702293705456.0,1.0,0.016666666666666666 +3942,1702293765456.0,1.0,0.016666666666666666 +3943,1702293825456.0,1.0,0.016666666666666666 +3944,1702293885456.0,1.0,0.016666666666666666 +3945,1702293945456.0,1.0,0.016666666666666666 +3946,1702294005456.0,1.0,0.016666666666666666 +3947,1702294065456.0,1.0,0.016666666666666666 +3948,1702294125456.0,1.0,0.016666666666666666 +3949,1702294185456.0,1.0,0.016666666666666666 +3950,1702294245456.0,1.0,0.016666666666666666 +3951,1702294305456.0,1.0,0.016666666666666666 +3952,1702294365456.0,1.0,0.016666666666666666 +3953,1702294425456.0,1.0,0.016666666666666666 +3954,1702294485456.0,1.0,0.016666666666666666 +3955,1702294545456.0,1.0,0.016666666666666666 +3956,1702294605456.0,1.0,0.016666666666666666 +3957,1702294665456.0,1.0,0.016666666666666666 +3958,1702294725456.0,1.0,0.016666666666666666 +3959,1702294785456.0,1.0,0.016666666666666666 +3960,1702294845456.0,1.0,0.016666666666666666 +3961,1702294905456.0,1.0,0.016666666666666666 +3962,1702294965456.0,1.0,0.016666666666666666 +3963,1702295025456.0,1.0,0.016666666666666666 +3964,1702295085456.0,1.0,0.016666666666666666 +3965,1702295145456.0,1.0,0.016666666666666666 +3966,1702295205456.0,1.0,0.016666666666666666 +3967,1702295265456.0,1.0,0.016666666666666666 +3968,1702295325456.0,1.0,0.016666666666666666 +3969,1702295385456.0,1.0,0.016666666666666666 +3970,1702295445456.0,1.0,0.016666666666666666 +3971,1702295505456.0,1.0,0.016666666666666666 +3972,1702295565456.0,1.0,0.016666666666666666 +3973,1702295625456.0,1.0,0.016666666666666666 +3974,1702295685456.0,1.0,0.016666666666666666 +3975,1702295745456.0,1.0,0.016666666666666666 +3976,1702295805456.0,1.0,0.016666666666666666 +3977,1702295865456.0,1.0,0.016666666666666666 +3978,1702295925456.0,1.0,0.016666666666666666 +3979,1702295985456.0,1.0,0.016666666666666666 +3980,1702296045456.0,1.0,0.016666666666666666 +3981,1702296105456.0,1.0,0.016666666666666666 +3982,1702296165456.0,1.0,0.016666666666666666 +3983,1702296225456.0,1.0,0.016666666666666666 +3984,1702296285456.0,1.0,0.016666666666666666 +3985,1702296345456.0,1.0,0.016666666666666666 +3986,1702296405456.0,1.0,0.016666666666666666 +3987,1702296465456.0,1.0,0.016666666666666666 +3988,1702296525456.0,1.0,0.016666666666666666 +3989,1702296585456.0,1.0,0.016666666666666666 +3990,1702296645456.0,1.0,0.016666666666666666 +3991,1702296705456.0,1.0,0.016666666666666666 +3992,1702296765456.0,1.0,0.016666666666666666 +3993,1702296825456.0,1.0,0.016666666666666666 +3994,1702296885456.0,1.0,0.016666666666666666 +3995,1702296945456.0,1.0,0.016666666666666666 +3996,1702297005456.0,1.0,0.016666666666666666 +3997,1702297065456.0,1.0,0.016666666666666666 +3998,1702297125456.0,1.0,0.016666666666666666 +3999,1702297185456.0,1.0,0.016666666666666666 +4000,1702297245456.0,1.0,0.016666666666666666 +4001,1702297305456.0,1.0,0.016666666666666666 +4002,1702297365456.0,1.0,0.016666666666666666 +4003,1702297425456.0,1.0,0.016666666666666666 +4004,1702297485456.0,1.0,0.016666666666666666 +4005,1702297545456.0,1.0,0.016666666666666666 +4006,1702297605456.0,1.0,0.016666666666666666 +4007,1702297665456.0,1.0,0.016666666666666666 +4008,1702297725456.0,1.0,0.016666666666666666 +4009,1702297785456.0,1.0,0.016666666666666666 +4010,1702297845456.0,1.0,0.016666666666666666 +4011,1702297905456.0,1.0,0.016666666666666666 +4012,1702297965456.0,1.0,0.016666666666666666 +4013,1702298025456.0,1.0,0.016666666666666666 +4014,1702298085456.0,1.0,0.016666666666666666 +4015,1702298145456.0,1.0,0.016666666666666666 +4016,1702298205456.0,1.0,0.016666666666666666 +4017,1702298265456.0,1.0,0.016666666666666666 +4018,1702298325456.0,1.0,0.016666666666666666 +4019,1702298385456.0,1.0,0.016666666666666666 +4020,1702298445456.0,1.0,0.016666666666666666 +4021,1702298505456.0,1.0,0.016666666666666666 +4022,1702298565456.0,1.0,0.016666666666666666 +4023,1702298625456.0,1.0,0.016666666666666666 +4024,1702298685456.0,1.0,0.016666666666666666 +4025,1702298745456.0,1.0,0.016666666666666666 +4026,1702298805456.0,1.0,0.016666666666666666 +4027,1702298865456.0,1.0,0.016666666666666666 +4028,1702298925456.0,1.0,0.016666666666666666 +4029,1702298985456.0,1.0,0.016666666666666666 +4030,1702299045456.0,1.0,0.016666666666666666 +4031,1702299105456.0,1.0,0.016666666666666666 +4032,1702299165456.0,1.0,0.016666666666666666 +4033,1702299225456.0,1.0,0.016666666666666666 +4034,1702299285456.0,1.0,0.016666666666666666 +4035,1702299345456.0,1.0,0.016666666666666666 +4036,1702299405456.0,1.0,0.016666666666666666 +4037,1702299465456.0,1.0,0.016666666666666666 +4038,1702299525456.0,1.0,0.016666666666666666 +4039,1702299585456.0,1.0,0.016666666666666666 +4040,1702299645456.0,1.0,0.016666666666666666 +4041,1702299705456.0,1.0,0.016666666666666666 +4042,1702299765456.0,1.0,0.016666666666666666 +4043,1702299825456.0,1.0,0.016666666666666666 +4044,1702299885456.0,1.0,0.016666666666666666 +4045,1702299945456.0,1.0,0.016666666666666666 +4046,1702300005456.0,1.0,0.016666666666666666 +4047,1702300065456.0,1.0,0.016666666666666666 +4048,1702300125456.0,1.0,0.016666666666666666 +4049,1702300185456.0,1.0,0.016666666666666666 +4050,1702300245456.0,1.0,0.016666666666666666 +4051,1702300305456.0,1.0,0.016666666666666666 +4052,1702300365456.0,1.0,0.016666666666666666 +4053,1702300425456.0,1.0,0.016666666666666666 +4054,1702300485456.0,1.0,0.016666666666666666 +4055,1702300545456.0,1.0,0.016666666666666666 +4056,1702300605456.0,1.0,0.016666666666666666 +4057,1702300665456.0,1.0,0.016666666666666666 +4058,1702300725456.0,1.0,0.016666666666666666 +4059,1702300785456.0,1.0,0.016666666666666666 +4060,1702300845456.0,1.0,0.016666666666666666 +4061,1702300905456.0,1.0,0.016666666666666666 +4062,1702300965456.0,1.0,0.016666666666666666 +4063,1702301025456.0,1.0,0.016666666666666666 +4064,1702301085456.0,1.0,0.016666666666666666 +4065,1702301145456.0,1.0,0.016666666666666666 +4066,1702301205456.0,1.0,0.016666666666666666 +4067,1702301265456.0,1.0,0.016666666666666666 +4068,1702301325456.0,1.0,0.016666666666666666 +4069,1702301385456.0,1.0,0.016666666666666666 +4070,1702301445456.0,1.0,0.016666666666666666 +4071,1702301505456.0,1.0,0.016666666666666666 +4072,1702301565456.0,1.0,0.016666666666666666 +4073,1702301625456.0,1.0,0.016666666666666666 +4074,1702301685456.0,1.0,0.016666666666666666 +4075,1702301745456.0,1.0,0.016666666666666666 +4076,1702301805456.0,1.0,0.016666666666666666 +4077,1702301865456.0,1.0,0.016666666666666666 +4078,1702301925456.0,1.0,0.016666666666666666 +4079,1702301985456.0,1.0,0.016666666666666666 +4080,1702302045456.0,1.0,0.016666666666666666 +4081,1702302105456.0,1.0,0.016666666666666666 +4082,1702302165456.0,1.0,0.016666666666666666 +4083,1702302225456.0,1.0,0.016666666666666666 +4084,1702302285456.0,1.0,0.016666666666666666 +4085,1702302345456.0,1.0,0.016666666666666666 +4086,1702302405456.0,1.0,0.016666666666666666 +4087,1702302465456.0,1.0,0.016666666666666666 +4088,1702302525456.0,1.0,0.016666666666666666 +4089,1702302585456.0,1.0,0.016666666666666666 +4090,1702302645456.0,1.0,0.016666666666666666 +4091,1702302705456.0,1.0,0.016666666666666666 +4092,1702302765456.0,1.0,0.016666666666666666 +4093,1702302825456.0,1.0,0.016666666666666666 +4094,1702302885456.0,1.0,0.016666666666666666 +4095,1702302945456.0,1.0,0.016666666666666666 +4096,1702303005456.0,1.0,0.016666666666666666 +4097,1702303065456.0,1.0,0.016666666666666666 +4098,1702303125456.0,1.0,0.016666666666666666 +4099,1702303185456.0,1.0,0.016666666666666666 +4100,1702303245456.0,1.0,0.016666666666666666 +4101,1702303305456.0,1.0,0.016666666666666666 +4102,1702303365456.0,1.0,0.016666666666666666 +4103,1702303425456.0,1.0,0.016666666666666666 +4104,1702303485456.0,1.0,0.016666666666666666 +4105,1702303545456.0,1.0,0.016666666666666666 +4106,1702303605456.0,1.0,0.016666666666666666 +4107,1702303665456.0,1.0,0.016666666666666666 +4108,1702303725456.0,1.0,0.016666666666666666 +4109,1702303785456.0,1.0,0.016666666666666666 +4110,1702303845456.0,1.0,0.016666666666666666 +4111,1702303905456.0,1.0,0.016666666666666666 +4112,1702303965456.0,1.0,0.016666666666666666 +4113,1702304025456.0,1.0,0.016666666666666666 +4114,1702304085456.0,1.0,0.016666666666666666 +4115,1702304145456.0,1.0,0.016666666666666666 +4116,1702304205456.0,1.0,0.016666666666666666 +4117,1702304265456.0,1.0,0.016666666666666666 +4118,1702304325456.0,1.0,0.016666666666666666 +4119,1702304385456.0,1.0,0.016666666666666666 +4120,1702304445456.0,1.0,0.016666666666666666 +4121,1702304505456.0,1.0,0.016666666666666666 +4122,1702304565456.0,1.0,0.016666666666666666 +4123,1702304625456.0,1.0,0.016666666666666666 +4124,1702304685456.0,1.0,0.016666666666666666 +4125,1702304745456.0,1.0,0.016666666666666666 +4126,1702304805456.0,1.0,0.016666666666666666 +4127,1702304865456.0,1.0,0.016666666666666666 +4128,1702304925456.0,1.0,0.016666666666666666 +4129,1702304985456.0,1.0,0.016666666666666666 +4130,1702305045456.0,1.0,0.016666666666666666 +4131,1702305105456.0,1.0,0.016666666666666666 +4132,1702305165456.0,1.0,0.016666666666666666 +4133,1702305225456.0,1.0,0.016666666666666666 +4134,1702305285456.0,1.0,0.016666666666666666 +4135,1702305345456.0,1.0,0.016666666666666666 +4136,1702305405456.0,1.0,0.016666666666666666 +4137,1702305465456.0,1.0,0.016666666666666666 +4138,1702305525456.0,1.0,0.016666666666666666 +4139,1702305585456.0,1.0,0.016666666666666666 +4140,1702305645456.0,1.0,0.016666666666666666 +4141,1702305705456.0,1.0,0.016666666666666666 +4142,1702305765456.0,1.0,0.016666666666666666 +4143,1702305825456.0,1.0,0.016666666666666666 +4144,1702305885456.0,1.0,0.016666666666666666 +4145,1702305945456.0,1.0,0.016666666666666666 +4146,1702306005456.0,1.0,0.016666666666666666 +4147,1702306065456.0,1.0,0.016666666666666666 +4148,1702306125456.0,1.0,0.016666666666666666 +4149,1702306185456.0,1.0,0.016666666666666666 +4150,1702306245456.0,1.0,0.016666666666666666 +4151,1702306305456.0,1.0,0.016666666666666666 +4152,1702306365456.0,1.0,0.016666666666666666 +4153,1702306425456.0,1.0,0.016666666666666666 +4154,1702306485456.0,1.0,0.016666666666666666 +4155,1702306545456.0,1.0,0.016666666666666666 +4156,1702306605456.0,1.0,0.016666666666666666 +4157,1702306665456.0,1.0,0.016666666666666666 +4158,1702306725456.0,1.0,0.016666666666666666 +4159,1702306785456.0,1.0,0.016666666666666666 +4160,1702306845456.0,1.0,0.016666666666666666 +4161,1702306905456.0,1.0,0.016666666666666666 +4162,1702306965456.0,1.0,0.016666666666666666 +4163,1702307025456.0,1.0,0.016666666666666666 +4164,1702307085456.0,1.0,0.016666666666666666 +4165,1702307145456.0,1.0,0.016666666666666666 +4166,1702307205456.0,1.0,0.016666666666666666 +4167,1702307265456.0,1.0,0.016666666666666666 +4168,1702307325456.0,1.0,0.016666666666666666 +4169,1702307385456.0,1.0,0.016666666666666666 +4170,1702307445456.0,1.0,0.016666666666666666 +4171,1702307505456.0,1.0,0.016666666666666666 +4172,1702307565456.0,1.0,0.016666666666666666 +4173,1702307625456.0,1.0,0.016666666666666666 +4174,1702307685456.0,1.0,0.016666666666666666 +4175,1702307745456.0,1.0,0.016666666666666666 +4176,1702307805456.0,1.0,0.016666666666666666 +4177,1702307865456.0,1.0,0.016666666666666666 +4178,1702307925456.0,1.0,0.016666666666666666 +4179,1702307985456.0,1.0,0.016666666666666666 +4180,1702308045456.0,1.0,0.016666666666666666 +4181,1702308105456.0,1.0,0.016666666666666666 +4182,1702308165456.0,1.0,0.016666666666666666 +4183,1702308225456.0,1.0,0.016666666666666666 +4184,1702308285456.0,1.0,0.016666666666666666 +4185,1702308345456.0,1.0,0.016666666666666666 +4186,1702308405456.0,1.0,0.016666666666666666 +4187,1702308465456.0,1.0,0.016666666666666666 +4188,1702308525456.0,1.0,0.016666666666666666 +4189,1702308585456.0,1.0,0.016666666666666666 +4190,1702308645456.0,1.0,0.016666666666666666 +4191,1702308705456.0,1.0,0.016666666666666666 +4192,1702308765456.0,1.0,0.016666666666666666 +4193,1702308825456.0,1.0,0.016666666666666666 +4194,1702308885456.0,1.0,0.016666666666666666 +4195,1702308945456.0,1.0,0.016666666666666666 +4196,1702309005456.0,1.0,0.016666666666666666 +4197,1702309065456.0,1.0,0.016666666666666666 +4198,1702309125456.0,1.0,0.016666666666666666 +4199,1702309185456.0,1.0,0.016666666666666666 +4200,1702309245456.0,1.0,0.016666666666666666 +4201,1702309305456.0,1.0,0.016666666666666666 +4202,1702309365456.0,1.0,0.016666666666666666 +4203,1702309425456.0,1.0,0.016666666666666666 +4204,1702309485456.0,1.0,0.016666666666666666 +4205,1702309545456.0,1.0,0.016666666666666666 +4206,1702309605456.0,1.0,0.016666666666666666 +4207,1702309665456.0,1.0,0.016666666666666666 +4208,1702309725456.0,1.0,0.016666666666666666 +4209,1702309785456.0,1.0,0.016666666666666666 +4210,1702309845456.0,1.0,0.016666666666666666 +4211,1702309905456.0,1.0,0.016666666666666666 +4212,1702309965456.0,1.0,0.016666666666666666 +4213,1702310025456.0,1.0,0.016666666666666666 +4214,1702310085456.0,1.0,0.016666666666666666 +4215,1702310145456.0,1.0,0.016666666666666666 +4216,1702310205456.0,1.0,0.016666666666666666 +4217,1702310265456.0,1.0,0.016666666666666666 +4218,1702310325456.0,1.0,0.016666666666666666 +4219,1702310385456.0,1.0,0.016666666666666666 +4220,1702310445456.0,1.0,0.016666666666666666 +4221,1702310505456.0,1.0,0.016666666666666666 +4222,1702310565456.0,1.0,0.016666666666666666 +4223,1702310625456.0,1.0,0.016666666666666666 +4224,1702310685456.0,1.0,0.016666666666666666 +4225,1702310745456.0,1.0,0.016666666666666666 +4226,1702310805456.0,1.0,0.016666666666666666 +4227,1702310865456.0,1.0,0.016666666666666666 +4228,1702310925456.0,1.0,0.016666666666666666 +4229,1702310985456.0,1.0,0.016666666666666666 +4230,1702311045456.0,1.0,0.016666666666666666 +4231,1702311105456.0,1.0,0.016666666666666666 +4232,1702311165456.0,1.0,0.016666666666666666 +4233,1702311225456.0,1.0,0.016666666666666666 +4234,1702311285456.0,1.0,0.016666666666666666 +4235,1702311345456.0,1.0,0.016666666666666666 +4236,1702311405456.0,1.0,0.016666666666666666 +4237,1702311465456.0,1.0,0.016666666666666666 +4238,1702311525456.0,1.0,0.016666666666666666 +4239,1702311585456.0,1.0,0.016666666666666666 +4240,1702311645456.0,1.0,0.016666666666666666 +4241,1702311705456.0,1.0,0.016666666666666666 +4242,1702311765456.0,1.0,0.016666666666666666 +4243,1702311825456.0,1.0,0.016666666666666666 +4244,1702311885456.0,1.0,0.016666666666666666 +4245,1702311945456.0,1.0,0.016666666666666666 +4246,1702312005456.0,1.0,0.016666666666666666 +4247,1702312065456.0,1.0,0.016666666666666666 +4248,1702312125456.0,1.0,0.016666666666666666 +4249,1702312185456.0,1.0,0.016666666666666666 +4250,1702312245456.0,1.0,0.016666666666666666 +4251,1702312305456.0,1.0,0.016666666666666666 +4252,1702312365456.0,1.0,0.016666666666666666 +4253,1702312425456.0,1.0,0.016666666666666666 +4254,1702312485456.0,1.0,0.016666666666666666 +4255,1702312545456.0,1.0,0.016666666666666666 +4256,1702312605456.0,1.0,0.016666666666666666 +4257,1702312665456.0,1.0,0.016666666666666666 +4258,1702312725456.0,1.0,0.016666666666666666 +4259,1702312785456.0,1.0,0.016666666666666666 +4260,1702312845456.0,1.0,0.016666666666666666 +4261,1702312905456.0,1.0,0.016666666666666666 +4262,1702312965456.0,1.0,0.016666666666666666 +4263,1702313025456.0,1.0,0.016666666666666666 +4264,1702313085456.0,1.0,0.016666666666666666 +4265,1702313145456.0,1.0,0.016666666666666666 +4266,1702313205456.0,1.0,0.016666666666666666 +4267,1702313265456.0,1.0,0.016666666666666666 +4268,1702313325456.0,1.0,0.016666666666666666 +4269,1702313385456.0,1.0,0.016666666666666666 +4270,1702313445456.0,1.0,0.016666666666666666 +4271,1702313505456.0,1.0,0.016666666666666666 +4272,1702313565456.0,1.0,0.016666666666666666 +4273,1702313625456.0,1.0,0.016666666666666666 +4274,1702313685456.0,1.0,0.016666666666666666 +4275,1702313745456.0,1.0,0.016666666666666666 +4276,1702313805456.0,1.0,0.016666666666666666 +4277,1702313865456.0,1.0,0.016666666666666666 +4278,1702313925456.0,1.0,0.016666666666666666 +4279,1702313985456.0,1.0,0.016666666666666666 +4280,1702314045456.0,1.0,0.016666666666666666 +4281,1702314105456.0,1.0,0.016666666666666666 +4282,1702314165456.0,1.0,0.016666666666666666 +4283,1702314225456.0,1.0,0.016666666666666666 +4284,1702314285456.0,1.0,0.016666666666666666 +4285,1702314345456.0,1.0,0.016666666666666666 +4286,1702314405456.0,1.0,0.016666666666666666 +4287,1702314465456.0,1.0,0.016666666666666666 +4288,1702314525456.0,1.0,0.016666666666666666 +4289,1702314585456.0,1.0,0.016666666666666666 +4290,1702314645456.0,1.0,0.016666666666666666 +4291,1702314705456.0,1.0,0.016666666666666666 +4292,1702314765456.0,1.0,0.016666666666666666 +4293,1702314825456.0,1.0,0.016666666666666666 +4294,1702314885456.0,1.0,0.016666666666666666 +4295,1702314945456.0,1.0,0.016666666666666666 +4296,1702315005456.0,1.0,0.016666666666666666 +4297,1702315065456.0,1.0,0.016666666666666666 +4298,1702315125456.0,1.0,0.016666666666666666 +4299,1702315185456.0,1.0,0.016666666666666666 +4300,1702315245456.0,1.0,0.016666666666666666 +4301,1702315305456.0,1.0,0.016666666666666666 +4302,1702315365456.0,1.0,0.016666666666666666 +4303,1702315425456.0,1.0,0.016666666666666666 +4304,1702315485456.0,1.0,0.016666666666666666 +4305,1702315545456.0,1.0,0.016666666666666666 +4306,1702315605456.0,1.0,0.016666666666666666 +4307,1702315665456.0,1.0,0.016666666666666666 +4308,1702315725456.0,1.0,0.016666666666666666 +4309,1702315785456.0,1.0,0.016666666666666666 +4310,1702315845456.0,1.0,0.016666666666666666 +4311,1702315905456.0,1.0,0.016666666666666666 +4312,1702315965456.0,1.0,0.016666666666666666 +4313,1702316025456.0,1.0,0.016666666666666666 +4314,1702316085456.0,1.0,0.016666666666666666 +4315,1702316145456.0,1.0,0.016666666666666666 +4316,1702316205456.0,1.0,0.016666666666666666 +4317,1702316265456.0,1.0,0.016666666666666666 +4318,1702316325456.0,1.0,0.016666666666666666 +4319,1702316385456.0,1.0,0.016666666666666666 +4320,1702316445456.0,1.0,0.016666666666666666 +4321,1702316505456.0,1.0,0.016666666666666666 +4322,1702316565456.0,1.0,0.016666666666666666 +4323,1702316625456.0,1.0,0.016666666666666666 +4324,1702316685456.0,1.0,0.016666666666666666 +4325,1702316745456.0,1.0,0.016666666666666666 +4326,1702316805456.0,1.0,0.016666666666666666 +4327,1702316865456.0,1.0,0.016666666666666666 +4328,1702316925456.0,1.0,0.016666666666666666 +4329,1702316985456.0,1.0,0.016666666666666666 +4330,1702317045456.0,1.0,0.016666666666666666 +4331,1702317105456.0,1.0,0.016666666666666666 +4332,1702317165456.0,1.0,0.016666666666666666 +4333,1702317225456.0,1.0,0.016666666666666666 +4334,1702317285456.0,1.0,0.016666666666666666 +4335,1702317345456.0,1.0,0.016666666666666666 +4336,1702317405456.0,1.0,0.016666666666666666 +4337,1702317465456.0,1.0,0.016666666666666666 +4338,1702317525456.0,1.0,0.016666666666666666 +4339,1702317585456.0,1.0,0.016666666666666666 +4340,1702317645456.0,1.0,0.016666666666666666 +4341,1702317705456.0,1.0,0.016666666666666666 +4342,1702317765456.0,1.0,0.016666666666666666 +4343,1702317825456.0,1.0,0.016666666666666666 +4344,1702317885456.0,1.0,0.016666666666666666 +4345,1702317945456.0,1.0,0.016666666666666666 +4346,1702318005456.0,1.0,0.016666666666666666 +4347,1702318065456.0,1.0,0.016666666666666666 +4348,1702318125456.0,1.0,0.016666666666666666 +4349,1702318185456.0,1.0,0.016666666666666666 +4350,1702318245456.0,1.0,0.016666666666666666 +4351,1702318305456.0,1.0,0.016666666666666666 +4352,1702318365456.0,1.0,0.016666666666666666 +4353,1702318425456.0,1.0,0.016666666666666666 +4354,1702318485456.0,1.0,0.016666666666666666 +4355,1702318545456.0,1.0,0.016666666666666666 +4356,1702318605456.0,1.0,0.016666666666666666 +4357,1702318665456.0,1.0,0.016666666666666666 +4358,1702318725456.0,1.0,0.016666666666666666 +4359,1702318785456.0,1.0,0.016666666666666666 +4360,1702318845456.0,1.0,0.016666666666666666 +4361,1702318905456.0,1.0,0.016666666666666666 +4362,1702318965456.0,1.0,0.016666666666666666 +4363,1702319025456.0,1.0,0.016666666666666666 +4364,1702319085456.0,1.0,0.016666666666666666 +4365,1702319145456.0,1.0,0.016666666666666666 +4366,1702319205456.0,1.0,0.016666666666666666 +4367,1702319265456.0,1.0,0.016666666666666666 +4368,1702319325456.0,1.0,0.016666666666666666 +4369,1702319385456.0,1.0,0.016666666666666666 +4370,1702319445456.0,1.0,0.016666666666666666 +4371,1702319505456.0,1.0,0.016666666666666666 +4372,1702319565456.0,1.0,0.016666666666666666 +4373,1702319625456.0,1.0,0.016666666666666666 +4374,1702319685456.0,1.0,0.016666666666666666 +4375,1702319745456.0,1.0,0.016666666666666666 +4376,1702319805456.0,1.0,0.016666666666666666 +4377,1702319865456.0,1.0,0.016666666666666666 +4378,1702319925456.0,1.0,0.016666666666666666 +4379,1702319985456.0,1.0,0.016666666666666666 +4380,1702320045456.0,1.0,0.016666666666666666 +4381,1702320105456.0,1.0,0.016666666666666666 +4382,1702320165456.0,1.0,0.016666666666666666 +4383,1702320225456.0,1.0,0.016666666666666666 +4384,1702320285456.0,1.0,0.016666666666666666 +4385,1702320345456.0,1.0,0.016666666666666666 +4386,1702320405456.0,1.0,0.016666666666666666 +4387,1702320465456.0,1.0,0.016666666666666666 +4388,1702320525456.0,1.0,0.016666666666666666 +4389,1702320585456.0,1.0,0.016666666666666666 +4390,1702320645456.0,1.0,0.016666666666666666 +4391,1702320705456.0,1.0,0.016666666666666666 +4392,1702320765456.0,1.0,0.016666666666666666 +4393,1702320825456.0,1.0,0.016666666666666666 +4394,1702320885456.0,1.0,0.016666666666666666 +4395,1702320945456.0,1.0,0.016666666666666666 +4396,1702321005456.0,1.0,0.016666666666666666 +4397,1702321065456.0,1.0,0.016666666666666666 +4398,1702321125456.0,1.0,0.016666666666666666 +4399,1702321185456.0,1.0,0.016666666666666666 +4400,1702321245456.0,1.0,0.016666666666666666 +4401,1702321305456.0,1.0,0.016666666666666666 +4402,1702321365456.0,1.0,0.016666666666666666 +4403,1702321425456.0,1.0,0.016666666666666666 +4404,1702321485456.0,1.0,0.016666666666666666 +4405,1702321545456.0,1.0,0.016666666666666666 +4406,1702321605456.0,1.0,0.016666666666666666 +4407,1702321665456.0,1.0,0.016666666666666666 +4408,1702321725456.0,1.0,0.016666666666666666 +4409,1702321785456.0,1.0,0.016666666666666666 +4410,1702321845456.0,1.0,0.016666666666666666 +4411,1702321905456.0,1.0,0.016666666666666666 +4412,1702321965456.0,1.0,0.016666666666666666 +4413,1702322025456.0,1.0,0.016666666666666666 +4414,1702322085456.0,1.0,0.016666666666666666 +4415,1702322145456.0,1.0,0.016666666666666666 +4416,1702322205456.0,1.0,0.016666666666666666 +4417,1702322265456.0,1.0,0.016666666666666666 +4418,1702322325456.0,1.0,0.016666666666666666 +4419,1702322385456.0,1.0,0.016666666666666666 +4420,1702322445456.0,1.0,0.016666666666666666 +4421,1702322505456.0,1.0,0.016666666666666666 +4422,1702322565456.0,1.0,0.016666666666666666 +4423,1702322625456.0,1.0,0.016666666666666666 +4424,1702322685456.0,1.0,0.016666666666666666 +4425,1702322745456.0,1.0,0.016666666666666666 +4426,1702322805456.0,1.0,0.016666666666666666 +4427,1702322865456.0,1.0,0.016666666666666666 +4428,1702322925456.0,1.0,0.016666666666666666 +4429,1702322985456.0,1.0,0.016666666666666666 +4430,1702323045456.0,1.0,0.016666666666666666 +4431,1702323105456.0,1.0,0.016666666666666666 +4432,1702323165456.0,1.0,0.016666666666666666 +4433,1702323225456.0,1.0,0.016666666666666666 +4434,1702323285456.0,1.0,0.016666666666666666 +4435,1702323345456.0,1.0,0.016666666666666666 +4436,1702323405456.0,1.0,0.016666666666666666 +4437,1702323465456.0,1.0,0.016666666666666666 +4438,1702323525456.0,1.0,0.016666666666666666 +4439,1702323585456.0,1.0,0.016666666666666666 +4440,1702323645456.0,1.0,0.016666666666666666 +4441,1702323705456.0,1.0,0.016666666666666666 +4442,1702323765456.0,1.0,0.016666666666666666 +4443,1702323825456.0,1.0,0.016666666666666666 +4444,1702323885456.0,1.0,0.016666666666666666 +4445,1702323945456.0,1.0,0.016666666666666666 +4446,1702324005456.0,1.0,0.016666666666666666 +4447,1702324065456.0,1.0,0.016666666666666666 +4448,1702324125456.0,1.0,0.016666666666666666 +4449,1702324185456.0,1.0,0.016666666666666666 +4450,1702324245456.0,1.0,0.016666666666666666 +4451,1702324305456.0,1.0,0.016666666666666666 +4452,1702324365456.0,1.0,0.016666666666666666 +4453,1702324425456.0,1.0,0.016666666666666666 +4454,1702324485456.0,1.0,0.016666666666666666 +4455,1702324545456.0,1.0,0.016666666666666666 +4456,1702324605456.0,1.0,0.016666666666666666 +4457,1702324665456.0,1.0,0.016666666666666666 +4458,1702324725456.0,1.0,0.016666666666666666 +4459,1702324785456.0,1.0,0.016666666666666666 +4460,1702324845456.0,1.0,0.016666666666666666 +4461,1702324905456.0,1.0,0.016666666666666666 +4462,1702324965456.0,1.0,0.016666666666666666 +4463,1702325025456.0,1.0,0.016666666666666666 +4464,1702325085456.0,1.0,0.016666666666666666 +4465,1702325145456.0,1.0,0.016666666666666666 +4466,1702325205456.0,1.0,0.016666666666666666 +4467,1702325265456.0,1.0,0.016666666666666666 +4468,1702325325456.0,1.0,0.016666666666666666 +4469,1702325385456.0,1.0,0.016666666666666666 +4470,1702325445456.0,1.0,0.016666666666666666 +4471,1702325505456.0,1.0,0.016666666666666666 +4472,1702325565456.0,1.0,0.016666666666666666 +4473,1702325625456.0,1.0,0.016666666666666666 +4474,1702325685456.0,1.0,0.016666666666666666 +4475,1702325745456.0,1.0,0.016666666666666666 +4476,1702325805456.0,1.0,0.016666666666666666 +4477,1702325865456.0,1.0,0.016666666666666666 +4478,1702325925456.0,1.0,0.016666666666666666 +4479,1702325985456.0,1.0,0.016666666666666666 +4480,1702326045456.0,1.0,0.016666666666666666 +4481,1702326105456.0,1.0,0.016666666666666666 +4482,1702326165456.0,1.0,0.016666666666666666 +4483,1702326225456.0,1.0,0.016666666666666666 +4484,1702326285456.0,1.0,0.016666666666666666 +4485,1702326345456.0,1.0,0.016666666666666666 +4486,1702326405456.0,1.0,0.016666666666666666 +4487,1702326465456.0,1.0,0.016666666666666666 +4488,1702326525456.0,1.0,0.016666666666666666 +4489,1702326585456.0,1.0,0.016666666666666666 +4490,1702326645456.0,1.0,0.016666666666666666 +4491,1702326705456.0,1.0,0.016666666666666666 +4492,1702326765456.0,1.0,0.016666666666666666 +4493,1702326825456.0,1.0,0.016666666666666666 +4494,1702326885456.0,1.0,0.016666666666666666 +4495,1702326945456.0,1.0,0.016666666666666666 +4496,1702327005456.0,1.0,0.016666666666666666 +4497,1702327065456.0,1.0,0.016666666666666666 +4498,1702327125456.0,1.0,0.016666666666666666 +4499,1702327185456.0,1.0,0.016666666666666666 +4500,1702327245456.0,1.0,0.016666666666666666 +4501,1702327305456.0,1.0,0.016666666666666666 +4502,1702327365456.0,1.0,0.016666666666666666 +4503,1702327425456.0,1.0,0.016666666666666666 +4504,1702327485456.0,1.0,0.016666666666666666 +4505,1702327545456.0,1.0,0.016666666666666666 +4506,1702327605456.0,1.0,0.016666666666666666 +4507,1702327665456.0,1.0,0.016666666666666666 +4508,1702327725456.0,1.0,0.016666666666666666 +4509,1702327785456.0,1.0,0.016666666666666666 +4510,1702327845456.0,1.0,0.016666666666666666 +4511,1702327905456.0,1.0,0.016666666666666666 +4512,1702327965456.0,1.0,0.016666666666666666 +4513,1702328025456.0,1.0,0.016666666666666666 +4514,1702328085456.0,1.0,0.016666666666666666 +4515,1702328145456.0,1.0,0.016666666666666666 +4516,1702328205456.0,1.0,0.016666666666666666 +4517,1702328265456.0,1.0,0.016666666666666666 +4518,1702328325456.0,1.0,0.016666666666666666 +4519,1702328385456.0,1.0,0.016666666666666666 +4520,1702328445456.0,1.0,0.016666666666666666 +4521,1702328505456.0,1.0,0.016666666666666666 +4522,1702328565456.0,1.0,0.016666666666666666 +4523,1702328625456.0,1.0,0.016666666666666666 +4524,1702328685456.0,1.0,0.016666666666666666 +4525,1702328745456.0,1.0,0.016666666666666666 +4526,1702328805456.0,1.0,0.016666666666666666 +4527,1702328865456.0,1.0,0.016666666666666666 +4528,1702328925456.0,1.0,0.016666666666666666 +4529,1702328985456.0,1.0,0.016666666666666666 +4530,1702329045456.0,1.0,0.016666666666666666 +4531,1702329105456.0,1.0,0.016666666666666666 +4532,1702329165456.0,1.0,0.016666666666666666 +4533,1702329225456.0,1.0,0.016666666666666666 +4534,1702329285456.0,1.0,0.016666666666666666 +4535,1702329345456.0,1.0,0.016666666666666666 +4536,1702329405456.0,1.0,0.016666666666666666 +4537,1702329465456.0,1.0,0.016666666666666666 +4538,1702329525456.0,1.0,0.016666666666666666 +4539,1702329585456.0,1.0,0.016666666666666666 +4540,1702329645456.0,1.0,0.016666666666666666 +4541,1702329705456.0,1.0,0.016666666666666666 +4542,1702329765456.0,1.0,0.016666666666666666 +4543,1702329825456.0,1.0,0.016666666666666666 +4544,1702329885456.0,1.0,0.016666666666666666 +4545,1702329945456.0,1.0,0.016666666666666666 +4546,1702330005456.0,1.0,0.016666666666666666 +4547,1702330065456.0,1.0,0.016666666666666666 +4548,1702330125456.0,1.0,0.016666666666666666 +4549,1702330185456.0,1.0,0.016666666666666666 +4550,1702330245456.0,1.0,0.016666666666666666 +4551,1702330305456.0,1.0,0.016666666666666666 +4552,1702330365456.0,1.0,0.016666666666666666 +4553,1702330425456.0,1.0,0.016666666666666666 +4554,1702330485456.0,1.0,0.016666666666666666 +4555,1702330545456.0,1.0,0.016666666666666666 +4556,1702330605456.0,1.0,0.016666666666666666 +4557,1702330665456.0,1.0,0.016666666666666666 +4558,1702330725456.0,1.0,0.016666666666666666 +4559,1702330785456.0,1.0,0.016666666666666666 +4560,1702330845456.0,1.0,0.016666666666666666 +4561,1702330905456.0,1.0,0.016666666666666666 +4562,1702330965456.0,1.0,0.016666666666666666 +4563,1702331025456.0,1.0,0.016666666666666666 +4564,1702331085456.0,1.0,0.016666666666666666 +4565,1702331145456.0,1.0,0.016666666666666666 +4566,1702331205456.0,1.0,0.016666666666666666 +4567,1702331265456.0,1.0,0.016666666666666666 +4568,1702331325456.0,1.0,0.016666666666666666 +4569,1702331385456.0,1.0,0.016666666666666666 +4570,1702331445456.0,1.0,0.016666666666666666 +4571,1702331505456.0,1.0,0.016666666666666666 +4572,1702331565456.0,1.0,0.016666666666666666 +4573,1702331625456.0,1.0,0.016666666666666666 +4574,1702331685456.0,1.0,0.016666666666666666 +4575,1702331745456.0,1.0,0.016666666666666666 +4576,1702331805456.0,1.0,0.016666666666666666 +4577,1702331865456.0,1.0,0.016666666666666666 +4578,1702331925456.0,1.0,0.016666666666666666 +4579,1702331985456.0,1.0,0.016666666666666666 +4580,1702332045456.0,1.0,0.016666666666666666 +4581,1702332105456.0,1.0,0.016666666666666666 +4582,1702332165456.0,1.0,0.016666666666666666 +4583,1702332225456.0,1.0,0.016666666666666666 +4584,1702332285456.0,1.0,0.016666666666666666 +4585,1702332345456.0,1.0,0.016666666666666666 +4586,1702332405456.0,1.0,0.016666666666666666 +4587,1702332465456.0,1.0,0.016666666666666666 +4588,1702332525456.0,1.0,0.016666666666666666 +4589,1702332585456.0,1.0,0.016666666666666666 +4590,1702332645456.0,1.0,0.016666666666666666 +4591,1702332705456.0,1.0,0.016666666666666666 +4592,1702332765456.0,1.0,0.016666666666666666 +4593,1702332825456.0,1.0,0.016666666666666666 +4594,1702332885456.0,1.0,0.016666666666666666 +4595,1702332945456.0,1.0,0.016666666666666666 +4596,1702333005456.0,1.0,0.016666666666666666 +4597,1702333065456.0,1.0,0.016666666666666666 +4598,1702333125456.0,1.0,0.016666666666666666 +4599,1702333185456.0,1.0,0.016666666666666666 +4600,1702333245456.0,1.0,0.016666666666666666 +4601,1702333305456.0,1.0,0.016666666666666666 +4602,1702333365456.0,1.0,0.016666666666666666 +4603,1702333425456.0,1.0,0.016666666666666666 +4604,1702333485456.0,1.0,0.016666666666666666 +4605,1702333545456.0,1.0,0.016666666666666666 +4606,1702333605456.0,1.0,0.016666666666666666 +4607,1702333665456.0,1.0,0.016666666666666666 +4608,1702333725456.0,1.0,0.016666666666666666 +4609,1702333785456.0,1.0,0.016666666666666666 +4610,1702333845456.0,1.0,0.016666666666666666 +4611,1702333905456.0,1.0,0.016666666666666666 +4612,1702333965456.0,1.0,0.016666666666666666 +4613,1702334025456.0,1.0,0.016666666666666666 +4614,1702334085456.0,1.0,0.016666666666666666 +4615,1702334145456.0,1.0,0.016666666666666666 +4616,1702334205456.0,1.0,0.016666666666666666 +4617,1702334265456.0,1.0,0.016666666666666666 +4618,1702334325456.0,1.0,0.016666666666666666 +4619,1702334385456.0,1.0,0.016666666666666666 +4620,1702334445456.0,1.0,0.016666666666666666 +4621,1702334505456.0,1.0,0.016666666666666666 +4622,1702334565456.0,1.0,0.016666666666666666 +4623,1702334625456.0,1.0,0.016666666666666666 +4624,1702334685456.0,1.0,0.016666666666666666 +4625,1702334745456.0,1.0,0.016666666666666666 +4626,1702334805456.0,1.0,0.016666666666666666 +4627,1702334865456.0,1.0,0.016666666666666666 +4628,1702334925456.0,1.0,0.016666666666666666 +4629,1702334985456.0,1.0,0.016666666666666666 +4630,1702335045456.0,1.0,0.016666666666666666 +4631,1702335105456.0,1.0,0.016666666666666666 +4632,1702335165456.0,1.0,0.016666666666666666 +4633,1702335225456.0,1.0,0.016666666666666666 +4634,1702335285456.0,1.0,0.016666666666666666 +4635,1702335345456.0,1.0,0.016666666666666666 +4636,1702335405456.0,1.0,0.016666666666666666 +4637,1702335465456.0,1.0,0.016666666666666666 +4638,1702335525456.0,1.0,0.016666666666666666 +4639,1702335585456.0,1.0,0.016666666666666666 +4640,1702335645456.0,1.0,0.016666666666666666 +4641,1702335705456.0,1.0,0.016666666666666666 +4642,1702335765456.0,1.0,0.016666666666666666 +4643,1702335825456.0,1.0,0.016666666666666666 +4644,1702335885456.0,1.0,0.016666666666666666 +4645,1702335945456.0,1.0,0.016666666666666666 +4646,1702336005456.0,1.0,0.016666666666666666 +4647,1702336065456.0,1.0,0.016666666666666666 +4648,1702336125456.0,1.0,0.016666666666666666 +4649,1702336185456.0,1.0,0.016666666666666666 +4650,1702336245456.0,1.0,0.016666666666666666 +4651,1702336305456.0,1.0,0.016666666666666666 +4652,1702336365456.0,1.0,0.016666666666666666 +4653,1702336425456.0,1.0,0.016666666666666666 +4654,1702336485456.0,1.0,0.016666666666666666 +4655,1702336545456.0,1.0,0.016666666666666666 +4656,1702336605456.0,1.0,0.016666666666666666 +4657,1702336665456.0,1.0,0.016666666666666666 +4658,1702336725456.0,1.0,0.016666666666666666 +4659,1702336785456.0,1.0,0.016666666666666666 +4660,1702336845456.0,1.0,0.016666666666666666 +4661,1702336905456.0,1.0,0.016666666666666666 +4662,1702336965456.0,1.0,0.016666666666666666 +4663,1702337025456.0,1.0,0.016666666666666666 +4664,1702337085456.0,1.0,0.016666666666666666 +4665,1702337145456.0,1.0,0.016666666666666666 +4666,1702337205456.0,1.0,0.016666666666666666 +4667,1702337265456.0,1.0,0.016666666666666666 +4668,1702337325456.0,1.0,0.016666666666666666 +4669,1702337385456.0,1.0,0.016666666666666666 +4670,1702337445456.0,1.0,0.016666666666666666 +4671,1702337505456.0,1.0,0.016666666666666666 +4672,1702337565456.0,1.0,0.016666666666666666 +4673,1702337625456.0,1.0,0.016666666666666666 +4674,1702337685456.0,1.0,0.016666666666666666 +4675,1702337745456.0,1.0,0.016666666666666666 +4676,1702337805456.0,1.0,0.016666666666666666 +4677,1702337865456.0,1.0,0.016666666666666666 +4678,1702337925456.0,1.0,0.016666666666666666 +4679,1702337985456.0,1.0,0.016666666666666666 +4680,1702338045456.0,1.0,0.016666666666666666 +4681,1702338105456.0,1.0,0.016666666666666666 +4682,1702338165456.0,1.0,0.016666666666666666 +4683,1702338225456.0,1.0,0.016666666666666666 +4684,1702338285456.0,1.0,0.016666666666666666 +4685,1702338345456.0,1.0,0.016666666666666666 +4686,1702338405456.0,1.0,0.016666666666666666 +4687,1702338465456.0,1.0,0.016666666666666666 +4688,1702338525456.0,1.0,0.016666666666666666 +4689,1702338585456.0,1.0,0.016666666666666666 +4690,1702338645456.0,1.0,0.016666666666666666 +4691,1702338705456.0,1.0,0.016666666666666666 +4692,1702338765456.0,1.0,0.016666666666666666 +4693,1702338825456.0,1.0,0.016666666666666666 +4694,1702338885456.0,1.0,0.016666666666666666 +4695,1702338945456.0,1.0,0.016666666666666666 +4696,1702339005456.0,1.0,0.016666666666666666 +4697,1702339065456.0,1.0,0.016666666666666666 +4698,1702339125456.0,1.0,0.016666666666666666 +4699,1702339185456.0,1.0,0.016666666666666666 +4700,1702339245456.0,1.0,0.016666666666666666 +4701,1702339305456.0,1.0,0.016666666666666666 +4702,1702339365456.0,1.0,0.016666666666666666 +4703,1702339425456.0,1.0,0.016666666666666666 +4704,1702339485456.0,1.0,0.016666666666666666 +4705,1702339545456.0,1.0,0.016666666666666666 +4706,1702339605456.0,1.0,0.016666666666666666 +4707,1702339665456.0,1.0,0.016666666666666666 +4708,1702339725456.0,1.0,0.016666666666666666 +4709,1702339785456.0,1.0,0.016666666666666666 +4710,1702339845456.0,1.0,0.016666666666666666 +4711,1702339905456.0,1.0,0.016666666666666666 +4712,1702339965456.0,1.0,0.016666666666666666 +4713,1702340025456.0,1.0,0.016666666666666666 +4714,1702340085456.0,1.0,0.016666666666666666 +4715,1702340145456.0,1.0,0.016666666666666666 +4716,1702340205456.0,1.0,0.016666666666666666 +4717,1702340265456.0,1.0,0.016666666666666666 +4718,1702340325456.0,1.0,0.016666666666666666 +4719,1702340385456.0,1.0,0.016666666666666666 +4720,1702340445456.0,1.0,0.016666666666666666 +4721,1702340505456.0,1.0,0.016666666666666666 +4722,1702340565456.0,1.0,0.016666666666666666 +4723,1702340625456.0,1.0,0.016666666666666666 +4724,1702340685456.0,1.0,0.016666666666666666 +4725,1702340745456.0,1.0,0.016666666666666666 +4726,1702340805456.0,1.0,0.016666666666666666 +4727,1702340865456.0,1.0,0.016666666666666666 +4728,1702340925456.0,1.0,0.016666666666666666 +4729,1702340985456.0,1.0,0.016666666666666666 +4730,1702341045456.0,1.0,0.016666666666666666 +4731,1702341105456.0,1.0,0.016666666666666666 +4732,1702341165456.0,1.0,0.016666666666666666 +4733,1702341225456.0,1.0,0.016666666666666666 +4734,1702341285456.0,1.0,0.016666666666666666 +4735,1702341345456.0,1.0,0.016666666666666666 +4736,1702341405456.0,1.0,0.016666666666666666 +4737,1702341465456.0,1.0,0.016666666666666666 +4738,1702341525456.0,1.0,0.016666666666666666 +4739,1702341585456.0,1.0,0.016666666666666666 +4740,1702341645456.0,1.0,0.016666666666666666 +4741,1702341705456.0,1.0,0.016666666666666666 +4742,1702341765456.0,1.0,0.016666666666666666 +4743,1702341825456.0,1.0,0.016666666666666666 +4744,1702341885456.0,1.0,0.016666666666666666 +4745,1702341945456.0,1.0,0.016666666666666666 +4746,1702342005456.0,1.0,0.016666666666666666 +4747,1702342065456.0,1.0,0.016666666666666666 +4748,1702342125456.0,1.0,0.016666666666666666 +4749,1702342185456.0,1.0,0.016666666666666666 +4750,1702342245456.0,1.0,0.016666666666666666 +4751,1702342305456.0,1.0,0.016666666666666666 +4752,1702342365456.0,1.0,0.016666666666666666 +4753,1702342425456.0,1.0,0.016666666666666666 +4754,1702342485456.0,1.0,0.016666666666666666 +4755,1702342545456.0,1.0,0.016666666666666666 +4756,1702342605456.0,1.0,0.016666666666666666 +4757,1702342665456.0,1.0,0.016666666666666666 +4758,1702342725456.0,1.0,0.016666666666666666 +4759,1702342785456.0,1.0,0.016666666666666666 +4760,1702342845456.0,1.0,0.016666666666666666 +4761,1702342905456.0,1.0,0.016666666666666666 +4762,1702342965456.0,1.0,0.016666666666666666 +4763,1702343025456.0,1.0,0.016666666666666666 +4764,1702343085456.0,1.0,0.016666666666666666 +4765,1702343145456.0,1.0,0.016666666666666666 +4766,1702343205456.0,1.0,0.016666666666666666 +4767,1702343265456.0,1.0,0.016666666666666666 +4768,1702343325456.0,1.0,0.016666666666666666 +4769,1702343385456.0,1.0,0.016666666666666666 +4770,1702343445456.0,1.0,0.016666666666666666 +4771,1702343505456.0,1.0,0.016666666666666666 +4772,1702343565456.0,1.0,0.016666666666666666 +4773,1702343625456.0,1.0,0.016666666666666666 +4774,1702343685456.0,1.0,0.016666666666666666 +4775,1702343745456.0,1.0,0.016666666666666666 +4776,1702343805456.0,1.0,0.016666666666666666 +4777,1702343865456.0,1.0,0.016666666666666666 +4778,1702343925456.0,1.0,0.016666666666666666 +4779,1702343985456.0,1.0,0.016666666666666666 +4780,1702344045456.0,1.0,0.016666666666666666 +4781,1702344105456.0,1.0,0.016666666666666666 +4782,1702344165456.0,1.0,0.016666666666666666 +4783,1702344225456.0,1.0,0.016666666666666666 +4784,1702344285456.0,1.0,0.016666666666666666 +4785,1702344345456.0,1.0,0.016666666666666666 +4786,1702344405456.0,1.0,0.016666666666666666 +4787,1702344465456.0,1.0,0.016666666666666666 +4788,1702344525456.0,1.0,0.016666666666666666 +4789,1702344585456.0,1.0,0.016666666666666666 +4790,1702344645456.0,1.0,0.016666666666666666 +4791,1702344705456.0,1.0,0.016666666666666666 +4792,1702344765456.0,1.0,0.016666666666666666 +4793,1702344825456.0,1.0,0.016666666666666666 +4794,1702344885456.0,1.0,0.016666666666666666 +4795,1702344945456.0,1.0,0.016666666666666666 +4796,1702345005456.0,1.0,0.016666666666666666 +4797,1702345065456.0,1.0,0.016666666666666666 +4798,1702345125456.0,1.0,0.016666666666666666 +4799,1702345185456.0,1.0,0.016666666666666666 +4800,1702345245456.0,1.0,0.016666666666666666 +4801,1702345305456.0,1.0,0.016666666666666666 +4802,1702345365456.0,1.0,0.016666666666666666 +4803,1702345425456.0,1.0,0.016666666666666666 +4804,1702345485456.0,1.0,0.016666666666666666 +4805,1702345545456.0,1.0,0.016666666666666666 +4806,1702345605456.0,1.0,0.016666666666666666 +4807,1702345665456.0,1.0,0.016666666666666666 +4808,1702345725456.0,1.0,0.016666666666666666 +4809,1702345785456.0,1.0,0.016666666666666666 +4810,1702345845456.0,1.0,0.016666666666666666 +4811,1702345905456.0,1.0,0.016666666666666666 +4812,1702345965456.0,1.0,0.016666666666666666 +4813,1702346025456.0,1.0,0.016666666666666666 +4814,1702346085456.0,1.0,0.016666666666666666 +4815,1702346145456.0,1.0,0.016666666666666666 +4816,1702346205456.0,1.0,0.016666666666666666 +4817,1702346265456.0,1.0,0.016666666666666666 +4818,1702346325456.0,1.0,0.016666666666666666 +4819,1702346385456.0,1.0,0.016666666666666666 +4820,1702346445456.0,1.0,0.016666666666666666 +4821,1702346505456.0,1.0,0.016666666666666666 +4822,1702346565456.0,1.0,0.016666666666666666 +4823,1702346625456.0,1.0,0.016666666666666666 +4824,1702346685456.0,1.0,0.016666666666666666 +4825,1702346745456.0,1.0,0.016666666666666666 +4826,1702346805456.0,1.0,0.016666666666666666 +4827,1702346865456.0,1.0,0.016666666666666666 +4828,1702346925456.0,1.0,0.016666666666666666 +4829,1702346985456.0,1.0,0.016666666666666666 +4830,1702347045456.0,1.0,0.016666666666666666 +4831,1702347105456.0,1.0,0.016666666666666666 +4832,1702347165456.0,1.0,0.016666666666666666 +4833,1702347225456.0,1.0,0.016666666666666666 +4834,1702347285456.0,1.0,0.016666666666666666 +4835,1702347345456.0,1.0,0.016666666666666666 +4836,1702347405456.0,1.0,0.016666666666666666 +4837,1702347465456.0,1.0,0.016666666666666666 +4838,1702347525456.0,1.0,0.016666666666666666 +4839,1702347585456.0,1.0,0.016666666666666666 +4840,1702347645456.0,1.0,0.016666666666666666 +4841,1702347705456.0,1.0,0.016666666666666666 +4842,1702347765456.0,1.0,0.016666666666666666 +4843,1702347825456.0,1.0,0.016666666666666666 +4844,1702347885456.0,1.0,0.016666666666666666 +4845,1702347945456.0,1.0,0.016666666666666666 +4846,1702348005456.0,1.0,0.016666666666666666 +4847,1702348065456.0,1.0,0.016666666666666666 +4848,1702348125456.0,1.0,0.016666666666666666 +4849,1702348185456.0,1.0,0.016666666666666666 +4850,1702348245456.0,1.0,0.016666666666666666 +4851,1702348305456.0,1.0,0.016666666666666666 +4852,1702348365456.0,1.0,0.016666666666666666 +4853,1702348425456.0,1.0,0.016666666666666666 +4854,1702348485456.0,1.0,0.016666666666666666 +4855,1702348545456.0,1.0,0.016666666666666666 +4856,1702348605456.0,1.0,0.016666666666666666 +4857,1702348665456.0,1.0,0.016666666666666666 +4858,1702348725456.0,1.0,0.016666666666666666 +4859,1702348785456.0,1.0,0.016666666666666666 +4860,1702348845456.0,1.0,0.016666666666666666 +4861,1702348905456.0,1.0,0.016666666666666666 +4862,1702348965456.0,1.0,0.016666666666666666 +4863,1702349025456.0,1.0,0.016666666666666666 +4864,1702349085456.0,1.0,0.016666666666666666 +4865,1702349145456.0,1.0,0.016666666666666666 +4866,1702349205456.0,1.0,0.016666666666666666 +4867,1702349265456.0,1.0,0.016666666666666666 +4868,1702349325456.0,1.0,0.016666666666666666 +4869,1702349385456.0,1.0,0.016666666666666666 +4870,1702349445456.0,1.0,0.016666666666666666 +4871,1702349505456.0,1.0,0.016666666666666666 +4872,1702349565456.0,1.0,0.016666666666666666 +4873,1702349625456.0,1.0,0.016666666666666666 +4874,1702349685456.0,1.0,0.016666666666666666 +4875,1702349745456.0,1.0,0.016666666666666666 +4876,1702349805456.0,1.0,0.016666666666666666 +4877,1702349865456.0,1.0,0.016666666666666666 +4878,1702349925456.0,1.0,0.016666666666666666 +4879,1702349985456.0,1.0,0.016666666666666666 +4880,1702350045456.0,1.0,0.016666666666666666 +4881,1702350105456.0,1.0,0.016666666666666666 +4882,1702350165456.0,1.0,0.016666666666666666 +4883,1702350225456.0,1.0,0.016666666666666666 +4884,1702350285456.0,1.0,0.016666666666666666 +4885,1702350345456.0,1.0,0.016666666666666666 +4886,1702350405456.0,1.0,0.016666666666666666 +4887,1702350465456.0,1.0,0.016666666666666666 +4888,1702350525456.0,1.0,0.016666666666666666 +4889,1702350585456.0,1.0,0.016666666666666666 +4890,1702350645456.0,1.0,0.016666666666666666 +4891,1702350705456.0,1.0,0.016666666666666666 +4892,1702350765456.0,1.0,0.016666666666666666 +4893,1702350825456.0,1.0,0.016666666666666666 +4894,1702350885456.0,1.0,0.016666666666666666 +4895,1702350945456.0,1.0,0.016666666666666666 +4896,1702351005456.0,1.0,0.016666666666666666 +4897,1702351065456.0,1.0,0.016666666666666666 +4898,1702351125456.0,1.0,0.016666666666666666 +4899,1702351185456.0,1.0,0.016666666666666666 +4900,1702351245456.0,1.0,0.016666666666666666 +4901,1702351305456.0,1.0,0.016666666666666666 +4902,1702351365456.0,1.0,0.016666666666666666 +4903,1702351425456.0,1.0,0.016666666666666666 +4904,1702351485456.0,1.0,0.016666666666666666 +4905,1702351545456.0,1.0,0.016666666666666666 +4906,1702351605456.0,1.0,0.016666666666666666 +4907,1702351665456.0,1.0,0.016666666666666666 +4908,1702351725456.0,1.0,0.016666666666666666 +4909,1702351785456.0,1.0,0.016666666666666666 +4910,1702351845456.0,1.0,0.016666666666666666 +4911,1702351905456.0,1.0,0.016666666666666666 +4912,1702351965456.0,1.0,0.016666666666666666 +4913,1702352025456.0,1.0,0.016666666666666666 +4914,1702352085456.0,1.0,0.016666666666666666 +4915,1702352145456.0,1.0,0.016666666666666666 +4916,1702352205456.0,1.0,0.016666666666666666 +4917,1702352265456.0,1.0,0.016666666666666666 +4918,1702352325456.0,1.0,0.016666666666666666 +4919,1702352385456.0,1.0,0.016666666666666666 +4920,1702352445456.0,1.0,0.016666666666666666 +4921,1702352505456.0,1.0,0.016666666666666666 +4922,1702352565456.0,1.0,0.016666666666666666 +4923,1702352625456.0,1.0,0.016666666666666666 +4924,1702352685456.0,1.0,0.016666666666666666 +4925,1702352745456.0,1.0,0.016666666666666666 +4926,1702352805456.0,1.0,0.016666666666666666 +4927,1702352865456.0,1.0,0.016666666666666666 +4928,1702352925456.0,1.0,0.016666666666666666 +4929,1702352985456.0,1.0,0.016666666666666666 +4930,1702353045456.0,1.0,0.016666666666666666 +4931,1702353105456.0,1.0,0.016666666666666666 +4932,1702353165456.0,1.0,0.016666666666666666 +4933,1702353225456.0,1.0,0.016666666666666666 +4934,1702353285456.0,1.0,0.016666666666666666 +4935,1702353345456.0,1.0,0.016666666666666666 +4936,1702353405456.0,1.0,0.016666666666666666 +4937,1702353465456.0,1.0,0.016666666666666666 +4938,1702353525456.0,1.0,0.016666666666666666 +4939,1702353585456.0,1.0,0.016666666666666666 +4940,1702353645456.0,1.0,0.016666666666666666 +4941,1702353705456.0,1.0,0.016666666666666666 +4942,1702353765456.0,1.0,0.016666666666666666 +4943,1702353825456.0,1.0,0.016666666666666666 +4944,1702353885456.0,1.0,0.016666666666666666 +4945,1702353945456.0,1.0,0.016666666666666666 +4946,1702354005456.0,1.0,0.016666666666666666 +4947,1702354065456.0,1.0,0.016666666666666666 +4948,1702354125456.0,1.0,0.016666666666666666 +4949,1702354185456.0,1.0,0.016666666666666666 +4950,1702354245456.0,1.0,0.016666666666666666 +4951,1702354305456.0,1.0,0.016666666666666666 +4952,1702354365456.0,1.0,0.016666666666666666 +4953,1702354425456.0,1.0,0.016666666666666666 +4954,1702354485456.0,1.0,0.016666666666666666 +4955,1702354545456.0,1.0,0.016666666666666666 +4956,1702354605456.0,1.0,0.016666666666666666 +4957,1702354665456.0,1.0,0.016666666666666666 +4958,1702354725456.0,1.0,0.016666666666666666 +4959,1702354785456.0,1.0,0.016666666666666666 +4960,1702354845456.0,1.0,0.016666666666666666 +4961,1702354905456.0,1.0,0.016666666666666666 +4962,1702354965456.0,1.0,0.016666666666666666 +4963,1702355025456.0,1.0,0.016666666666666666 +4964,1702355085456.0,1.0,0.016666666666666666 +4965,1702355145456.0,1.0,0.016666666666666666 +4966,1702355205456.0,1.0,0.016666666666666666 +4967,1702355265456.0,1.0,0.016666666666666666 +4968,1702355325456.0,1.0,0.016666666666666666 +4969,1702355385456.0,1.0,0.016666666666666666 +4970,1702355445456.0,1.0,0.016666666666666666 +4971,1702355505456.0,1.0,0.016666666666666666 +4972,1702355565456.0,1.0,0.016666666666666666 +4973,1702355625456.0,1.0,0.016666666666666666 +4974,1702355685456.0,1.0,0.016666666666666666 +4975,1702355745456.0,1.0,0.016666666666666666 +4976,1702355805456.0,1.0,0.016666666666666666 +4977,1702355865456.0,1.0,0.016666666666666666 +4978,1702355925456.0,1.0,0.016666666666666666 +4979,1702355985456.0,1.0,0.016666666666666666 +4980,1702356045456.0,1.0,0.016666666666666666 +4981,1702356105456.0,1.0,0.016666666666666666 +4982,1702356165456.0,1.0,0.016666666666666666 +4983,1702356225456.0,1.0,0.016666666666666666 +4984,1702356285456.0,1.0,0.016666666666666666 +4985,1702356345456.0,1.0,0.016666666666666666 +4986,1702356405456.0,1.0,0.016666666666666666 +4987,1702356465456.0,1.0,0.016666666666666666 +4988,1702356525456.0,1.0,0.016666666666666666 +4989,1702356585456.0,1.0,0.016666666666666666 +4990,1702356645456.0,1.0,0.016666666666666666 +4991,1702356705456.0,1.0,0.016666666666666666 +4992,1702356765456.0,1.0,0.016666666666666666 +4993,1702356825456.0,1.0,0.016666666666666666 +4994,1702356885456.0,1.0,0.016666666666666666 +4995,1702356945456.0,1.0,0.016666666666666666 +4996,1702357005456.0,1.0,0.016666666666666666 +4997,1702357065456.0,1.0,0.016666666666666666 +4998,1702357125456.0,1.0,0.016666666666666666 +4999,1702357185456.0,1.0,0.016666666666666666 +5000,1702357245456.0,1.0,0.016666666666666666 +5001,1702357305456.0,1.0,0.016666666666666666 +5002,1702357365456.0,1.0,0.016666666666666666 +5003,1702357425456.0,1.0,0.016666666666666666 +5004,1702357485456.0,1.0,0.016666666666666666 +5005,1702357545456.0,1.0,0.016666666666666666 +5006,1702357605456.0,1.0,0.016666666666666666 +5007,1702357665456.0,1.0,0.016666666666666666 +5008,1702357725456.0,1.0,0.016666666666666666 +5009,1702357785456.0,1.0,0.016666666666666666 +5010,1702357845456.0,1.0,0.016666666666666666 +5011,1702357905456.0,1.0,0.016666666666666666 +5012,1702357965456.0,1.0,0.016666666666666666 +5013,1702358025456.0,1.0,0.016666666666666666 +5014,1702358085456.0,1.0,0.016666666666666666 +5015,1702358145456.0,1.0,0.016666666666666666 +5016,1702358205456.0,1.0,0.016666666666666666 +5017,1702358265456.0,1.0,0.016666666666666666 +5018,1702358325456.0,1.0,0.016666666666666666 +5019,1702358385456.0,1.0,0.016666666666666666 +5020,1702358445456.0,1.0,0.016666666666666666 +5021,1702358505456.0,1.0,0.016666666666666666 +5022,1702358565456.0,1.0,0.016666666666666666 +5023,1702358625456.0,1.0,0.016666666666666666 +5024,1702358685456.0,1.0,0.016666666666666666 +5025,1702358745456.0,1.0,0.016666666666666666 +5026,1702358805456.0,1.0,0.016666666666666666 +5027,1702358865456.0,1.0,0.016666666666666666 +5028,1702358925456.0,1.0,0.016666666666666666 +5029,1702358985456.0,1.0,0.016666666666666666 +5030,1702359045456.0,1.0,0.016666666666666666 +5031,1702359105456.0,1.0,0.016666666666666666 +5032,1702359165456.0,1.0,0.016666666666666666 +5033,1702359225456.0,1.0,0.016666666666666666 +5034,1702359285456.0,1.0,0.016666666666666666 +5035,1702359345456.0,1.0,0.016666666666666666 +5036,1702359405456.0,1.0,0.016666666666666666 +5037,1702359465456.0,1.0,0.016666666666666666 +5038,1702359525456.0,1.0,0.016666666666666666 +5039,1702359585456.0,1.0,0.016666666666666666 +5040,1702359645456.0,1.0,0.016666666666666666 +5041,1702359705456.0,1.0,0.016666666666666666 +5042,1702359765456.0,1.0,0.016666666666666666 +5043,1702359825456.0,1.0,0.016666666666666666 +5044,1702359885456.0,1.0,0.016666666666666666 +5045,1702359945456.0,1.0,0.016666666666666666 +5046,1702360005456.0,1.0,0.016666666666666666 +5047,1702360065456.0,1.0,0.016666666666666666 +5048,1702360125456.0,1.0,0.016666666666666666 +5049,1702360185456.0,1.0,0.016666666666666666 +5050,1702360245456.0,1.0,0.016666666666666666 +5051,1702360305456.0,1.0,0.016666666666666666 +5052,1702360365456.0,1.0,0.016666666666666666 +5053,1702360425456.0,1.0,0.016666666666666666 +5054,1702360485456.0,1.0,0.016666666666666666 +5055,1702360545456.0,1.0,0.016666666666666666 +5056,1702360605456.0,1.0,0.016666666666666666 +5057,1702360665456.0,1.0,0.016666666666666666 +5058,1702360725456.0,1.0,0.016666666666666666 +5059,1702360785456.0,1.0,0.016666666666666666 +5060,1702360845456.0,1.0,0.016666666666666666 +5061,1702360905456.0,1.0,0.016666666666666666 +5062,1702360965456.0,1.0,0.016666666666666666 +5063,1702361025456.0,1.0,0.016666666666666666 +5064,1702361085456.0,1.0,0.016666666666666666 +5065,1702361145456.0,1.0,0.016666666666666666 +5066,1702361205456.0,1.0,0.016666666666666666 +5067,1702361265456.0,0.0,0.016666666666666666 +5068,1702361325456.0,0.0,0.016666666666666666 +5069,1702361385456.0,0.0,0.016666666666666666 +5070,1702361445456.0,0.0,0.016666666666666666 +5071,1702361505456.0,0.0,0.016666666666666666 +5072,1702361565456.0,0.0,0.016666666666666666 +5073,1702361625456.0,0.0,0.016666666666666666 +5074,1702361685456.0,0.0,0.016666666666666666 +5075,1702361745456.0,0.0,0.016666666666666666 +5076,1702361805456.0,0.0,0.016666666666666666 +5077,1702361865456.0,0.0,0.016666666666666666 +5078,1702361925456.0,0.0,0.016666666666666666 +5079,1702361985456.0,0.0,0.016666666666666666 +5080,1702362045456.0,0.0,0.016666666666666666 +5081,1702362105456.0,0.0,0.016666666666666666 +5082,1702362165456.0,0.0,0.016666666666666666 +5083,1702362225456.0,0.0,0.016666666666666666 +5084,1702362285456.0,0.0,0.016666666666666666 +5085,1702362345456.0,0.0,0.016666666666666666 +5086,1702362405456.0,0.0,0.016666666666666666 +5087,1702362465456.0,0.0,0.016666666666666666 +5088,1702362525456.0,0.0,0.016666666666666666 +5089,1702362585456.0,0.0,0.016666666666666666 +5090,1702362645456.0,0.0,0.016666666666666666 +5091,1702362705456.0,0.0,0.016666666666666666 +5092,1702362765456.0,0.0,0.016666666666666666 +5093,1702362825456.0,0.0,0.016666666666666666 +5094,1702362885456.0,0.0,0.016666666666666666 +5095,1702362945456.0,0.0,0.016666666666666666 +5096,1702363005456.0,0.0,0.016666666666666666 +5097,1702363065456.0,0.0,0.016666666666666666 +5098,1702363125456.0,0.0,0.016666666666666666 +5099,1702363185456.0,0.0,0.016666666666666666 +5100,1702363245456.0,0.0,0.016666666666666666 +5101,1702363305456.0,0.0,0.016666666666666666 +5102,1702363365456.0,0.0,0.016666666666666666 +5103,1702363425456.0,0.0,0.016666666666666666 +5104,1702363485456.0,0.0,0.016666666666666666 +5105,1702363545456.0,0.0,0.016666666666666666 +5106,1702363605456.0,0.0,0.016666666666666666 +5107,1702363665456.0,0.0,0.016666666666666666 +5108,1702363725456.0,0.0,0.016666666666666666 +5109,1702363785456.0,0.0,0.016666666666666666 +5110,1702363845456.0,0.0,0.016666666666666666 +5111,1702363905456.0,0.0,0.016666666666666666 +5112,1702363965456.0,0.0,0.016666666666666666 +5113,1702364025456.0,0.0,0.016666666666666666 +5114,1702364085456.0,0.0,0.016666666666666666 +5115,1702364145456.0,0.0,0.016666666666666666 +5116,1702364205456.0,0.0,0.016666666666666666 +5117,1702364265456.0,0.0,0.016666666666666666 +5118,1702364325456.0,0.0,0.016666666666666666 +5119,1702364385456.0,0.0,0.016666666666666666 +5120,1702364445456.0,0.0,0.016666666666666666 +5121,1702364505456.0,0.0,0.016666666666666666 +5122,1702364565456.0,0.0,0.016666666666666666 +5123,1702364625456.0,0.0,0.016666666666666666 +5124,1702364685456.0,0.0,0.016666666666666666 +5125,1702364745456.0,0.0,0.016666666666666666 +5126,1702364805456.0,0.0,0.016666666666666666 +5127,1702364865456.0,0.0,0.016666666666666666 +5128,1702364925456.0,0.0,0.016666666666666666 +5129,1702364985456.0,0.0,0.016666666666666666 +5130,1702365045456.0,0.0,0.016666666666666666 +5131,1702365105456.0,0.0,0.016666666666666666 +5132,1702365165456.0,0.0,0.016666666666666666 +5133,1702365225456.0,0.0,0.016666666666666666 +5134,1702365285456.0,0.0,0.016666666666666666 +5135,1702365345456.0,0.0,0.016666666666666666 +5136,1702365405456.0,0.0,0.016666666666666666 +5137,1702365465456.0,0.0,0.016666666666666666 +5138,1702365525456.0,0.0,0.016666666666666666 +5139,1702365585456.0,0.0,0.016666666666666666 +5140,1702365645456.0,0.0,0.016666666666666666 +5141,1702365705456.0,0.0,0.016666666666666666 +5142,1702365765456.0,0.0,0.016666666666666666 +5143,1702365825456.0,0.0,0.016666666666666666 +5144,1702365885456.0,0.0,0.016666666666666666 +5145,1702365945456.0,0.0,0.016666666666666666 +5146,1702366005456.0,0.0,0.016666666666666666 +5147,1702366065456.0,0.0,0.016666666666666666 +5148,1702366125456.0,0.0,0.016666666666666666 +5149,1702366185456.0,0.0,0.016666666666666666 +5150,1702366245456.0,0.0,0.016666666666666666 +5151,1702366305456.0,0.0,0.016666666666666666 +5152,1702366365456.0,0.0,0.016666666666666666 +5153,1702366425456.0,0.0,0.016666666666666666 +5154,1702366485456.0,0.0,0.016666666666666666 +5155,1702366545456.0,0.0,0.016666666666666666 +5156,1702366605456.0,0.0,0.016666666666666666 +5157,1702366665456.0,0.0,0.016666666666666666 +5158,1702366725456.0,0.0,0.016666666666666666 +5159,1702366785456.0,0.0,0.016666666666666666 +5160,1702366845456.0,0.0,0.016666666666666666 +5161,1702366905456.0,0.0,0.016666666666666666 +5162,1702366965456.0,0.0,0.016666666666666666 +5163,1702367025456.0,0.0,0.016666666666666666 +5164,1702367085456.0,0.0,0.016666666666666666 +5165,1702367145456.0,0.0,0.016666666666666666 +5166,1702367205456.0,0.0,0.016666666666666666 +5167,1702367265456.0,0.0,0.016666666666666666 +5168,1702367325456.0,0.0,0.016666666666666666 +5169,1702367385456.0,0.0,0.016666666666666666 +5170,1702367445456.0,0.0,0.016666666666666666 +5171,1702367505456.0,0.0,0.016666666666666666 +5172,1702367565456.0,0.0,0.016666666666666666 +5173,1702367625456.0,0.0,0.016666666666666666 +5174,1702367685456.0,0.0,0.016666666666666666 +5175,1702367745456.0,0.0,0.016666666666666666 +5176,1702367805456.0,0.0,0.016666666666666666 +5177,1702367865456.0,0.0,0.016666666666666666 +5178,1702367925456.0,0.0,0.016666666666666666 +5179,1702367985456.0,0.0,0.016666666666666666 +5180,1702368045456.0,0.0,0.016666666666666666 +5181,1702368105456.0,0.0,0.016666666666666666 +5182,1702368165456.0,0.0,0.016666666666666666 +5183,1702368225456.0,0.0,0.016666666666666666 +5184,1702368285456.0,0.0,0.016666666666666666 +5185,1702368345456.0,0.0,0.016666666666666666 +5186,1702368405456.0,0.0,0.016666666666666666 +5187,1702368465456.0,0.0,0.016666666666666666 +5188,1702368525456.0,0.0,0.016666666666666666 +5189,1702368585456.0,0.0,0.016666666666666666 +5190,1702368645456.0,0.0,0.016666666666666666 +5191,1702368705456.0,0.0,0.016666666666666666 +5192,1702368765456.0,0.0,0.016666666666666666 +5193,1702368825456.0,0.0,0.016666666666666666 +5194,1702368885456.0,0.0,0.016666666666666666 +5195,1702368945456.0,0.0,0.016666666666666666 +5196,1702369005456.0,0.0,0.016666666666666666 +5197,1702369065456.0,0.0,0.016666666666666666 +5198,1702369125456.0,0.0,0.016666666666666666 +5199,1702369185456.0,0.0,0.016666666666666666 +5200,1702369245456.0,0.0,0.016666666666666666 +5201,1702369305456.0,0.0,0.016666666666666666 +5202,1702369365456.0,0.0,0.016666666666666666 +5203,1702369425456.0,0.0,0.016666666666666666 +5204,1702369485456.0,0.0,0.016666666666666666 +5205,1702369545456.0,0.0,0.016666666666666666 +5206,1702369605456.0,0.0,0.016666666666666666 +5207,1702369665456.0,0.0,0.016666666666666666 +5208,1702369725456.0,0.0,0.016666666666666666 +5209,1702369785456.0,0.0,0.016666666666666666 +5210,1702369845456.0,0.0,0.016666666666666666 +5211,1702369905456.0,0.0,0.016666666666666666 +5212,1702369965456.0,0.0,0.016666666666666666 +5213,1702370025456.0,0.0,0.016666666666666666 +5214,1702370085456.0,0.0,0.016666666666666666 +5215,1702370145456.0,0.0,0.016666666666666666 +5216,1702370205456.0,0.0,0.016666666666666666 +5217,1702370265456.0,0.0,0.016666666666666666 +5218,1702370325456.0,0.0,0.016666666666666666 +5219,1702370385456.0,0.0,0.016666666666666666 +5220,1702370445456.0,0.0,0.016666666666666666 +5221,1702370505456.0,0.0,0.016666666666666666 +5222,1702370565456.0,0.0,0.016666666666666666 +5223,1702370625456.0,0.0,0.016666666666666666 +5224,1702370685456.0,0.0,0.016666666666666666 +5225,1702370745456.0,0.0,0.016666666666666666 +5226,1702370805456.0,0.0,0.016666666666666666 +5227,1702370865456.0,0.0,0.016666666666666666 +5228,1702370925456.0,0.0,0.016666666666666666 +5229,1702370985456.0,0.0,0.016666666666666666 +5230,1702371045456.0,0.0,0.016666666666666666 +5231,1702371105456.0,0.0,0.016666666666666666 +5232,1702371165456.0,0.0,0.016666666666666666 +5233,1702371225456.0,0.0,0.016666666666666666 +5234,1702371285456.0,0.0,0.016666666666666666 +5235,1702371345456.0,0.0,0.016666666666666666 +5236,1702371405456.0,0.0,0.016666666666666666 +5237,1702371465456.0,0.0,0.016666666666666666 +5238,1702371525456.0,0.0,0.016666666666666666 +5239,1702371585456.0,0.0,0.016666666666666666 +5240,1702371645456.0,0.0,0.016666666666666666 +5241,1702371705456.0,0.0,0.016666666666666666 +5242,1702371765456.0,0.0,0.016666666666666666 +5243,1702371825456.0,0.0,0.016666666666666666 +5244,1702371885456.0,0.0,0.016666666666666666 +5245,1702371945456.0,0.0,0.016666666666666666 +5246,1702372005456.0,0.0,0.016666666666666666 +5247,1702372065456.0,0.0,0.016666666666666666 +5248,1702372125456.0,0.0,0.016666666666666666 +5249,1702372185456.0,0.0,0.016666666666666666 +5250,1702372245456.0,0.0,0.016666666666666666 +5251,1702372305456.0,0.0,0.016666666666666666 +5252,1702372365456.0,0.0,0.016666666666666666 +5253,1702372425456.0,0.0,0.016666666666666666 +5254,1702372485456.0,0.0,0.016666666666666666 +5255,1702372545456.0,0.0,0.016666666666666666 +5256,1702372605456.0,0.0,0.016666666666666666 +5257,1702372665456.0,0.0,0.016666666666666666 +5258,1702372725456.0,0.0,0.016666666666666666 +5259,1702372785456.0,0.0,0.016666666666666666 +5260,1702372845456.0,0.0,0.016666666666666666 +5261,1702372905456.0,0.0,0.016666666666666666 +5262,1702372965456.0,0.0,0.016666666666666666 +5263,1702373025456.0,0.0,0.016666666666666666 +5264,1702373085456.0,0.0,0.016666666666666666 +5265,1702373145456.0,0.0,0.016666666666666666 +5266,1702373205456.0,0.0,0.016666666666666666 +5267,1702373265456.0,0.0,0.016666666666666666 +5268,1702373325456.0,0.0,0.016666666666666666 +5269,1702373385456.0,0.0,0.016666666666666666 +5270,1702373445456.0,0.0,0.016666666666666666 +5271,1702373505456.0,0.0,0.016666666666666666 +5272,1702373565456.0,0.0,0.016666666666666666 +5273,1702373625456.0,0.0,0.016666666666666666 +5274,1702373685456.0,0.0,0.016666666666666666 +5275,1702373745456.0,0.0,0.016666666666666666 +5276,1702373805456.0,0.0,0.016666666666666666 +5277,1702373865456.0,0.0,0.016666666666666666 +5278,1702373925456.0,0.0,0.016666666666666666 +5279,1702373985456.0,0.0,0.016666666666666666 +5280,1702374045456.0,0.0,0.016666666666666666 +5281,1702374105456.0,0.0,0.016666666666666666 +5282,1702374165456.0,0.0,0.016666666666666666 +5283,1702374225456.0,0.0,0.016666666666666666 +5284,1702374285456.0,0.0,0.016666666666666666 +5285,1702374345456.0,0.0,0.016666666666666666 +5286,1702374405456.0,0.0,0.016666666666666666 +5287,1702374465456.0,0.0,0.016666666666666666 +5288,1702374525456.0,0.0,0.016666666666666666 +5289,1702374585456.0,0.0,0.016666666666666666 +5290,1702374645456.0,0.0,0.016666666666666666 +5291,1702374705456.0,0.0,0.016666666666666666 +5292,1702374765456.0,0.0,0.016666666666666666 +5293,1702374825456.0,0.0,0.016666666666666666 +5294,1702374885456.0,0.0,0.016666666666666666 +5295,1702374945456.0,0.0,0.016666666666666666 +5296,1702375005456.0,0.0,0.016666666666666666 +5297,1702375065456.0,0.0,0.016666666666666666 +5298,1702375125456.0,0.0,0.016666666666666666 +5299,1702375185456.0,0.0,0.016666666666666666 +5300,1702375245456.0,0.0,0.016666666666666666 +5301,1702375305456.0,0.0,0.016666666666666666 +5302,1702375365456.0,0.0,0.016666666666666666 +5303,1702375425456.0,0.0,0.016666666666666666 +5304,1702375485456.0,0.0,0.016666666666666666 +5305,1702375545456.0,0.0,0.016666666666666666 +5306,1702375605456.0,0.0,0.016666666666666666 +5307,1702375665456.0,0.0,0.016666666666666666 +5308,1702375725456.0,0.0,0.016666666666666666 +5309,1702375785456.0,0.0,0.016666666666666666 +5310,1702375845456.0,0.0,0.016666666666666666 +5311,1702375905456.0,0.0,0.016666666666666666 +5312,1702375965456.0,0.0,0.016666666666666666 +5313,1702376025456.0,0.0,0.016666666666666666 +5314,1702376085456.0,0.0,0.016666666666666666 +5315,1702376145456.0,0.0,0.016666666666666666 +5316,1702376205456.0,0.0,0.016666666666666666 +5317,1702376265456.0,0.0,0.016666666666666666 +5318,1702376325456.0,0.0,0.016666666666666666 +5319,1702376385456.0,0.0,0.016666666666666666 +5320,1702376445456.0,0.0,0.016666666666666666 +5321,1702376505456.0,0.0,0.016666666666666666 +5322,1702376565456.0,0.0,0.016666666666666666 +5323,1702376625456.0,0.0,0.016666666666666666 +5324,1702376685456.0,0.0,0.016666666666666666 +5325,1702376745456.0,0.0,0.016666666666666666 +5326,1702376805456.0,0.0,0.016666666666666666 +5327,1702376865456.0,0.0,0.016666666666666666 +5328,1702376925456.0,0.0,0.016666666666666666 +5329,1702376985456.0,0.0,0.016666666666666666 +5330,1702377045456.0,0.0,0.016666666666666666 +5331,1702377105456.0,0.0,0.016666666666666666 +5332,1702377165456.0,0.0,0.016666666666666666 +5333,1702377225456.0,0.0,0.016666666666666666 +5334,1702377285456.0,0.0,0.016666666666666666 +5335,1702377345456.0,0.0,0.016666666666666666 +5336,1702377405456.0,0.0,0.016666666666666666 +5337,1702377465456.0,0.0,0.016666666666666666 +5338,1702377525456.0,0.0,0.016666666666666666 +5339,1702377585456.0,0.0,0.016666666666666666 +5340,1702377645456.0,0.0,0.016666666666666666 +5341,1702377705456.0,0.0,0.016666666666666666 +5342,1702377765456.0,0.0,0.016666666666666666 +5343,1702377825456.0,0.0,0.016666666666666666 +5344,1702377885456.0,0.0,0.016666666666666666 +5345,1702377945456.0,0.0,0.016666666666666666 +5346,1702378005456.0,0.0,0.016666666666666666 +5347,1702378065456.0,0.0,0.016666666666666666 +5348,1702378125456.0,0.0,0.016666666666666666 +5349,1702378185456.0,0.0,0.016666666666666666 +5350,1702378245456.0,0.0,0.016666666666666666 +5351,1702378305456.0,1.0,0.016666666666666666 +5352,1702378365456.0,1.0,0.016666666666666666 +5353,1702378425456.0,1.0,0.016666666666666666 +5354,1702378485456.0,1.0,0.016666666666666666 +5355,1702378545456.0,1.0,0.016666666666666666 +5356,1702378605456.0,1.0,0.016666666666666666 +5357,1702378665456.0,1.0,0.016666666666666666 +5358,1702378725456.0,1.0,0.016666666666666666 +5359,1702378785456.0,1.0,0.016666666666666666 +5360,1702378845456.0,0.0,0.016666666666666666 +5361,1702378905456.0,0.0,0.016666666666666666 +5362,1702378965456.0,0.0,0.016666666666666666 +5363,1702379025456.0,0.0,0.016666666666666666 +5364,1702379085456.0,0.0,0.016666666666666666 +5365,1702379145456.0,0.0,0.016666666666666666 +5366,1702379205456.0,0.0,0.016666666666666666 +5367,1702379265456.0,0.0,0.016666666666666666 +5368,1702379325456.0,0.0,0.016666666666666666 +5369,1702379385456.0,0.0,0.016666666666666666 +5370,1702379445456.0,0.0,0.016666666666666666 +5371,1702379505456.0,0.0,0.016666666666666666 +5372,1702379565456.0,0.0,0.016666666666666666 +5373,1702379625456.0,0.0,0.016666666666666666 +5374,1702379685456.0,0.0,0.016666666666666666 +5375,1702379745456.0,0.0,0.016666666666666666 +5376,1702379805456.0,0.0,0.016666666666666666 +5377,1702379865456.0,0.0,0.016666666666666666 +5378,1702379925456.0,0.0,0.016666666666666666 +5379,1702379985456.0,0.0,0.016666666666666666 +5380,1702380045456.0,0.0,0.016666666666666666 +5381,1702380105456.0,0.0,0.016666666666666666 +5382,1702380165456.0,0.0,0.016666666666666666 +5383,1702380225456.0,0.0,0.016666666666666666 +5384,1702380285456.0,0.0,0.016666666666666666 +5385,1702380345456.0,0.0,0.016666666666666666 +5386,1702380405456.0,0.0,0.016666666666666666 +5387,1702380465456.0,0.0,0.016666666666666666 +5388,1702380525456.0,0.0,0.016666666666666666 +5389,1702380585456.0,0.0,0.016666666666666666 +5390,1702380645456.0,0.0,0.016666666666666666 +5391,1702380705456.0,0.0,0.016666666666666666 +5392,1702380765456.0,0.0,0.016666666666666666 +5393,1702380825456.0,0.0,0.016666666666666666 +5394,1702380885456.0,0.0,0.016666666666666666 +5395,1702380945456.0,0.0,0.016666666666666666 +5396,1702381005456.0,0.0,0.016666666666666666 +5397,1702381065456.0,0.0,0.016666666666666666 +5398,1702381125456.0,0.0,0.016666666666666666 +5399,1702381185456.0,0.0,0.016666666666666666 +5400,1702381245456.0,0.0,0.016666666666666666 +5401,1702381305456.0,0.0,0.016666666666666666 +5402,1702381365456.0,0.0,0.016666666666666666 +5403,1702381425456.0,0.0,0.016666666666666666 +5404,1702381485456.0,0.0,0.016666666666666666 +5405,1702381545456.0,0.0,0.016666666666666666 +5406,1702381605456.0,0.0,0.016666666666666666 +5407,1702381665456.0,0.0,0.016666666666666666 +5408,1702381725456.0,0.0,0.016666666666666666 +5409,1702381785456.0,0.0,0.016666666666666666 +5410,1702381845456.0,0.0,0.016666666666666666 +5411,1702381905456.0,0.0,0.016666666666666666 +5412,1702381965456.0,0.0,0.016666666666666666 +5413,1702382025456.0,0.0,0.016666666666666666 +5414,1702382085456.0,0.0,0.016666666666666666 +5415,1702382145456.0,0.0,0.016666666666666666 +5416,1702382205456.0,0.0,0.016666666666666666 +5417,1702382265456.0,0.0,0.016666666666666666 +5418,1702382325456.0,0.0,0.016666666666666666 +5419,1702382385456.0,0.0,0.016666666666666666 +5420,1702382445456.0,0.0,0.016666666666666666 +5421,1702382505456.0,0.0,0.016666666666666666 +5422,1702382565456.0,0.0,0.016666666666666666 +5423,1702382625456.0,0.0,0.016666666666666666 +5424,1702382685456.0,0.0,0.016666666666666666 +5425,1702382745456.0,0.0,0.016666666666666666 +5426,1702382805456.0,0.0,0.016666666666666666 +5427,1702382865456.0,0.0,0.016666666666666666 +5428,1702382925456.0,0.0,0.016666666666666666 +5429,1702382985456.0,0.0,0.016666666666666666 +5430,1702383045456.0,0.0,0.016666666666666666 +5431,1702383105456.0,0.0,0.016666666666666666 +5432,1702383165456.0,0.0,0.016666666666666666 +5433,1702383225456.0,0.0,0.016666666666666666 +5434,1702383285456.0,0.0,0.016666666666666666 +5435,1702383345456.0,0.0,0.016666666666666666 +5436,1702383405456.0,0.0,0.016666666666666666 +5437,1702383465456.0,0.0,0.016666666666666666 +5438,1702383525456.0,0.0,0.016666666666666666 +5439,1702383585456.0,0.0,0.016666666666666666 +5440,1702383645456.0,0.0,0.016666666666666666 +5441,1702383705456.0,0.0,0.016666666666666666 +5442,1702383765456.0,0.0,0.016666666666666666 +5443,1702383825456.0,0.0,0.016666666666666666 +5444,1702383885456.0,0.0,0.016666666666666666 +5445,1702383945456.0,0.0,0.016666666666666666 +5446,1702384005456.0,0.0,0.016666666666666666 +5447,1702384065456.0,0.0,0.016666666666666666 +5448,1702384125456.0,0.0,0.016666666666666666 +5449,1702384185456.0,1.0,0.016666666666666666 +5450,1702384245456.0,1.0,0.016666666666666666 +5451,1702384305456.0,1.0,0.016666666666666666 +5452,1702384365456.0,1.0,0.016666666666666666 +5453,1702384425456.0,1.0,0.016666666666666666 +5454,1702384485456.0,1.0,0.016666666666666666 +5455,1702384545456.0,1.0,0.016666666666666666 +5456,1702384605456.0,1.0,0.016666666666666666 +5457,1702384665456.0,1.0,0.016666666666666666 +5458,1702384725456.0,1.0,0.016666666666666666 +5459,1702384785456.0,1.0,0.016666666666666666 +5460,1702384845456.0,1.0,0.016666666666666666 +5461,1702384905456.0,1.0,0.016666666666666666 +5462,1702384965456.0,1.0,0.016666666666666666 +5463,1702385025456.0,1.0,0.016666666666666666 +5464,1702385085456.0,1.0,0.016666666666666666 +5465,1702385145456.0,1.0,0.016666666666666666 +5466,1702385205456.0,1.0,0.016666666666666666 +5467,1702385265456.0,1.0,0.016666666666666666 +5468,1702385325456.0,1.0,0.016666666666666666 +5469,1702385385456.0,1.0,0.016666666666666666 +5470,1702385445456.0,1.0,0.016666666666666666 +5471,1702385505456.0,1.0,0.016666666666666666 +5472,1702385565456.0,1.0,0.016666666666666666 +5473,1702385625456.0,1.0,0.016666666666666666 +5474,1702385685456.0,1.0,0.016666666666666666 +5475,1702385745456.0,1.0,0.016666666666666666 +5476,1702385805456.0,1.0,0.016666666666666666 +5477,1702385865456.0,1.0,0.016666666666666666 +5478,1702385925456.0,1.0,0.016666666666666666 +5479,1702385985456.0,1.0,0.016666666666666666 +5480,1702386045456.0,1.0,0.016666666666666666 +5481,1702386105456.0,1.0,0.016666666666666666 +5482,1702386165456.0,1.0,0.016666666666666666 +5483,1702386225456.0,1.0,0.016666666666666666 +5484,1702386285456.0,1.0,0.016666666666666666 +5485,1702386345456.0,1.0,0.016666666666666666 +5486,1702386405456.0,1.0,0.016666666666666666 +5487,1702386465456.0,1.0,0.016666666666666666 +5488,1702386525456.0,1.0,0.016666666666666666 +5489,1702386585456.0,1.0,0.016666666666666666 +5490,1702386645456.0,1.0,0.016666666666666666 +5491,1702386705456.0,1.0,0.016666666666666666 +5492,1702386765456.0,1.0,0.016666666666666666 +5493,1702386825456.0,1.0,0.016666666666666666 +5494,1702386885456.0,1.0,0.016666666666666666 +5495,1702386945456.0,1.0,0.016666666666666666 +5496,1702387005456.0,1.0,0.016666666666666666 +5497,1702387065456.0,1.0,0.016666666666666666 +5498,1702387125456.0,1.0,0.016666666666666666 +5499,1702387185456.0,1.0,0.016666666666666666 +5500,1702387245456.0,1.0,0.016666666666666666 +5501,1702387305456.0,1.0,0.016666666666666666 +5502,1702387365456.0,1.0,0.016666666666666666 +5503,1702387425456.0,1.0,0.016666666666666666 +5504,1702387485456.0,1.0,0.016666666666666666 +5505,1702387545456.0,1.0,0.016666666666666666 +5506,1702387605456.0,1.0,0.016666666666666666 +5507,1702387665456.0,1.0,0.016666666666666666 +5508,1702387725456.0,1.0,0.016666666666666666 +5509,1702387785456.0,1.0,0.016666666666666666 +5510,1702387845456.0,1.0,0.016666666666666666 +5511,1702387905456.0,1.0,0.016666666666666666 +5512,1702387965456.0,1.0,0.016666666666666666 +5513,1702388025456.0,1.0,0.016666666666666666 +5514,1702388085456.0,1.0,0.016666666666666666 +5515,1702388145456.0,1.0,0.016666666666666666 +5516,1702388205456.0,1.0,0.016666666666666666 +5517,1702388265456.0,1.0,0.016666666666666666 +5518,1702388325456.0,1.0,0.016666666666666666 +5519,1702388385456.0,1.0,0.016666666666666666 +5520,1702388445456.0,1.0,0.016666666666666666 +5521,1702388505456.0,1.0,0.016666666666666666 +5522,1702388565456.0,1.0,0.016666666666666666 +5523,1702388625456.0,1.0,0.016666666666666666 +5524,1702388685456.0,1.0,0.016666666666666666 +5525,1702388745456.0,1.0,0.016666666666666666 +5526,1702388805456.0,1.0,0.016666666666666666 +5527,1702388865456.0,1.0,0.016666666666666666 +5528,1702388925456.0,1.0,0.016666666666666666 +5529,1702388985456.0,1.0,0.016666666666666666 +5530,1702389045456.0,1.0,0.016666666666666666 +5531,1702389105456.0,1.0,0.016666666666666666 +5532,1702389165456.0,1.0,0.016666666666666666 +5533,1702389225456.0,1.0,0.016666666666666666 +5534,1702389285456.0,1.0,0.016666666666666666 +5535,1702389345456.0,1.0,0.016666666666666666 diff --git a/test/completeness/test_completeness_pipe.py b/test/completeness/test_completeness_pipe.py new file mode 100644 index 00000000..a2dc4944 --- /dev/null +++ b/test/completeness/test_completeness_pipe.py @@ -0,0 +1,63 @@ +import numpy as np + + +# Test input check on real data +def test_1_load_data(data_dic): + + assert list(data_dic.keys()) == ['Subject ID', 'Measurement Streams', 'Wear Indicator'] and \ + 'Time Unix (ms)' in list(data_dic['Wear Indicator'].keys()) and \ + 'Wear Indicator' in list(data_dic['Wear Indicator'].keys()) and \ + 'Sampling Frequency (Hz)' in list(data_dic['Wear Indicator'].keys()) and \ + 'Device ID' in list(data_dic['Wear Indicator'].keys()) and \ + 'Heart Rate' in list(data_dic['Measurement Streams'].keys()) and \ + 'Resp Rate' in list(data_dic['Measurement Streams'].keys()) + +def test_2_wear_data(pipe, data_dic): + measures = ['Resp Rate', 'Heart Rate'] + completeness = pipe.predict(data_dic=data_dic, measures=measures, fpath_output=None) + + assert completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')]['wear time'] == np.timedelta64( + 19268000000000,'ns') and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')]['no-wear time'] == np.timedelta64( + 1980000000, 'us') + +def test_3_resp_rate(pipe, data_dic): + measures = ['Resp Rate', 'Heart Rate'] + completeness = pipe.predict(data_dic=data_dic, measures=measures, fpath_output=None) + + assert completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Resp Rate completeness: 0 (no valid values)'] == 0 + +def test_4_heart_rate_completeness(pipe, data_dic): + measures = ['Resp Rate', 'Heart Rate'] + completeness = pipe.predict(data_dic=data_dic, measures=measures, fpath_output=None) + + assert completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, Completeness, native'] == 0.8295175446790767 and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, Missingness, no_wear, native'] == 0.0765921967398548 and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, Completeness, 1 minutes'] == 0.5835734365722264 + +def test_5_heart_rate_datagaps(pipe, data_dic): + measures = ['Resp Rate', 'Heart Rate'] + completeness = pipe.predict(data_dic=data_dic, measures=measures, fpath_output=None) + + assert completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, data gap 10 minutes, reason: unknown'] == 3 and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, data gap 10 minutes, reason: no_wear'] == 1 and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, data gap 30 minutes, reason: unknown'] == 0 and \ + completeness['Completeness']['df_summary'][ + ('2024-03-01 06:56:41.588999936', '2024-03-01 12:54:49.588999936')][ + 'Heart Rate, data gap 30 minutes, reason: no_wear'] == 1