diff options
Diffstat (limited to 'results')
425 files changed, 0 insertions, 68821 deletions
diff --git a/results/src/experiment1/__init__.py b/results/src/experiment1/__init__.py deleted file mode 100644 index e69de29b..00000000 --- a/results/src/experiment1/__init__.py +++ /dev/null diff --git a/results/src/experiment1/__main__.py b/results/src/experiment1/__main__.py deleted file mode 100644 index 067d97a2..00000000 --- a/results/src/experiment1/__main__.py +++ /dev/null @@ -1,162 +0,0 @@ -import pandas as pd -import time -import csv -import os -from time import gmtime, strftime -import numpy as np -import matplotlib.pyplot as plt - -PATH = "/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/" -CONSTANT = 3_6000_000 / 24 - - -def create_dataframes() -> tuple[pd.DataFrame, pd.DataFrame]: - cwd = os.getcwd() - cwd = cwd + PATH - print(cwd) - hosts: str = "%shost.parquet" % cwd - tasks: str = "%stask.parquet" % cwd - - try: - df_hosts = pd.read_parquet(hosts) - df_tasks = pd.read_parquet(tasks) - return (df_hosts, df_tasks) - - except Exception: - print("Exception: error opening files.") - exit(1) - - -def get_name() -> str: - curr = time.time() - s = strftime("%d_%b_%Y_%H%M%S", gmtime(curr)) - return s - - -def iterate(frame): - dictionary = {} - for i in range(len(frame)): - if frame["downtime"].iloc[i] > 0.0: - ts = frame["timestamp"].iloc[i] - dictionary[(ts)] = dictionary.get((ts), 0) + 1 - return dictionary - - -# This is a running function frequently changed -def plot_hosts(frame: pd.DataFrame): - dictionary = { - 216000000: 277, - 219600000: 277, - 280800000: 139, - 727200000: 139, - 730800000: 139, - 802800000: 162, - 1407600000: 139, - 1850400000: 139, - 1857600000: 277, - 1861200000: 277, - 1872000000: 139, - 1926000000: 62, - 2023200000: 162, - 2037600000: 277, - 2041200000: 208, - 2070000000: 139, - } - - dictionary2 = { - 3600000: 11, - 180000000: 11, - 205200000: 0, - 212400000: 103, - 216000000: 103, - 219600000: 103, - 223200000: 103, - 270000000: 0, - 280800000: 0, - 295200000: 0, - 374400000: 57, - 406800000: 0, - 471600000: 0, - 619200000: 0, - 684000000: 0, - 698400000: 0, - 709200000: 0, - 712800000: 103, - 727200000: 0, - 730800000: 0, - 795600000: 57, - 802800000: 0, - 838800000: 11, - 882000000: 103, - 889200000: 0, - 896400000: 0, - 900000000: 0, - 914400000: 0, - 975600000: 57, - 979200000: 11, - 982800000: 11, - 1087200000: 11, - 1234800000: 11, - 1404000000: 11, - 1854000000: 103, - 1857600000: 103, - 1861200000: 103, - 1926000000: 36, - 2034000000: 103, - 2037600000: 103, - 2041200000: 34, - 2080800000: 11, - 2102400000: 11, - 2163600000: 11, - 2185200000: 57, - 2383200000: 57, - } - - for key in dictionary2.keys(): - dictionary2[key] += 150 - - df = pd.DataFrame(list(dictionary2.items()), columns=["timestamp", "count"]) - df3 = iterate(frame) - print(df3) - df2 = pd.DataFrame(list(df3.items()), columns=["timestamp", "count"]) - - plt.plot( - df2["timestamp"] / CONSTANT, - df2["count"], - label="Actual failures", - linewidth=1, - zorder=2, - ) - plt.plot( - df["timestamp"] / CONSTANT, - df["count"], - label="Detected failures", - linewidth=3, - zorder=1, - ) - plt.xlabel("Time [days]") - plt.ylabel("Failures per timestamp") - plt.title("Failure detection results") - plt.legend() - - path = os.getcwd() + "/src/experiment1/" - location: str = path + "figures/%s.pdf" % get_name() - plt.savefig(location, dpi=300) - total = sum(dictionary.values()) - total2 = sum(df3.values()) - print(f"Percentage detected: {total/total2}") - - -def export_results(path: str): - assert path - # 0 is hosts, 1 is tasks - frames: tuple = create_dataframes() - plot_hosts(frames[0]) - - -def main(): - export_results(PATH) - - -if __name__ == "__main__": - main() diff --git a/results/src/experiment1/__pycache__/__main__.cpython-314.pyc b/results/src/experiment1/__pycache__/__main__.cpython-314.pyc Binary files differdeleted file mode 100644 index 116b434e..00000000 --- a/results/src/experiment1/__pycache__/__main__.cpython-314.pyc +++ /dev/null diff --git a/results/src/experiment1/failures_detected_Gmail_Trace.csv b/results/src/experiment1/failures_detected_Gmail_Trace.csv deleted file mode 100644 index e69de29b..00000000 --- a/results/src/experiment1/failures_detected_Gmail_Trace.csv +++ /dev/null diff --git a/results/src/experiment1/failures_detected_WhatsApp_Trace.csv b/results/src/experiment1/failures_detected_WhatsApp_Trace.csv deleted file mode 100644 index 07b8d36d..00000000 --- a/results/src/experiment1/failures_detected_WhatsApp_Trace.csv +++ /dev/null @@ -1,18 +0,0 @@ -timestamp, failures_detected -3600000,277 -14400000,277 -25200000,117 -28800000,119 -360000000,162 -597600000,139 -1544400000,139 -1558800000,139 -1562400000,277 -1566000000,277 -1663200000,162 -2066400000,185 -2206800000,162 -2235600000,139 -2422800000,185 -2592000000,111 - diff --git a/results/src/experiment1/figures/23_Jun_2026_123212.pdf b/results/src/experiment1/figures/23_Jun_2026_123212.pdf Binary files differdeleted file mode 100644 index a91b91b2..00000000 --- a/results/src/experiment1/figures/23_Jun_2026_123212.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/23_Jun_2026_134333.pdf b/results/src/experiment1/figures/23_Jun_2026_134333.pdf Binary files differdeleted file mode 100644 index 1d7037bb..00000000 --- a/results/src/experiment1/figures/23_Jun_2026_134333.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/23_Jun_2026_134659.pdf b/results/src/experiment1/figures/23_Jun_2026_134659.pdf Binary files differdeleted file mode 100644 index 93bdd187..00000000 --- a/results/src/experiment1/figures/23_Jun_2026_134659.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/25_Jun_2026_193021.pdf b/results/src/experiment1/figures/25_Jun_2026_193021.pdf Binary files differdeleted file mode 100644 index 93b75be2..00000000 --- a/results/src/experiment1/figures/25_Jun_2026_193021.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/25_Jun_2026_193202.pdf b/results/src/experiment1/figures/25_Jun_2026_193202.pdf Binary files differdeleted file mode 100644 index 388e3038..00000000 --- a/results/src/experiment1/figures/25_Jun_2026_193202.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/whatsapp/23_Jun_2026_120759.pdf b/results/src/experiment1/figures/whatsapp/23_Jun_2026_120759.pdf Binary files differdeleted file mode 100644 index 816150cd..00000000 --- a/results/src/experiment1/figures/whatsapp/23_Jun_2026_120759.pdf +++ /dev/null diff --git a/results/src/experiment1/figures/whatsapp/23_Jun_2026_121329.pdf b/results/src/experiment1/figures/whatsapp/23_Jun_2026_121329.pdf Binary files differdeleted file mode 100644 index bd17b16c..00000000 --- a/results/src/experiment1/figures/whatsapp/23_Jun_2026_121329.pdf +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet b/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet b/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet Binary files differdeleted file mode 100644 index ae92562a..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet b/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet Binary files differdeleted file mode 100644 index 6dcb9899..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet b/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet Binary files differdeleted file mode 100644 index f8f14c62..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet b/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet Binary files differdeleted file mode 100644 index bee8c1b9..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet +++ /dev/null diff --git a/results/src/experiment1/output/gmail/greenifier-demo-scaling/trackr.json b/results/src/experiment1/output/gmail/greenifier-demo-scaling/trackr.json deleted file mode 100644 index 1b0d5fdd..00000000 --- a/results/src/experiment1/output/gmail/greenifier-demo-scaling/trackr.json +++ /dev/null @@ -1,24 +0,0 @@ -[{ - "name": "greenifier-demo-scaling", - "topology": { - "pathToFile": "resources/topologies/surf.json" - }, - "workload": { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - }, - "exportModel": { - "exportInterval": 3600, - "filesToExportDict": { - "host": true, - "task": true, - "powerSource": true, - "battery": true, - "service": true - } - }, - "failureModel": { - "type": "trace-based", - "pathToFile": "resources/failures/Gmail_user_reported.parquet" - } -}]
\ No newline at end of file diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet +++ /dev/null diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet Binary files differdeleted file mode 100644 index 59db3098..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet +++ /dev/null diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet Binary files differdeleted file mode 100644 index d5592766..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet Binary files differdeleted file mode 100644 index 741230bd..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet +++ /dev/null diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet Binary files differdeleted file mode 100644 index f3d1c746..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet +++ /dev/null diff --git a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/trackr.json b/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/trackr.json deleted file mode 100644 index 7c25f31d..00000000 --- a/results/src/experiment1/output/whatsapp/greenifier-demo-scaling/trackr.json +++ /dev/null @@ -1,24 +0,0 @@ -[{ - "name": "greenifier-demo-scaling", - "topology": { - "pathToFile": "resources/topologies/surf.json" - }, - "workload": { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - }, - "exportModel": { - "exportInterval": 3600, - "filesToExportDict": { - "host": true, - "task": true, - "powerSource": true, - "battery": true, - "service": true - } - }, - "failureModel": { - "type": "trace-based", - "pathToFile": "resources/failures/Whatsapp_user_reported.parquet" - } -}]
\ No newline at end of file diff --git a/results/src/experiment1/output/whatsapp/readme.txt b/results/src/experiment1/output/whatsapp/readme.txt deleted file mode 100644 index ea55d90c..00000000 --- a/results/src/experiment1/output/whatsapp/readme.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is the output of a raw OpenDC simulation running with the WhatsApp failure trace. -From this we get the failures that have occurred. diff --git a/results/src/experiment1/resources/carbon_traces/AT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AT_2021-2024.parquet Binary files differdeleted file mode 100755 index 851daf26..00000000 --- a/results/src/experiment1/resources/carbon_traces/AT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-NSW_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-NSW_2021-2024.parquet Binary files differdeleted file mode 100755 index 5d3a5edb..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-NSW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-NT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-NT_2021-2024.parquet Binary files differdeleted file mode 100755 index 0735e883..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-NT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-QLD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-QLD_2021-2024.parquet Binary files differdeleted file mode 100755 index a97ef1ff..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-QLD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-SA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-SA_2021-2024.parquet Binary files differdeleted file mode 100755 index bf3c1571..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-SA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-TAS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-TAS_2021-2024.parquet Binary files differdeleted file mode 100755 index a764901b..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-TAS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-VIC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-VIC_2021-2024.parquet Binary files differdeleted file mode 100755 index f4ac4718..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-VIC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU-WA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU-WA_2021-2024.parquet Binary files differdeleted file mode 100755 index 1f010f5c..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU-WA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/AU_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/AU_2021-2024.parquet Binary files differdeleted file mode 100755 index e37a55f6..00000000 --- a/results/src/experiment1/resources/carbon_traces/AU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BA_2021-2024.parquet Binary files differdeleted file mode 100755 index ef91a677..00000000 --- a/results/src/experiment1/resources/carbon_traces/BA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3bea5e2e..00000000 --- a/results/src/experiment1/resources/carbon_traces/BE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BG_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BG_2021-2024.parquet Binary files differdeleted file mode 100755 index b3df0b74..00000000 --- a/results/src/experiment1/resources/carbon_traces/BG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BR-CS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BR-CS_2021-2024.parquet Binary files differdeleted file mode 100755 index 0e93b8d7..00000000 --- a/results/src/experiment1/resources/carbon_traces/BR-CS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BR-NE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BR-NE_2021-2024.parquet Binary files differdeleted file mode 100755 index afd0095f..00000000 --- a/results/src/experiment1/resources/carbon_traces/BR-NE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BR-N_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BR-N_2021-2024.parquet Binary files differdeleted file mode 100755 index c655c25c..00000000 --- a/results/src/experiment1/resources/carbon_traces/BR-N_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BR-S_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BR-S_2021-2024.parquet Binary files differdeleted file mode 100755 index 5276dd68..00000000 --- a/results/src/experiment1/resources/carbon_traces/BR-S_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/BR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/BR_2021-2024.parquet Binary files differdeleted file mode 100755 index d04a26cb..00000000 --- a/results/src/experiment1/resources/carbon_traces/BR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CA-ON_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CA-ON_2021-2024.parquet Binary files differdeleted file mode 100755 index 195cffd6..00000000 --- a/results/src/experiment1/resources/carbon_traces/CA-ON_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CA-QC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CA-QC_2021-2024.parquet Binary files differdeleted file mode 100755 index 0dc8964e..00000000 --- a/results/src/experiment1/resources/carbon_traces/CA-QC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CH_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CH_2021-2024.parquet Binary files differdeleted file mode 100755 index 73726625..00000000 --- a/results/src/experiment1/resources/carbon_traces/CH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CL-SEN_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CL-SEN_2021-2024.parquet Binary files differdeleted file mode 100755 index 269c77fe..00000000 --- a/results/src/experiment1/resources/carbon_traces/CL-SEN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CR_2021-2024.parquet Binary files differdeleted file mode 100755 index d55de147..00000000 --- a/results/src/experiment1/resources/carbon_traces/CR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CY_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CY_2021-2024.parquet Binary files differdeleted file mode 100755 index acec57a1..00000000 --- a/results/src/experiment1/resources/carbon_traces/CY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/CZ_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/CZ_2021-2024.parquet Binary files differdeleted file mode 100755 index 2a7fb055..00000000 --- a/results/src/experiment1/resources/carbon_traces/CZ_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/DE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/DE_2021-2024.parquet Binary files differdeleted file mode 100755 index 73842c1b..00000000 --- a/results/src/experiment1/resources/carbon_traces/DE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/DK-BHM_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/DK-BHM_2021-2024.parquet Binary files differdeleted file mode 100755 index a2bc8de4..00000000 --- a/results/src/experiment1/resources/carbon_traces/DK-BHM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/DK-DK1_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/DK-DK1_2021-2024.parquet Binary files differdeleted file mode 100755 index cc0ab7d2..00000000 --- a/results/src/experiment1/resources/carbon_traces/DK-DK1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/DK-DK2_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/DK-DK2_2021-2024.parquet Binary files differdeleted file mode 100755 index f0350c22..00000000 --- a/results/src/experiment1/resources/carbon_traces/DK-DK2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/DK_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/DK_2021-2024.parquet Binary files differdeleted file mode 100755 index c02bf36c..00000000 --- a/results/src/experiment1/resources/carbon_traces/DK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/EE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/EE_2021-2024.parquet Binary files differdeleted file mode 100755 index bb0f00f4..00000000 --- a/results/src/experiment1/resources/carbon_traces/EE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/ES_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/ES_2021-2024.parquet Binary files differdeleted file mode 100755 index fe200a0e..00000000 --- a/results/src/experiment1/resources/carbon_traces/ES_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/FI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/FI_2021-2024.parquet Binary files differdeleted file mode 100755 index 6f9076a5..00000000 --- a/results/src/experiment1/resources/carbon_traces/FI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/FR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/FR_2021-2024.parquet Binary files differdeleted file mode 100755 index b8844200..00000000 --- a/results/src/experiment1/resources/carbon_traces/FR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/GB-NIR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/GB-NIR_2021-2024.parquet Binary files differdeleted file mode 100755 index 9c823df4..00000000 --- a/results/src/experiment1/resources/carbon_traces/GB-NIR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/GB_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/GB_2021-2024.parquet Binary files differdeleted file mode 100755 index 7c9f3006..00000000 --- a/results/src/experiment1/resources/carbon_traces/GB_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/GR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/GR_2021-2024.parquet Binary files differdeleted file mode 100755 index f4d2218c..00000000 --- a/results/src/experiment1/resources/carbon_traces/GR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/HK_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/HK_2021-2024.parquet Binary files differdeleted file mode 100755 index f0345b23..00000000 --- a/results/src/experiment1/resources/carbon_traces/HK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/HR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/HR_2021-2024.parquet Binary files differdeleted file mode 100755 index 6d228273..00000000 --- a/results/src/experiment1/resources/carbon_traces/HR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/HU_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/HU_2021-2024.parquet Binary files differdeleted file mode 100755 index 9e2a8c1f..00000000 --- a/results/src/experiment1/resources/carbon_traces/HU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IE_2021-2024.parquet Binary files differdeleted file mode 100755 index 0ec84467..00000000 --- a/results/src/experiment1/resources/carbon_traces/IE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IL_2021-2024.parquet Binary files differdeleted file mode 100755 index 44d43e59..00000000 --- a/results/src/experiment1/resources/carbon_traces/IL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN-EA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN-EA_2021-2024.parquet Binary files differdeleted file mode 100755 index f119615b..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN-EA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN-NE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN-NE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3d9ab8c3..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN-NE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN-NO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN-NO_2021-2024.parquet Binary files differdeleted file mode 100755 index 9b7180b2..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN-NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN-SO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN-SO_2021-2024.parquet Binary files differdeleted file mode 100755 index 8db2b457..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN-SO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN-WE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN-WE_2021-2024.parquet Binary files differdeleted file mode 100755 index d0b95e79..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN-WE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IN_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IN_2021-2024.parquet Binary files differdeleted file mode 100755 index 9c112b30..00000000 --- a/results/src/experiment1/resources/carbon_traces/IN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IS_2021-2024.parquet Binary files differdeleted file mode 100755 index cfb8c9b5..00000000 --- a/results/src/experiment1/resources/carbon_traces/IS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-CNO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-CNO_2021-2024.parquet Binary files differdeleted file mode 100755 index 2be79a74..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-CNO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-CSO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-CSO_2021-2024.parquet Binary files differdeleted file mode 100755 index 1c6fce62..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-CSO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-NO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-NO_2021-2024.parquet Binary files differdeleted file mode 100755 index b4d29339..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-SAR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-SAR_2021-2024.parquet Binary files differdeleted file mode 100755 index 8f031ab4..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-SAR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-SIC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-SIC_2021-2024.parquet Binary files differdeleted file mode 100755 index 7ec9947d..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-SIC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT-SO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT-SO_2021-2024.parquet Binary files differdeleted file mode 100755 index cd62ce13..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT-SO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/IT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/IT_2021-2024.parquet Binary files differdeleted file mode 100755 index 7b1693a6..00000000 --- a/results/src/experiment1/resources/carbon_traces/IT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-CB_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-CB_2021-2024.parquet Binary files differdeleted file mode 100755 index 04578402..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-CB_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-CG_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-CG_2021-2024.parquet Binary files differdeleted file mode 100755 index ea1a8349..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-CG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-HKD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-HKD_2021-2024.parquet Binary files differdeleted file mode 100755 index 8aabf693..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-HKD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-HR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-HR_2021-2024.parquet Binary files differdeleted file mode 100755 index b8d67f66..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-HR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-KN_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-KN_2021-2024.parquet Binary files differdeleted file mode 100755 index c14b870e..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-KN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-KY_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-KY_2021-2024.parquet Binary files differdeleted file mode 100755 index 6b7d9d06..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-KY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-ON_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-ON_2021-2024.parquet Binary files differdeleted file mode 100755 index c4415d64..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-ON_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-TH_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-TH_2021-2024.parquet Binary files differdeleted file mode 100755 index 23b1bd96..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-TH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP-TK_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP-TK_2021-2024.parquet Binary files differdeleted file mode 100755 index 83cc1284..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP-TK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/JP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/JP_2021-2024.parquet Binary files differdeleted file mode 100755 index 2c0745f4..00000000 --- a/results/src/experiment1/resources/carbon_traces/JP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/KE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/KE_2021-2024.parquet Binary files differdeleted file mode 100755 index c9178134..00000000 --- a/results/src/experiment1/resources/carbon_traces/KE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/KR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/KR_2021-2024.parquet Binary files differdeleted file mode 100755 index 52f7cde1..00000000 --- a/results/src/experiment1/resources/carbon_traces/KR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/LT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/LT_2021-2024.parquet Binary files differdeleted file mode 100755 index adbd42d6..00000000 --- a/results/src/experiment1/resources/carbon_traces/LT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/LU_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/LU_2021-2024.parquet Binary files differdeleted file mode 100755 index 5df1873b..00000000 --- a/results/src/experiment1/resources/carbon_traces/LU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/LV_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/LV_2021-2024.parquet Binary files differdeleted file mode 100755 index e17b0562..00000000 --- a/results/src/experiment1/resources/carbon_traces/LV_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/MY-WM_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/MY-WM_2021-2024.parquet Binary files differdeleted file mode 100755 index ddde287a..00000000 --- a/results/src/experiment1/resources/carbon_traces/MY-WM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/MY_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/MY_2021-2024.parquet Binary files differdeleted file mode 100755 index d7caa5ed..00000000 --- a/results/src/experiment1/resources/carbon_traces/MY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NI_2021-2024.parquet Binary files differdeleted file mode 100755 index 3014bb7c..00000000 --- a/results/src/experiment1/resources/carbon_traces/NI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NL_2021-2024.parquet Binary files differdeleted file mode 100755 index ec850b42..00000000 --- a/results/src/experiment1/resources/carbon_traces/NL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO-NO1_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO-NO1_2021-2024.parquet Binary files differdeleted file mode 100755 index ea6b801c..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO-NO1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO-NO2_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO-NO2_2021-2024.parquet Binary files differdeleted file mode 100755 index 030a6994..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO-NO2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO-NO3_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO-NO3_2021-2024.parquet Binary files differdeleted file mode 100755 index 1daf3228..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO-NO3_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO-NO4_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO-NO4_2021-2024.parquet Binary files differdeleted file mode 100755 index bd034d6e..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO-NO4_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO-NO5_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO-NO5_2021-2024.parquet Binary files differdeleted file mode 100755 index 45335711..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO-NO5_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NO_2021-2024.parquet Binary files differdeleted file mode 100755 index 2854edcf..00000000 --- a/results/src/experiment1/resources/carbon_traces/NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/NZ_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/NZ_2021-2024.parquet Binary files differdeleted file mode 100755 index 737ddbb9..00000000 --- a/results/src/experiment1/resources/carbon_traces/NZ_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PA_2021-2024.parquet Binary files differdeleted file mode 100755 index edcaef84..00000000 --- a/results/src/experiment1/resources/carbon_traces/PA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PE_2021-2024.parquet Binary files differdeleted file mode 100755 index 5095e639..00000000 --- a/results/src/experiment1/resources/carbon_traces/PE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PH-LU_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PH-LU_2021-2024.parquet Binary files differdeleted file mode 100755 index 364dd902..00000000 --- a/results/src/experiment1/resources/carbon_traces/PH-LU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PH-MI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PH-MI_2021-2024.parquet Binary files differdeleted file mode 100755 index c7422e30..00000000 --- a/results/src/experiment1/resources/carbon_traces/PH-MI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PH-VI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PH-VI_2021-2024.parquet Binary files differdeleted file mode 100755 index de81e23d..00000000 --- a/results/src/experiment1/resources/carbon_traces/PH-VI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PH_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PH_2021-2024.parquet Binary files differdeleted file mode 100755 index 1af44aa9..00000000 --- a/results/src/experiment1/resources/carbon_traces/PH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PL_2021-2024.parquet Binary files differdeleted file mode 100755 index c882cd42..00000000 --- a/results/src/experiment1/resources/carbon_traces/PL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/PT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/PT_2021-2024.parquet Binary files differdeleted file mode 100755 index d4cc920a..00000000 --- a/results/src/experiment1/resources/carbon_traces/PT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/RO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/RO_2021-2024.parquet Binary files differdeleted file mode 100755 index c43432ac..00000000 --- a/results/src/experiment1/resources/carbon_traces/RO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/RS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/RS_2021-2024.parquet Binary files differdeleted file mode 100755 index f45a36fb..00000000 --- a/results/src/experiment1/resources/carbon_traces/RS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SE-SE1_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SE-SE1_2021-2024.parquet Binary files differdeleted file mode 100755 index d774ad74..00000000 --- a/results/src/experiment1/resources/carbon_traces/SE-SE1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SE-SE2_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SE-SE2_2021-2024.parquet Binary files differdeleted file mode 100755 index 130a11aa..00000000 --- a/results/src/experiment1/resources/carbon_traces/SE-SE2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SE-SE3_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SE-SE3_2021-2024.parquet Binary files differdeleted file mode 100755 index 22133104..00000000 --- a/results/src/experiment1/resources/carbon_traces/SE-SE3_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SE-SE4_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SE-SE4_2021-2024.parquet Binary files differdeleted file mode 100755 index 65b3ac0d..00000000 --- a/results/src/experiment1/resources/carbon_traces/SE-SE4_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SE_2021-2024.parquet Binary files differdeleted file mode 100755 index a0971942..00000000 --- a/results/src/experiment1/resources/carbon_traces/SE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SG_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SG_2021-2024.parquet Binary files differdeleted file mode 100755 index af13ec28..00000000 --- a/results/src/experiment1/resources/carbon_traces/SG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SI_2021-2024.parquet Binary files differdeleted file mode 100755 index 5e708e55..00000000 --- a/results/src/experiment1/resources/carbon_traces/SI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/SK_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/SK_2021-2024.parquet Binary files differdeleted file mode 100755 index b58d2e20..00000000 --- a/results/src/experiment1/resources/carbon_traces/SK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/TR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/TR_2021-2024.parquet Binary files differdeleted file mode 100755 index 06442ebb..00000000 --- a/results/src/experiment1/resources/carbon_traces/TR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/TW_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/TW_2021-2024.parquet Binary files differdeleted file mode 100755 index cc9c76a7..00000000 --- a/results/src/experiment1/resources/carbon_traces/TW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet Binary files differdeleted file mode 100755 index 1b013b7f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet Binary files differdeleted file mode 100755 index c6f6cfbf..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAL-IID_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAL-IID_2021-2024.parquet Binary files differdeleted file mode 100755 index 882679c5..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAL-IID_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet Binary files differdeleted file mode 100755 index 8dea07fd..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet Binary files differdeleted file mode 100755 index f3a29cfd..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet Binary files differdeleted file mode 100755 index e736ed36..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet Binary files differdeleted file mode 100755 index e83ce83b..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet Binary files differdeleted file mode 100755 index 2dce0a7f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet Binary files differdeleted file mode 100755 index 8d7c778b..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-SC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-SC_2021-2024.parquet Binary files differdeleted file mode 100755 index 45acee23..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-SC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet Binary files differdeleted file mode 100755 index 6baeea5f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet Binary files differdeleted file mode 100755 index 5631ecb6..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet Binary files differdeleted file mode 100755 index d98045ce..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet Binary files differdeleted file mode 100755 index f7c95927..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet Binary files differdeleted file mode 100755 index cd219258..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet Binary files differdeleted file mode 100755 index da60e96f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet Binary files differdeleted file mode 100755 index 04f5e3dd..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet Binary files differdeleted file mode 100755 index 6041e25f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet Binary files differdeleted file mode 100755 index 57a36fdf..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet Binary files differdeleted file mode 100755 index e14e442c..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet Binary files differdeleted file mode 100755 index d37bafe3..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet Binary files differdeleted file mode 100755 index 12a45663..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet Binary files differdeleted file mode 100755 index 90601c9a..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet Binary files differdeleted file mode 100755 index 8132ea5c..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet Binary files differdeleted file mode 100755 index d9a692fb..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet Binary files differdeleted file mode 100755 index 0af0a416..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-AVA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-AVA_2021-2024.parquet Binary files differdeleted file mode 100755 index a21660a6..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-AVA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet Binary files differdeleted file mode 100755 index d50cb81b..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet Binary files differdeleted file mode 100755 index 09e27e64..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet Binary files differdeleted file mode 100755 index 4bf39503..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet Binary files differdeleted file mode 100755 index fb16a600..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-GRID_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-GRID_2021-2024.parquet Binary files differdeleted file mode 100755 index 12b1fa79..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-GRID_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet Binary files differdeleted file mode 100755 index 3490db8d..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet Binary files differdeleted file mode 100755 index 285ce5e9..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet Binary files differdeleted file mode 100755 index b133101c..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-PACE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-PACE_2021-2024.parquet Binary files differdeleted file mode 100755 index 92dbdb65..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-PACE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-PACW_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-PACW_2021-2024.parquet Binary files differdeleted file mode 100755 index b1301fb3..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-PACW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-PGE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-PGE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3db3bfd0..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-PGE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet Binary files differdeleted file mode 100755 index b9e42b75..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet Binary files differdeleted file mode 100755 index 9728b7e0..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-SCL_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-SCL_2021-2024.parquet Binary files differdeleted file mode 100755 index 4bd7f72a..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-SCL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet Binary files differdeleted file mode 100755 index c060d86f..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-WACM_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-WACM_2021-2024.parquet Binary files differdeleted file mode 100755 index 92997aef..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-WACM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet Binary files differdeleted file mode 100755 index a5ba5772..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet Binary files differdeleted file mode 100755 index aaa3a017..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet Binary files differdeleted file mode 100755 index f13f0bb2..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet Binary files differdeleted file mode 100755 index c840a731..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-EPE_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-EPE_2021-2024.parquet Binary files differdeleted file mode 100755 index 589de119..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-EPE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-PNM_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-PNM_2021-2024.parquet Binary files differdeleted file mode 100755 index 9db43b6a..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-PNM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-SRP_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-SRP_2021-2024.parquet Binary files differdeleted file mode 100755 index 8b14a7a0..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-SRP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet Binary files differdeleted file mode 100755 index 946c75f1..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-SW-WALC_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-SW-WALC_2021-2024.parquet Binary files differdeleted file mode 100755 index 8f6f619c..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-SW-WALC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet Binary files differdeleted file mode 100755 index 736797ed..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet Binary files differdeleted file mode 100755 index 65e8f6a2..00000000 --- a/results/src/experiment1/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/US_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/US_2021-2024.parquet Binary files differdeleted file mode 100755 index b5e438e6..00000000 --- a/results/src/experiment1/resources/carbon_traces/US_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/UY_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/UY_2021-2024.parquet Binary files differdeleted file mode 100755 index dcde97f3..00000000 --- a/results/src/experiment1/resources/carbon_traces/UY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/carbon_traces/ZA_2021-2024.parquet b/results/src/experiment1/resources/carbon_traces/ZA_2021-2024.parquet Binary files differdeleted file mode 100755 index d70dd76a..00000000 --- a/results/src/experiment1/resources/carbon_traces/ZA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/experiments/experiment_scaling.json b/results/src/experiment1/resources/experiments/experiment_scaling.json deleted file mode 100644 index 8085f1e3..00000000 --- a/results/src/experiment1/resources/experiments/experiment_scaling.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "greenifier-demo-scaling", - "topologies": [ - { - "pathToFile": "resources/topologies/surf.json" - } - ], - "workloads": [ - { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - } - ], - "failureModels" : [ - { - "type": "trace-based", - "pathToFile" : "resources/failures/Whatsapp_user_reported.parquet" - } - ], - "exportModels": [ - { - "exportInterval": 3600 - } - ] -} diff --git a/results/src/experiment1/resources/failures/Gmail_user_reported.parquet b/results/src/experiment1/resources/failures/Gmail_user_reported.parquet Binary files differdeleted file mode 100755 index db039fd1..00000000 --- a/results/src/experiment1/resources/failures/Gmail_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/failures/Skype_user_reported.parquet b/results/src/experiment1/resources/failures/Skype_user_reported.parquet Binary files differdeleted file mode 100755 index 316706c7..00000000 --- a/results/src/experiment1/resources/failures/Skype_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/failures/Whatsapp_user_reported.parquet b/results/src/experiment1/resources/failures/Whatsapp_user_reported.parquet Binary files differdeleted file mode 100755 index 0e954d70..00000000 --- a/results/src/experiment1/resources/failures/Whatsapp_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/battery.parquet b/results/src/experiment1/resources/threshold/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment1/resources/threshold/battery.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/failures_models_used.png b/results/src/experiment1/resources/threshold/failures_models_used.png Binary files differdeleted file mode 100644 index 3d76856d..00000000 --- a/results/src/experiment1/resources/threshold/failures_models_used.png +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/host.parquet b/results/src/experiment1/resources/threshold/host.parquet Binary files differdeleted file mode 100644 index a99f3967..00000000 --- a/results/src/experiment1/resources/threshold/host.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/powerSource.parquet b/results/src/experiment1/resources/threshold/powerSource.parquet Binary files differdeleted file mode 100644 index aa5e56c0..00000000 --- a/results/src/experiment1/resources/threshold/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/readme.txt b/results/src/experiment1/resources/threshold/readme.txt deleted file mode 100644 index 0365dd65..00000000 --- a/results/src/experiment1/resources/threshold/readme.txt +++ /dev/null @@ -1,3 +0,0 @@ -This is the result of a raw simulation with the failureModels set to some statistical distribution in OpenDC. -Based on the downtime in the `host.parquet` file, we calculate the threshold. -In `failureModelsUsed.png` are the distributions we used. diff --git a/results/src/experiment1/resources/threshold/service.parquet b/results/src/experiment1/resources/threshold/service.parquet Binary files differdeleted file mode 100644 index 694f1271..00000000 --- a/results/src/experiment1/resources/threshold/service.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/threshold/task.parquet b/results/src/experiment1/resources/threshold/task.parquet Binary files differdeleted file mode 100644 index fda77c58..00000000 --- a/results/src/experiment1/resources/threshold/task.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/topologies/surf.json b/results/src/experiment1/resources/topologies/surf.json deleted file mode 100644 index ae438dac..00000000 --- a/results/src/experiment1/resources/topologies/surf.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 277 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment1/resources/topologies/surf_medium.json b/results/src/experiment1/resources/topologies/surf_medium.json deleted file mode 100644 index 6afc2475..00000000 --- a/results/src/experiment1/resources/topologies/surf_medium.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 200 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment1/resources/topologies/surf_small.json b/results/src/experiment1/resources/topologies/surf_small.json deleted file mode 100644 index 8c3d8ce3..00000000 --- a/results/src/experiment1/resources/topologies/surf_small.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 100 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment1/resources/workloads/bitbrains-small/fragments.parquet b/results/src/experiment1/resources/workloads/bitbrains-small/fragments.parquet Binary files differdeleted file mode 100644 index ac0a596b..00000000 --- a/results/src/experiment1/resources/workloads/bitbrains-small/fragments.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/workloads/bitbrains-small/tasks.parquet b/results/src/experiment1/resources/workloads/bitbrains-small/tasks.parquet Binary files differdeleted file mode 100644 index 4ce9dcfe..00000000 --- a/results/src/experiment1/resources/workloads/bitbrains-small/tasks.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/workloads/surf_month/fragments.parquet b/results/src/experiment1/resources/workloads/surf_month/fragments.parquet Binary files differdeleted file mode 100644 index 9c502001..00000000 --- a/results/src/experiment1/resources/workloads/surf_month/fragments.parquet +++ /dev/null diff --git a/results/src/experiment1/resources/workloads/surf_month/tasks.parquet b/results/src/experiment1/resources/workloads/surf_month/tasks.parquet Binary files differdeleted file mode 100644 index 43315a5e..00000000 --- a/results/src/experiment1/resources/workloads/surf_month/tasks.parquet +++ /dev/null diff --git a/results/src/experiment2/__init__.py b/results/src/experiment2/__init__.py deleted file mode 100644 index e69de29b..00000000 --- a/results/src/experiment2/__init__.py +++ /dev/null diff --git a/results/src/experiment2/__main__.py b/results/src/experiment2/__main__.py deleted file mode 100644 index a2ac22a7..00000000 --- a/results/src/experiment2/__main__.py +++ /dev/null @@ -1,133 +0,0 @@ -import pandas as pd -import time -import csv -import os -from time import gmtime, strftime -import numpy as np -import matplotlib.pyplot as plt - -CONSTANT = 3_6000_000 / 24 - - -def get_name() -> str: - - curr = time.time() - s = strftime("%d_%b_%Y_%H%M%S", gmtime(curr)) - return s - - -def main(): - dictionary_alert = { - "3600000": 11, - "180000000": 11, - "212400000": 103, - "216000000": 103, - "219600000": 103, - "223200000": 103, - "374400000": 57, - "712800000": 103, - "795600000": 57, - "838800000": 11, - "882000000": 103, - "975600000": 57, - "979200000": 11, - "982800000": 11, - "1087200000": 11, - "1234800000": 11, - "1404000000": 11, - "1854000000": 103, - "1857600000": 103, - "1861200000": 103, - "1926000000": 36, - "2034000000": 103, - "2037600000": 103, - "2041200000": 34, - "2080800000": 11, - "2102400000": 11, - "2163600000": 11, - "2185200000": 57, - "2383200000": 57, - } - - dictionary_red = { - 212400000: 70, - 216000000: 70, - 219600000: 70, - 223200000: 70, - 374400000: 24, - 712800000: 70, - 795600000: 24, - 882000000: 70, - 975600000: 24, - 1854000000: 70, - 1857600000: 70, - 1861200000: 70, - 1926000000: 7, - 2034000000: 70, - 2037600000: 70, - 2041200000: 1, - 2185200000: 24, - 2383200000: 23, - } - - dictionary_yellow = { - 3600000: 11, - 180000000: 11, - 212400000: 33, - 216000000: 33, - 219600000: 33, - 223200000: 33, - 374400000: 33, - 712800000: 33, - 795600000: 33, - 838800000: 11, - 882000000: 33, - 975600000: 33, - 979200000: 11, - 982800000: 11, - 1087200000: 11, - 1234800000: 11, - 1404000000: 11, - 1854000000: 33, - 1857600000: 33, - 1861200000: 33, - 1926000000: 33, - 2034000000: 33, - 2037600000: 33, - 2041200000: 33, - 2080800000: 11, - 2102400000: 11, - 2163600000: 11, - 2185200000: 33, - 2383200000: 33, - } - - df = pd.DataFrame(list(dictionary_red.items()), columns=["timestamp", "count"]) - df2 = pd.DataFrame(list(dictionary_yellow.items()), columns=["timestamp", "count"]) - - plt.plot( - df["timestamp"] / CONSTANT, - df["count"], - label="Red alerts", - linewidth=1, - zorder=2, - ) - plt.plot( - df2["timestamp"] / CONSTANT, - df2["count"], - label="Yellow alerts", - linewidth=3, - zorder=1, - ) - plt.xlabel("Time [days]") - plt.ylabel("Alerts issued") - plt.title("Failure detection results") - plt.legend() - - path = os.getcwd() + "/src/experiment2/" - location: str = path + "figures/%s.pdf" % get_name() - plt.savefig(location, dpi=300) - - -if __name__ == "__main__": - main() diff --git a/results/src/experiment2/__pycache__/__main__.cpython-314.pyc b/results/src/experiment2/__pycache__/__main__.cpython-314.pyc Binary files differdeleted file mode 100644 index 0116a680..00000000 --- a/results/src/experiment2/__pycache__/__main__.cpython-314.pyc +++ /dev/null diff --git a/results/src/experiment2/failures_detected_Gmail_Trace.csv b/results/src/experiment2/failures_detected_Gmail_Trace.csv deleted file mode 100644 index e69de29b..00000000 --- a/results/src/experiment2/failures_detected_Gmail_Trace.csv +++ /dev/null diff --git a/results/src/experiment2/failures_detected_WhatsApp_Trace.csv b/results/src/experiment2/failures_detected_WhatsApp_Trace.csv deleted file mode 100644 index 07b8d36d..00000000 --- a/results/src/experiment2/failures_detected_WhatsApp_Trace.csv +++ /dev/null @@ -1,18 +0,0 @@ -timestamp, failures_detected -3600000,277 -14400000,277 -25200000,117 -28800000,119 -360000000,162 -597600000,139 -1544400000,139 -1558800000,139 -1562400000,277 -1566000000,277 -1663200000,162 -2066400000,185 -2206800000,162 -2235600000,139 -2422800000,185 -2592000000,111 - diff --git a/results/src/experiment2/figures/23_Jun_2026_123212.pdf b/results/src/experiment2/figures/23_Jun_2026_123212.pdf Binary files differdeleted file mode 100644 index a91b91b2..00000000 --- a/results/src/experiment2/figures/23_Jun_2026_123212.pdf +++ /dev/null diff --git a/results/src/experiment2/figures/23_Jun_2026_134333.pdf b/results/src/experiment2/figures/23_Jun_2026_134333.pdf Binary files differdeleted file mode 100644 index 1d7037bb..00000000 --- a/results/src/experiment2/figures/23_Jun_2026_134333.pdf +++ /dev/null diff --git a/results/src/experiment2/figures/23_Jun_2026_134659.pdf b/results/src/experiment2/figures/23_Jun_2026_134659.pdf Binary files differdeleted file mode 100644 index 93bdd187..00000000 --- a/results/src/experiment2/figures/23_Jun_2026_134659.pdf +++ /dev/null diff --git a/results/src/experiment2/figures/23_Jun_2026_140610.pdf b/results/src/experiment2/figures/23_Jun_2026_140610.pdf Binary files differdeleted file mode 100644 index b1b79c92..00000000 --- a/results/src/experiment2/figures/23_Jun_2026_140610.pdf +++ /dev/null diff --git a/results/src/experiment2/figures/whatsapp/23_Jun_2026_120759.pdf b/results/src/experiment2/figures/whatsapp/23_Jun_2026_120759.pdf Binary files differdeleted file mode 100644 index 816150cd..00000000 --- a/results/src/experiment2/figures/whatsapp/23_Jun_2026_120759.pdf +++ /dev/null diff --git a/results/src/experiment2/figures/whatsapp/23_Jun_2026_121329.pdf b/results/src/experiment2/figures/whatsapp/23_Jun_2026_121329.pdf Binary files differdeleted file mode 100644 index bd17b16c..00000000 --- a/results/src/experiment2/figures/whatsapp/23_Jun_2026_121329.pdf +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet b/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet b/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet Binary files differdeleted file mode 100644 index ae92562a..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet b/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet Binary files differdeleted file mode 100644 index 6dcb9899..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet b/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet Binary files differdeleted file mode 100644 index f8f14c62..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet b/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet Binary files differdeleted file mode 100644 index bee8c1b9..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet +++ /dev/null diff --git a/results/src/experiment2/output/gmail/greenifier-demo-scaling/trackr.json b/results/src/experiment2/output/gmail/greenifier-demo-scaling/trackr.json deleted file mode 100644 index 1b0d5fdd..00000000 --- a/results/src/experiment2/output/gmail/greenifier-demo-scaling/trackr.json +++ /dev/null @@ -1,24 +0,0 @@ -[{ - "name": "greenifier-demo-scaling", - "topology": { - "pathToFile": "resources/topologies/surf.json" - }, - "workload": { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - }, - "exportModel": { - "exportInterval": 3600, - "filesToExportDict": { - "host": true, - "task": true, - "powerSource": true, - "battery": true, - "service": true - } - }, - "failureModel": { - "type": "trace-based", - "pathToFile": "resources/failures/Gmail_user_reported.parquet" - } -}]
\ No newline at end of file diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/battery.parquet +++ /dev/null diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet Binary files differdeleted file mode 100644 index 59db3098..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/host.parquet +++ /dev/null diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet Binary files differdeleted file mode 100644 index d5592766..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet Binary files differdeleted file mode 100644 index 741230bd..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/service.parquet +++ /dev/null diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet Binary files differdeleted file mode 100644 index f3d1c746..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/raw-output/0/seed=0/task.parquet +++ /dev/null diff --git a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/trackr.json b/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/trackr.json deleted file mode 100644 index 7c25f31d..00000000 --- a/results/src/experiment2/output/whatsapp/greenifier-demo-scaling/trackr.json +++ /dev/null @@ -1,24 +0,0 @@ -[{ - "name": "greenifier-demo-scaling", - "topology": { - "pathToFile": "resources/topologies/surf.json" - }, - "workload": { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - }, - "exportModel": { - "exportInterval": 3600, - "filesToExportDict": { - "host": true, - "task": true, - "powerSource": true, - "battery": true, - "service": true - } - }, - "failureModel": { - "type": "trace-based", - "pathToFile": "resources/failures/Whatsapp_user_reported.parquet" - } -}]
\ No newline at end of file diff --git a/results/src/experiment2/output/whatsapp/readme.txt b/results/src/experiment2/output/whatsapp/readme.txt deleted file mode 100644 index ea55d90c..00000000 --- a/results/src/experiment2/output/whatsapp/readme.txt +++ /dev/null @@ -1,2 +0,0 @@ -This is the output of a raw OpenDC simulation running with the WhatsApp failure trace. -From this we get the failures that have occurred. diff --git a/results/src/experiment2/resources/carbon_traces/AT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AT_2021-2024.parquet Binary files differdeleted file mode 100755 index 851daf26..00000000 --- a/results/src/experiment2/resources/carbon_traces/AT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-NSW_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-NSW_2021-2024.parquet Binary files differdeleted file mode 100755 index 5d3a5edb..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-NSW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-NT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-NT_2021-2024.parquet Binary files differdeleted file mode 100755 index 0735e883..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-NT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-QLD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-QLD_2021-2024.parquet Binary files differdeleted file mode 100755 index a97ef1ff..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-QLD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-SA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-SA_2021-2024.parquet Binary files differdeleted file mode 100755 index bf3c1571..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-SA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-TAS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-TAS_2021-2024.parquet Binary files differdeleted file mode 100755 index a764901b..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-TAS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-VIC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-VIC_2021-2024.parquet Binary files differdeleted file mode 100755 index f4ac4718..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-VIC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU-WA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU-WA_2021-2024.parquet Binary files differdeleted file mode 100755 index 1f010f5c..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU-WA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/AU_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/AU_2021-2024.parquet Binary files differdeleted file mode 100755 index e37a55f6..00000000 --- a/results/src/experiment2/resources/carbon_traces/AU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BA_2021-2024.parquet Binary files differdeleted file mode 100755 index ef91a677..00000000 --- a/results/src/experiment2/resources/carbon_traces/BA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3bea5e2e..00000000 --- a/results/src/experiment2/resources/carbon_traces/BE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BG_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BG_2021-2024.parquet Binary files differdeleted file mode 100755 index b3df0b74..00000000 --- a/results/src/experiment2/resources/carbon_traces/BG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BR-CS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BR-CS_2021-2024.parquet Binary files differdeleted file mode 100755 index 0e93b8d7..00000000 --- a/results/src/experiment2/resources/carbon_traces/BR-CS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BR-NE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BR-NE_2021-2024.parquet Binary files differdeleted file mode 100755 index afd0095f..00000000 --- a/results/src/experiment2/resources/carbon_traces/BR-NE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BR-N_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BR-N_2021-2024.parquet Binary files differdeleted file mode 100755 index c655c25c..00000000 --- a/results/src/experiment2/resources/carbon_traces/BR-N_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BR-S_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BR-S_2021-2024.parquet Binary files differdeleted file mode 100755 index 5276dd68..00000000 --- a/results/src/experiment2/resources/carbon_traces/BR-S_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/BR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/BR_2021-2024.parquet Binary files differdeleted file mode 100755 index d04a26cb..00000000 --- a/results/src/experiment2/resources/carbon_traces/BR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CA-ON_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CA-ON_2021-2024.parquet Binary files differdeleted file mode 100755 index 195cffd6..00000000 --- a/results/src/experiment2/resources/carbon_traces/CA-ON_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CA-QC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CA-QC_2021-2024.parquet Binary files differdeleted file mode 100755 index 0dc8964e..00000000 --- a/results/src/experiment2/resources/carbon_traces/CA-QC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CH_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CH_2021-2024.parquet Binary files differdeleted file mode 100755 index 73726625..00000000 --- a/results/src/experiment2/resources/carbon_traces/CH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CL-SEN_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CL-SEN_2021-2024.parquet Binary files differdeleted file mode 100755 index 269c77fe..00000000 --- a/results/src/experiment2/resources/carbon_traces/CL-SEN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CR_2021-2024.parquet Binary files differdeleted file mode 100755 index d55de147..00000000 --- a/results/src/experiment2/resources/carbon_traces/CR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CY_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CY_2021-2024.parquet Binary files differdeleted file mode 100755 index acec57a1..00000000 --- a/results/src/experiment2/resources/carbon_traces/CY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/CZ_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/CZ_2021-2024.parquet Binary files differdeleted file mode 100755 index 2a7fb055..00000000 --- a/results/src/experiment2/resources/carbon_traces/CZ_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/DE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/DE_2021-2024.parquet Binary files differdeleted file mode 100755 index 73842c1b..00000000 --- a/results/src/experiment2/resources/carbon_traces/DE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/DK-BHM_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/DK-BHM_2021-2024.parquet Binary files differdeleted file mode 100755 index a2bc8de4..00000000 --- a/results/src/experiment2/resources/carbon_traces/DK-BHM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/DK-DK1_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/DK-DK1_2021-2024.parquet Binary files differdeleted file mode 100755 index cc0ab7d2..00000000 --- a/results/src/experiment2/resources/carbon_traces/DK-DK1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/DK-DK2_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/DK-DK2_2021-2024.parquet Binary files differdeleted file mode 100755 index f0350c22..00000000 --- a/results/src/experiment2/resources/carbon_traces/DK-DK2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/DK_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/DK_2021-2024.parquet Binary files differdeleted file mode 100755 index c02bf36c..00000000 --- a/results/src/experiment2/resources/carbon_traces/DK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/EE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/EE_2021-2024.parquet Binary files differdeleted file mode 100755 index bb0f00f4..00000000 --- a/results/src/experiment2/resources/carbon_traces/EE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/ES_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/ES_2021-2024.parquet Binary files differdeleted file mode 100755 index fe200a0e..00000000 --- a/results/src/experiment2/resources/carbon_traces/ES_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/FI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/FI_2021-2024.parquet Binary files differdeleted file mode 100755 index 6f9076a5..00000000 --- a/results/src/experiment2/resources/carbon_traces/FI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/FR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/FR_2021-2024.parquet Binary files differdeleted file mode 100755 index b8844200..00000000 --- a/results/src/experiment2/resources/carbon_traces/FR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/GB-NIR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/GB-NIR_2021-2024.parquet Binary files differdeleted file mode 100755 index 9c823df4..00000000 --- a/results/src/experiment2/resources/carbon_traces/GB-NIR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/GB_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/GB_2021-2024.parquet Binary files differdeleted file mode 100755 index 7c9f3006..00000000 --- a/results/src/experiment2/resources/carbon_traces/GB_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/GR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/GR_2021-2024.parquet Binary files differdeleted file mode 100755 index f4d2218c..00000000 --- a/results/src/experiment2/resources/carbon_traces/GR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/HK_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/HK_2021-2024.parquet Binary files differdeleted file mode 100755 index f0345b23..00000000 --- a/results/src/experiment2/resources/carbon_traces/HK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/HR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/HR_2021-2024.parquet Binary files differdeleted file mode 100755 index 6d228273..00000000 --- a/results/src/experiment2/resources/carbon_traces/HR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/HU_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/HU_2021-2024.parquet Binary files differdeleted file mode 100755 index 9e2a8c1f..00000000 --- a/results/src/experiment2/resources/carbon_traces/HU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IE_2021-2024.parquet Binary files differdeleted file mode 100755 index 0ec84467..00000000 --- a/results/src/experiment2/resources/carbon_traces/IE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IL_2021-2024.parquet Binary files differdeleted file mode 100755 index 44d43e59..00000000 --- a/results/src/experiment2/resources/carbon_traces/IL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN-EA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN-EA_2021-2024.parquet Binary files differdeleted file mode 100755 index f119615b..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN-EA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN-NE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN-NE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3d9ab8c3..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN-NE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN-NO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN-NO_2021-2024.parquet Binary files differdeleted file mode 100755 index 9b7180b2..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN-NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN-SO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN-SO_2021-2024.parquet Binary files differdeleted file mode 100755 index 8db2b457..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN-SO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN-WE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN-WE_2021-2024.parquet Binary files differdeleted file mode 100755 index d0b95e79..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN-WE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IN_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IN_2021-2024.parquet Binary files differdeleted file mode 100755 index 9c112b30..00000000 --- a/results/src/experiment2/resources/carbon_traces/IN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IS_2021-2024.parquet Binary files differdeleted file mode 100755 index cfb8c9b5..00000000 --- a/results/src/experiment2/resources/carbon_traces/IS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-CNO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-CNO_2021-2024.parquet Binary files differdeleted file mode 100755 index 2be79a74..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-CNO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-CSO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-CSO_2021-2024.parquet Binary files differdeleted file mode 100755 index 1c6fce62..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-CSO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-NO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-NO_2021-2024.parquet Binary files differdeleted file mode 100755 index b4d29339..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-SAR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-SAR_2021-2024.parquet Binary files differdeleted file mode 100755 index 8f031ab4..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-SAR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-SIC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-SIC_2021-2024.parquet Binary files differdeleted file mode 100755 index 7ec9947d..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-SIC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT-SO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT-SO_2021-2024.parquet Binary files differdeleted file mode 100755 index cd62ce13..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT-SO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/IT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/IT_2021-2024.parquet Binary files differdeleted file mode 100755 index 7b1693a6..00000000 --- a/results/src/experiment2/resources/carbon_traces/IT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-CB_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-CB_2021-2024.parquet Binary files differdeleted file mode 100755 index 04578402..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-CB_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-CG_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-CG_2021-2024.parquet Binary files differdeleted file mode 100755 index ea1a8349..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-CG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-HKD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-HKD_2021-2024.parquet Binary files differdeleted file mode 100755 index 8aabf693..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-HKD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-HR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-HR_2021-2024.parquet Binary files differdeleted file mode 100755 index b8d67f66..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-HR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-KN_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-KN_2021-2024.parquet Binary files differdeleted file mode 100755 index c14b870e..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-KN_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-KY_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-KY_2021-2024.parquet Binary files differdeleted file mode 100755 index 6b7d9d06..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-KY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-ON_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-ON_2021-2024.parquet Binary files differdeleted file mode 100755 index c4415d64..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-ON_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-TH_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-TH_2021-2024.parquet Binary files differdeleted file mode 100755 index 23b1bd96..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-TH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP-TK_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP-TK_2021-2024.parquet Binary files differdeleted file mode 100755 index 83cc1284..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP-TK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/JP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/JP_2021-2024.parquet Binary files differdeleted file mode 100755 index 2c0745f4..00000000 --- a/results/src/experiment2/resources/carbon_traces/JP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/KE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/KE_2021-2024.parquet Binary files differdeleted file mode 100755 index c9178134..00000000 --- a/results/src/experiment2/resources/carbon_traces/KE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/KR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/KR_2021-2024.parquet Binary files differdeleted file mode 100755 index 52f7cde1..00000000 --- a/results/src/experiment2/resources/carbon_traces/KR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/LT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/LT_2021-2024.parquet Binary files differdeleted file mode 100755 index adbd42d6..00000000 --- a/results/src/experiment2/resources/carbon_traces/LT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/LU_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/LU_2021-2024.parquet Binary files differdeleted file mode 100755 index 5df1873b..00000000 --- a/results/src/experiment2/resources/carbon_traces/LU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/LV_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/LV_2021-2024.parquet Binary files differdeleted file mode 100755 index e17b0562..00000000 --- a/results/src/experiment2/resources/carbon_traces/LV_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/MY-WM_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/MY-WM_2021-2024.parquet Binary files differdeleted file mode 100755 index ddde287a..00000000 --- a/results/src/experiment2/resources/carbon_traces/MY-WM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/MY_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/MY_2021-2024.parquet Binary files differdeleted file mode 100755 index d7caa5ed..00000000 --- a/results/src/experiment2/resources/carbon_traces/MY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NI_2021-2024.parquet Binary files differdeleted file mode 100755 index 3014bb7c..00000000 --- a/results/src/experiment2/resources/carbon_traces/NI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NL_2021-2024.parquet Binary files differdeleted file mode 100755 index ec850b42..00000000 --- a/results/src/experiment2/resources/carbon_traces/NL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO-NO1_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO-NO1_2021-2024.parquet Binary files differdeleted file mode 100755 index ea6b801c..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO-NO1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO-NO2_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO-NO2_2021-2024.parquet Binary files differdeleted file mode 100755 index 030a6994..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO-NO2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO-NO3_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO-NO3_2021-2024.parquet Binary files differdeleted file mode 100755 index 1daf3228..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO-NO3_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO-NO4_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO-NO4_2021-2024.parquet Binary files differdeleted file mode 100755 index bd034d6e..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO-NO4_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO-NO5_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO-NO5_2021-2024.parquet Binary files differdeleted file mode 100755 index 45335711..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO-NO5_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NO_2021-2024.parquet Binary files differdeleted file mode 100755 index 2854edcf..00000000 --- a/results/src/experiment2/resources/carbon_traces/NO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/NZ_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/NZ_2021-2024.parquet Binary files differdeleted file mode 100755 index 737ddbb9..00000000 --- a/results/src/experiment2/resources/carbon_traces/NZ_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PA_2021-2024.parquet Binary files differdeleted file mode 100755 index edcaef84..00000000 --- a/results/src/experiment2/resources/carbon_traces/PA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PE_2021-2024.parquet Binary files differdeleted file mode 100755 index 5095e639..00000000 --- a/results/src/experiment2/resources/carbon_traces/PE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PH-LU_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PH-LU_2021-2024.parquet Binary files differdeleted file mode 100755 index 364dd902..00000000 --- a/results/src/experiment2/resources/carbon_traces/PH-LU_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PH-MI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PH-MI_2021-2024.parquet Binary files differdeleted file mode 100755 index c7422e30..00000000 --- a/results/src/experiment2/resources/carbon_traces/PH-MI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PH-VI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PH-VI_2021-2024.parquet Binary files differdeleted file mode 100755 index de81e23d..00000000 --- a/results/src/experiment2/resources/carbon_traces/PH-VI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PH_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PH_2021-2024.parquet Binary files differdeleted file mode 100755 index 1af44aa9..00000000 --- a/results/src/experiment2/resources/carbon_traces/PH_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PL_2021-2024.parquet Binary files differdeleted file mode 100755 index c882cd42..00000000 --- a/results/src/experiment2/resources/carbon_traces/PL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/PT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/PT_2021-2024.parquet Binary files differdeleted file mode 100755 index d4cc920a..00000000 --- a/results/src/experiment2/resources/carbon_traces/PT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/RO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/RO_2021-2024.parquet Binary files differdeleted file mode 100755 index c43432ac..00000000 --- a/results/src/experiment2/resources/carbon_traces/RO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/RS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/RS_2021-2024.parquet Binary files differdeleted file mode 100755 index f45a36fb..00000000 --- a/results/src/experiment2/resources/carbon_traces/RS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SE-SE1_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SE-SE1_2021-2024.parquet Binary files differdeleted file mode 100755 index d774ad74..00000000 --- a/results/src/experiment2/resources/carbon_traces/SE-SE1_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SE-SE2_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SE-SE2_2021-2024.parquet Binary files differdeleted file mode 100755 index 130a11aa..00000000 --- a/results/src/experiment2/resources/carbon_traces/SE-SE2_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SE-SE3_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SE-SE3_2021-2024.parquet Binary files differdeleted file mode 100755 index 22133104..00000000 --- a/results/src/experiment2/resources/carbon_traces/SE-SE3_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SE-SE4_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SE-SE4_2021-2024.parquet Binary files differdeleted file mode 100755 index 65b3ac0d..00000000 --- a/results/src/experiment2/resources/carbon_traces/SE-SE4_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SE_2021-2024.parquet Binary files differdeleted file mode 100755 index a0971942..00000000 --- a/results/src/experiment2/resources/carbon_traces/SE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SG_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SG_2021-2024.parquet Binary files differdeleted file mode 100755 index af13ec28..00000000 --- a/results/src/experiment2/resources/carbon_traces/SG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SI_2021-2024.parquet Binary files differdeleted file mode 100755 index 5e708e55..00000000 --- a/results/src/experiment2/resources/carbon_traces/SI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/SK_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/SK_2021-2024.parquet Binary files differdeleted file mode 100755 index b58d2e20..00000000 --- a/results/src/experiment2/resources/carbon_traces/SK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/TR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/TR_2021-2024.parquet Binary files differdeleted file mode 100755 index 06442ebb..00000000 --- a/results/src/experiment2/resources/carbon_traces/TR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/TW_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/TW_2021-2024.parquet Binary files differdeleted file mode 100755 index cc9c76a7..00000000 --- a/results/src/experiment2/resources/carbon_traces/TW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet Binary files differdeleted file mode 100755 index 1b013b7f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAL-BANC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet Binary files differdeleted file mode 100755 index c6f6cfbf..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAL-CISO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAL-IID_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAL-IID_2021-2024.parquet Binary files differdeleted file mode 100755 index 882679c5..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAL-IID_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet Binary files differdeleted file mode 100755 index 8dea07fd..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAL-LDWP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet Binary files differdeleted file mode 100755 index f3a29cfd..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAL-TIDC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet Binary files differdeleted file mode 100755 index e736ed36..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-CPLE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet Binary files differdeleted file mode 100755 index e83ce83b..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-CPLW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet Binary files differdeleted file mode 100755 index 2dce0a7f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-DUK_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet Binary files differdeleted file mode 100755 index 8d7c778b..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-SCEG_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-SC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-SC_2021-2024.parquet Binary files differdeleted file mode 100755 index 45acee23..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-SC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet Binary files differdeleted file mode 100755 index 6baeea5f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CAR-YAD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet Binary files differdeleted file mode 100755 index 5631ecb6..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CENT-SPA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet Binary files differdeleted file mode 100755 index d98045ce..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-CENT-SWPP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet Binary files differdeleted file mode 100755 index f7c95927..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-FMPP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet Binary files differdeleted file mode 100755 index cd219258..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-FPC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet Binary files differdeleted file mode 100755 index da60e96f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-FPL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet Binary files differdeleted file mode 100755 index 04f5e3dd..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-GVL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet Binary files differdeleted file mode 100755 index 6041e25f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-JEA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet Binary files differdeleted file mode 100755 index 57a36fdf..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-SEC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet Binary files differdeleted file mode 100755 index e14e442c..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-TAL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet Binary files differdeleted file mode 100755 index d37bafe3..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-FLA-TEC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet Binary files differdeleted file mode 100755 index 12a45663..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-MIDA-PJM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet Binary files differdeleted file mode 100755 index 90601c9a..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-MIDW-AECI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet Binary files differdeleted file mode 100755 index 8132ea5c..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-MIDW-LGEE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet Binary files differdeleted file mode 100755 index d9a692fb..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-MIDW-MISO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet Binary files differdeleted file mode 100755 index 0af0a416..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NE-ISNE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-AVA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-AVA_2021-2024.parquet Binary files differdeleted file mode 100755 index a21660a6..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-AVA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet Binary files differdeleted file mode 100755 index d50cb81b..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-BPAT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet Binary files differdeleted file mode 100755 index 09e27e64..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-CHPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet Binary files differdeleted file mode 100755 index 4bf39503..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-DOPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet Binary files differdeleted file mode 100755 index fb16a600..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-GCPD_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-GRID_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-GRID_2021-2024.parquet Binary files differdeleted file mode 100755 index 12b1fa79..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-GRID_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet Binary files differdeleted file mode 100755 index 3490db8d..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-IPCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet Binary files differdeleted file mode 100755 index 285ce5e9..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-NEVP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet Binary files differdeleted file mode 100755 index b133101c..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-NWMT_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-PACE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-PACE_2021-2024.parquet Binary files differdeleted file mode 100755 index 92dbdb65..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-PACE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-PACW_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-PACW_2021-2024.parquet Binary files differdeleted file mode 100755 index b1301fb3..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-PACW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-PGE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-PGE_2021-2024.parquet Binary files differdeleted file mode 100755 index 3db3bfd0..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-PGE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet Binary files differdeleted file mode 100755 index b9e42b75..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-PSCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet Binary files differdeleted file mode 100755 index 9728b7e0..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-PSEI_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-SCL_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-SCL_2021-2024.parquet Binary files differdeleted file mode 100755 index 4bd7f72a..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-SCL_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet Binary files differdeleted file mode 100755 index c060d86f..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-TPWR_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-WACM_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-WACM_2021-2024.parquet Binary files differdeleted file mode 100755 index 92997aef..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-WACM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet Binary files differdeleted file mode 100755 index a5ba5772..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NW-WAUW_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet Binary files differdeleted file mode 100755 index aaa3a017..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-NY-NYIS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet Binary files differdeleted file mode 100755 index f13f0bb2..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SE-SOCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet Binary files differdeleted file mode 100755 index c840a731..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-AZPS_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-EPE_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-EPE_2021-2024.parquet Binary files differdeleted file mode 100755 index 589de119..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-EPE_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-PNM_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-PNM_2021-2024.parquet Binary files differdeleted file mode 100755 index 9db43b6a..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-PNM_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-SRP_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-SRP_2021-2024.parquet Binary files differdeleted file mode 100755 index 8b14a7a0..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-SRP_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet Binary files differdeleted file mode 100755 index 946c75f1..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-TEPC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-SW-WALC_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-SW-WALC_2021-2024.parquet Binary files differdeleted file mode 100755 index 8f6f619c..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-SW-WALC_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet Binary files differdeleted file mode 100755 index 736797ed..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-TEN-TVA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet Binary files differdeleted file mode 100755 index 65e8f6a2..00000000 --- a/results/src/experiment2/resources/carbon_traces/US-TEX-ERCO_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/US_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/US_2021-2024.parquet Binary files differdeleted file mode 100755 index b5e438e6..00000000 --- a/results/src/experiment2/resources/carbon_traces/US_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/UY_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/UY_2021-2024.parquet Binary files differdeleted file mode 100755 index dcde97f3..00000000 --- a/results/src/experiment2/resources/carbon_traces/UY_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/carbon_traces/ZA_2021-2024.parquet b/results/src/experiment2/resources/carbon_traces/ZA_2021-2024.parquet Binary files differdeleted file mode 100755 index d70dd76a..00000000 --- a/results/src/experiment2/resources/carbon_traces/ZA_2021-2024.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/experiments/experiment_scaling.json b/results/src/experiment2/resources/experiments/experiment_scaling.json deleted file mode 100644 index 8085f1e3..00000000 --- a/results/src/experiment2/resources/experiments/experiment_scaling.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "greenifier-demo-scaling", - "topologies": [ - { - "pathToFile": "resources/topologies/surf.json" - } - ], - "workloads": [ - { - "pathToFile": "resources/workloads/surf_month", - "type": "ComputeWorkload" - } - ], - "failureModels" : [ - { - "type": "trace-based", - "pathToFile" : "resources/failures/Whatsapp_user_reported.parquet" - } - ], - "exportModels": [ - { - "exportInterval": 3600 - } - ] -} diff --git a/results/src/experiment2/resources/failures/Gmail_user_reported.parquet b/results/src/experiment2/resources/failures/Gmail_user_reported.parquet Binary files differdeleted file mode 100755 index db039fd1..00000000 --- a/results/src/experiment2/resources/failures/Gmail_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/failures/Skype_user_reported.parquet b/results/src/experiment2/resources/failures/Skype_user_reported.parquet Binary files differdeleted file mode 100755 index 316706c7..00000000 --- a/results/src/experiment2/resources/failures/Skype_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/failures/Whatsapp_user_reported.parquet b/results/src/experiment2/resources/failures/Whatsapp_user_reported.parquet Binary files differdeleted file mode 100755 index 0e954d70..00000000 --- a/results/src/experiment2/resources/failures/Whatsapp_user_reported.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/battery.parquet b/results/src/experiment2/resources/threshold/battery.parquet Binary files differdeleted file mode 100644 index 93b3f21c..00000000 --- a/results/src/experiment2/resources/threshold/battery.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/failures_models_used.png b/results/src/experiment2/resources/threshold/failures_models_used.png Binary files differdeleted file mode 100644 index 3d76856d..00000000 --- a/results/src/experiment2/resources/threshold/failures_models_used.png +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/host.parquet b/results/src/experiment2/resources/threshold/host.parquet Binary files differdeleted file mode 100644 index a99f3967..00000000 --- a/results/src/experiment2/resources/threshold/host.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/powerSource.parquet b/results/src/experiment2/resources/threshold/powerSource.parquet Binary files differdeleted file mode 100644 index aa5e56c0..00000000 --- a/results/src/experiment2/resources/threshold/powerSource.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/readme.txt b/results/src/experiment2/resources/threshold/readme.txt deleted file mode 100644 index 0365dd65..00000000 --- a/results/src/experiment2/resources/threshold/readme.txt +++ /dev/null @@ -1,3 +0,0 @@ -This is the result of a raw simulation with the failureModels set to some statistical distribution in OpenDC. -Based on the downtime in the `host.parquet` file, we calculate the threshold. -In `failureModelsUsed.png` are the distributions we used. diff --git a/results/src/experiment2/resources/threshold/service.parquet b/results/src/experiment2/resources/threshold/service.parquet Binary files differdeleted file mode 100644 index 694f1271..00000000 --- a/results/src/experiment2/resources/threshold/service.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/threshold/task.parquet b/results/src/experiment2/resources/threshold/task.parquet Binary files differdeleted file mode 100644 index fda77c58..00000000 --- a/results/src/experiment2/resources/threshold/task.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/topologies/surf.json b/results/src/experiment2/resources/topologies/surf.json deleted file mode 100644 index ae438dac..00000000 --- a/results/src/experiment2/resources/topologies/surf.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 277 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment2/resources/topologies/surf_medium.json b/results/src/experiment2/resources/topologies/surf_medium.json deleted file mode 100644 index 6afc2475..00000000 --- a/results/src/experiment2/resources/topologies/surf_medium.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 200 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment2/resources/topologies/surf_small.json b/results/src/experiment2/resources/topologies/surf_small.json deleted file mode 100644 index 8c3d8ce3..00000000 --- a/results/src/experiment2/resources/topologies/surf_small.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "clusters": - [ - { - "name": "C01", - "hosts" : - [ - { - "name": "H01", - "cpu": { - "coreCount": 16, - "coreSpeed": 2100 - }, - "memory": { - "memorySize": 128000000 - }, - "count": 100 - } - ], - "powerSource": { - "carbonTracePath": "resources/carbon_traces/NL_2021-2024.parquet" - } - } - ] -}
\ No newline at end of file diff --git a/results/src/experiment2/resources/workloads/bitbrains-small/fragments.parquet b/results/src/experiment2/resources/workloads/bitbrains-small/fragments.parquet Binary files differdeleted file mode 100644 index ac0a596b..00000000 --- a/results/src/experiment2/resources/workloads/bitbrains-small/fragments.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/workloads/bitbrains-small/tasks.parquet b/results/src/experiment2/resources/workloads/bitbrains-small/tasks.parquet Binary files differdeleted file mode 100644 index 4ce9dcfe..00000000 --- a/results/src/experiment2/resources/workloads/bitbrains-small/tasks.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/workloads/surf_month/fragments.parquet b/results/src/experiment2/resources/workloads/surf_month/fragments.parquet Binary files differdeleted file mode 100644 index 9c502001..00000000 --- a/results/src/experiment2/resources/workloads/surf_month/fragments.parquet +++ /dev/null diff --git a/results/src/experiment2/resources/workloads/surf_month/tasks.parquet b/results/src/experiment2/resources/workloads/surf_month/tasks.parquet Binary files differdeleted file mode 100644 index 43315a5e..00000000 --- a/results/src/experiment2/resources/workloads/surf_month/tasks.parquet +++ /dev/null diff --git a/results/src/experiment3/Facebook.txt b/results/src/experiment3/Facebook.txt deleted file mode 100644 index 2c38e98e..00000000 --- a/results/src/experiment3/Facebook.txt +++ /dev/null @@ -1,21124 +0,0 @@ -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red diff --git a/results/src/experiment3/Gmail.txt b/results/src/experiment3/Gmail.txt deleted file mode 100644 index 62f8353a..00000000 --- a/results/src/experiment3/Gmail.txt +++ /dev/null @@ -1,1607 +0,0 @@ -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 180000000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: yellow -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 212400000, Alarm: red -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: yellow -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 216000000, Alarm: red -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: yellow -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 219600000, Alarm: red -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: yellow -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 223200000, Alarm: red -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: yellow -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 712800000, Alarm: red -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: yellow -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 795600000, Alarm: red -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: yellow -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 975600000, Alarm: red -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 982800000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1087200000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1234800000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: yellow -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1854000000, Alarm: red -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: yellow -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1857600000, Alarm: red -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1861200000, Alarm: red -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red diff --git a/results/src/experiment3/NoColumn.txt b/results/src/experiment3/NoColumn.txt deleted file mode 100644 index 990fabfb..00000000 --- a/results/src/experiment3/NoColumn.txt +++ /dev/null @@ -1,5560 +0,0 @@ - timestamp,alarm - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,yellow - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 291600000,red - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,yellow - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 367200000,red - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,yellow - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 370800000,red - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,yellow - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 374400000,red - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,yellow - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 378000000,red - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,yellow - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 381600000,red - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,yellow - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 612000000,red - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,yellow - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 745200000,red - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,yellow - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 882000000,red - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,yellow - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 885600000,red - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,yellow - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1468800000,red - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,yellow - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1472400000,red - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,yellow - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1490400000,red - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,yellow - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1494000000,red - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,yellow - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1497600000,red - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,yellow - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1501200000,red - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1512000000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1515600000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,yellow - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1519200000,red - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,yellow - 1522800000,red - 1522800000,red - 1522800000,red - 1522800000,red - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,yellow - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1526400000,red - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,yellow - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1540800000,red - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,yellow - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1551600000,red - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,yellow - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1566000000,red - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1569600000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,yellow - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1576800000,red - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,yellow - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1670400000,red - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,yellow - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1699200000,red - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,yellow - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1753200000,red - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,yellow - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1767600000,red - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1771200000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,yellow - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1778400000,red - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,yellow - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1796400000,red - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,yellow - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1803600000,red - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,yellow - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1900800000,red - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,yellow - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1911600000,red - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,yellow - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1929600000,red - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,yellow - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1936800000,red - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,yellow - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1940400000,red - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,yellow - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1944000000,red - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,yellow - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1951200000,red - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1990800000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 1994400000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,yellow - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2001600000,red - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,yellow - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2005200000,red - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,yellow - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2008800000,red - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,yellow - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2012400000,red - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,yellow - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2019600000,red - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,yellow - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2023200000,red - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,yellow - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2034000000,red - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,yellow - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2055600000,red - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,yellow - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2059200000,red - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,yellow - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2098800000,red - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,yellow - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2102400000,red - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,yellow - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2152800000,red - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,yellow - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2156400000,red - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,yellow - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2224800000,red - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,yellow - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2242800000,red - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,yellow - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2260800000,red - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2268000000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,yellow - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2271600000,red - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,yellow - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2275200000,red - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,yellow - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2278800000,red - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2282400000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2286000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,yellow - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2304000000,red - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,yellow - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2307600000,red - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,yellow - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2347200000,red - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,yellow - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2350800000,red - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,yellow - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2354400000,red - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,yellow - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2358000000,red - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2368800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2404800000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,yellow - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2408400000,red - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,yellow - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2412000000,red - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,yellow - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2422800000,red - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,yellow - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2433600000,red - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,yellow - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2437200000,red - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,yellow - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2440800000,red - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,yellow - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2473200000,red - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,yellow - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2476800000,red - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2484000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,yellow - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2502000000,red - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,yellow - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2538000000,red - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2563200000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,yellow - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2570400000,red - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,yellow - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2595600000,red - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,yellow - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2610000000,red - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2613600000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2617200000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2620800000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,yellow - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2635200000,red - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2638800000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,yellow - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2653200000,red - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,yellow - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2671200000,red - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,yellow - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2674800000,red - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,yellow - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2678400000,red - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,yellow - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2700000000,red - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,yellow - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2703600000,red - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,yellow - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2707200000,red - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,yellow - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red - 2710800000,red diff --git a/results/src/experiment3/Twitter.txt b/results/src/experiment3/Twitter.txt deleted file mode 100644 index f4ec9ca8..00000000 --- a/results/src/experiment3/Twitter.txt +++ /dev/null @@ -1,10744 +0,0 @@ -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1512000000, Alarm: red -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1515600000, Alarm: red -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1548000000, Alarm: yellow -Timestamp: 1548000000, Alarm: yellow -Timestamp: 1548000000, Alarm: yellow -Timestamp: 1548000000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: yellow -Timestamp: 1634400000, Alarm: red -Timestamp: 1634400000, Alarm: red -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1666800000, Alarm: red -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: yellow -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1681200000, Alarm: red -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: yellow -Timestamp: 1710000000, Alarm: red -Timestamp: 1710000000, Alarm: red -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: yellow -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1774800000, Alarm: red -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: yellow -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1785600000, Alarm: red -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: yellow -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1958400000, Alarm: red -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: red -Timestamp: 1969200000, Alarm: red -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2016000000, Alarm: red -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: yellow -Timestamp: 2037600000, Alarm: red -Timestamp: 2037600000, Alarm: red -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: yellow -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2052000000, Alarm: red -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2070000000, Alarm: red -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2073600000, Alarm: red -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2080800000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2084400000, Alarm: red -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: yellow -Timestamp: 2088000000, Alarm: red -Timestamp: 2088000000, Alarm: red -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: yellow -Timestamp: 2091600000, Alarm: red -Timestamp: 2091600000, Alarm: red -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: yellow -Timestamp: 2095200000, Alarm: red -Timestamp: 2095200000, Alarm: red -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: yellow -Timestamp: 2106000000, Alarm: red -Timestamp: 2106000000, Alarm: red -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: yellow -Timestamp: 2109600000, Alarm: red -Timestamp: 2109600000, Alarm: red -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: yellow -Timestamp: 2131200000, Alarm: red -Timestamp: 2131200000, Alarm: red -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: yellow -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2196000000, Alarm: red -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: yellow -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2203200000, Alarm: red -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2206800000, Alarm: red -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: yellow -Timestamp: 2210400000, Alarm: red -Timestamp: 2210400000, Alarm: red -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2221200000, Alarm: red -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2289600000, Alarm: red -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2293200000, Alarm: red -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2329200000, Alarm: red -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2332800000, Alarm: red -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2376000000, Alarm: red -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: red -Timestamp: 2379600000, Alarm: red -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2397600000, Alarm: red -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2401200000, Alarm: red -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2426400000, Alarm: red -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2430000000, Alarm: red -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2444400000, Alarm: red -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2448000000, Alarm: red -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2451600000, Alarm: red -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: yellow -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2480400000, Alarm: red -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2484000000, Alarm: red -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2487600000, Alarm: red -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2491200000, Alarm: red -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: yellow -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2498400000, Alarm: red -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: yellow -Timestamp: 2505600000, Alarm: red -Timestamp: 2505600000, Alarm: red -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: red -Timestamp: 2527200000, Alarm: red -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: red -Timestamp: 2530800000, Alarm: red -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: red -Timestamp: 2534400000, Alarm: red -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: yellow -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2574000000, Alarm: red -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: yellow -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2628000000, Alarm: red -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2646000000, Alarm: red -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2649600000, Alarm: red -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: yellow -Timestamp: 2656800000, Alarm: red -Timestamp: 2656800000, Alarm: red -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: yellow -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2660400000, Alarm: red -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: yellow -Timestamp: 2692800000, Alarm: red -Timestamp: 2692800000, Alarm: red -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: yellow -Timestamp: 2695230000, Alarm: red -Timestamp: 2695230000, Alarm: red diff --git a/results/src/experiment3/WhatsApp.txt b/results/src/experiment3/WhatsApp.txt deleted file mode 100644 index e4d576b1..00000000 --- a/results/src/experiment3/WhatsApp.txt +++ /dev/null @@ -1,2339 +0,0 @@ -Threshold: 218.0 -Total_failures: 19769 -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 183600000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 352800000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 356400000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 604800000, Alarm: red -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1036800000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1807200000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2160000000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: yellow -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2577600000, Alarm: red -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: yellow -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2581200000, Alarm: red -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: yellow -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2588400000, Alarm: red -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2592000000, Alarm: red -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: yellow -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2664000000, Alarm: red -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: yellow -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2782800000, Alarm: red -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: yellow -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red -Timestamp: 2804400000, Alarm: red diff --git a/results/src/experiment3/Youtube.txt b/results/src/experiment3/Youtube.txt deleted file mode 100644 index 965464d7..00000000 --- a/results/src/experiment3/Youtube.txt +++ /dev/null @@ -1,5561 +0,0 @@ -Threshold: 218.0 -Total_Failures: 56286 -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 291600000, Alarm: red -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: yellow -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 367200000, Alarm: red -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: yellow -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 370800000, Alarm: red -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: yellow -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 374400000, Alarm: red -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: yellow -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 378000000, Alarm: red -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: yellow -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 381600000, Alarm: red -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 612000000, Alarm: red -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: yellow -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 745200000, Alarm: red -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: yellow -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 882000000, Alarm: red -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 885600000, Alarm: red -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1512000000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1515600000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: yellow -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1519200000, Alarm: red -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1522800000, Alarm: red -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: yellow -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1540800000, Alarm: red -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: yellow -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1551600000, Alarm: red -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: yellow -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1767600000, Alarm: red -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: yellow -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1796400000, Alarm: red -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: yellow -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1803600000, Alarm: red -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: yellow -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1900800000, Alarm: red -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2005200000, Alarm: red -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2008800000, Alarm: red -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2012400000, Alarm: red -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: yellow -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2034000000, Alarm: red -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: yellow -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2055600000, Alarm: red -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: yellow -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2059200000, Alarm: red -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: yellow -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2102400000, Alarm: red -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2260800000, Alarm: red -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2271600000, Alarm: red -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2275200000, Alarm: red -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2304000000, Alarm: red -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2307600000, Alarm: red -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2347200000, Alarm: red -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2350800000, Alarm: red -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2354400000, Alarm: red -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2358000000, Alarm: red -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2404800000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: yellow -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2408400000, Alarm: red -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2433600000, Alarm: red -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2437200000, Alarm: red -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2440800000, Alarm: red -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: yellow -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2476800000, Alarm: red -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2484000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2502000000, Alarm: red -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2570400000, Alarm: red -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: yellow -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2653200000, Alarm: red -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: yellow -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2671200000, Alarm: red -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: yellow -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2674800000, Alarm: red -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: yellow -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2700000000, Alarm: red -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: yellow -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2703600000, Alarm: red -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: yellow -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2707200000, Alarm: red -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: yellow -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red -Timestamp: 2710800000, Alarm: red diff --git a/results/src/experiment3/__main__.py b/results/src/experiment3/__main__.py deleted file mode 100644 index 7a7d9519..00000000 --- a/results/src/experiment3/__main__.py +++ /dev/null @@ -1,44 +0,0 @@ -import pandas as pd -import time -import csv -import os -from time import gmtime, strftime -import numpy as np -import matplotlib.pyplot as plt - -CONSTANT = 3_6000_000 / 24 - -# Largest to smallest failure traces: -# Facebook (112115 failures), Twitter (64128 failures), Youtube (56286) Whatsapp (19769), Gmail (14622) -# Threshold is everywhere 218 - - -def get_name() -> str: - - curr = time.time() - s = strftime("%d_%b_%Y_%H%M%S", gmtime(curr)) - return s - - -def iterate(frame): - red_alarms = 0 - yellow_alarms = 0 - for i, row in frame.iterrows(): - s = row["alarm"] - if s == "red": - red_alarms = red_alarms + 1 - if s == "yellow": - yellow_alarms = yellow_alarms + 1 - return (yellow_alarms, red_alarms) - - -def main(): - - df = pd.read_csv("NoColumn.txt") - print(df) - result = iterate(df) - print(result) - - -if __name__ == "__main__": - main() diff --git a/results/src/experiment3/facebook.backup b/results/src/experiment3/facebook.backup deleted file mode 100644 index 2c38e98e..00000000 --- a/results/src/experiment3/facebook.backup +++ /dev/null @@ -1,21124 +0,0 @@ -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: yellow -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 3600000, Alarm: red -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: yellow -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 7200000, Alarm: red -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: yellow -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 10800000, Alarm: red -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: yellow -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 14400000, Alarm: red -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: yellow -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 18000000, Alarm: red -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: yellow -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 21600000, Alarm: red -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: yellow -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 25200000, Alarm: red -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: yellow -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 28800000, Alarm: red -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: yellow -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 32400000, Alarm: red -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: yellow -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 36000000, Alarm: red -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 39600000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 43200000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: yellow -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 46800000, Alarm: red -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: yellow -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 50400000, Alarm: red -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: yellow -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 54000000, Alarm: red -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: yellow -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 57600000, Alarm: red -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: yellow -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 61200000, Alarm: red -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: yellow -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 64800000, Alarm: red -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 68400000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 72000000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 75600000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 79200000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: yellow -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 82800000, Alarm: red -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: yellow -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 86400000, Alarm: red -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: yellow -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 90000000, Alarm: red -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: yellow -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 93600000, Alarm: red -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: yellow -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 97200000, Alarm: red -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: yellow -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 100800000, Alarm: red -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: yellow -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 104400000, Alarm: red -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: yellow -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 108000000, Alarm: red -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: yellow -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 111600000, Alarm: red -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: yellow -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 115200000, Alarm: red -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 118800000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 122400000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 126000000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: yellow -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 133200000, Alarm: red -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 140400000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 187200000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 190800000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: yellow -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 266400000, Alarm: red -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: yellow -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 270000000, Alarm: red -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: yellow -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 284400000, Alarm: red -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 291600000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: yellow -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 295200000, Alarm: red -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: yellow -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 298800000, Alarm: red -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: yellow -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 302400000, Alarm: red -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: yellow -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 349200000, Alarm: red -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: yellow -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 388800000, Alarm: red -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 396000000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 439200000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 442800000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: yellow -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 464400000, Alarm: red -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: yellow -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 468000000, Alarm: red -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: yellow -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 471600000, Alarm: red -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: yellow -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 475200000, Alarm: red -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: yellow -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 486000000, Alarm: red -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: yellow -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 489600000, Alarm: red -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: yellow -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 493200000, Alarm: red -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: yellow -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 496800000, Alarm: red -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: yellow -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 500400000, Alarm: red -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: yellow -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 504000000, Alarm: red -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 522000000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 525600000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 540000000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: yellow -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 554400000, Alarm: red -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 558000000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: yellow -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 565200000, Alarm: red -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: yellow -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 572400000, Alarm: red -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 604800000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 612000000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: yellow -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 615600000, Alarm: red -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 619200000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 622800000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 626400000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: yellow -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 633600000, Alarm: red -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 651600000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 655200000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 687600000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 691200000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: yellow -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 698400000, Alarm: red -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 702000000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 705600000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 709200000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: yellow -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 716400000, Alarm: red -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: yellow -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 720000000, Alarm: red -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: yellow -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 723600000, Alarm: red -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 730800000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 741600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 759600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 777600000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 788400000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 792000000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 802800000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 831600000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: yellow -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 835200000, Alarm: red -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 838800000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 860400000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 885600000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: yellow -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 889200000, Alarm: red -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: yellow -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 892800000, Alarm: red -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 896400000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 900000000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: yellow -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 914400000, Alarm: red -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: yellow -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 918000000, Alarm: red -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: yellow -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 921600000, Alarm: red -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: yellow -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 925200000, Alarm: red -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: yellow -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 928800000, Alarm: red -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: yellow -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 946800000, Alarm: red -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: yellow -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 968400000, Alarm: red -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 979200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: yellow -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 997200000, Alarm: red -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1022400000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1029600000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: yellow -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1040400000, Alarm: red -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1058400000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: yellow -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1065600000, Alarm: red -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: yellow -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1069200000, Alarm: red -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1116000000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1126800000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1137600000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1141200000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1144800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1162800000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1166400000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1170000000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1173600000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1195200000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: yellow -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1202400000, Alarm: red -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: yellow -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1209600000, Alarm: red -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1224000000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1238400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: yellow -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1310400000, Alarm: red -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1346400000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: yellow -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1353600000, Alarm: red -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: yellow -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1357200000, Alarm: red -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: yellow -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1360800000, Alarm: red -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: yellow -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1364400000, Alarm: red -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: yellow -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1368000000, Alarm: red -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: yellow -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1371600000, Alarm: red -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: yellow -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1378800000, Alarm: red -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: yellow -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1382400000, Alarm: red -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: yellow -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1386000000, Alarm: red -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: yellow -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1389600000, Alarm: red -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: yellow -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1393200000, Alarm: red -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1396800000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: yellow -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1400400000, Alarm: red -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: yellow -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1404000000, Alarm: red -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1407600000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1411200000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1414800000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: yellow -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1422000000, Alarm: red -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: yellow -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1425600000, Alarm: red -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1429200000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: yellow -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1458000000, Alarm: red -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: yellow -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1461600000, Alarm: red -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: yellow -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1465200000, Alarm: red -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: yellow -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1468800000, Alarm: red -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: yellow -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1472400000, Alarm: red -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: yellow -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1476000000, Alarm: red -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: yellow -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1479600000, Alarm: red -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: yellow -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1483200000, Alarm: red -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: yellow -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1486800000, Alarm: red -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: yellow -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1490400000, Alarm: red -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: yellow -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1494000000, Alarm: red -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: yellow -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1497600000, Alarm: red -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: yellow -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1501200000, Alarm: red -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: yellow -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1504800000, Alarm: red -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: yellow -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1508400000, Alarm: red -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1522800000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: yellow -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1526400000, Alarm: red -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: yellow -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1530000000, Alarm: red -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: yellow -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1537200000, Alarm: red -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: yellow -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1555200000, Alarm: red -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: yellow -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1558800000, Alarm: red -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: yellow -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1562400000, Alarm: red -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: yellow -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1566000000, Alarm: red -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: yellow -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1569600000, Alarm: red -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: yellow -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1573200000, Alarm: red -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: yellow -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1576800000, Alarm: red -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: yellow -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1580400000, Alarm: red -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: yellow -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1584000000, Alarm: red -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: yellow -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1587600000, Alarm: red -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: yellow -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1591200000, Alarm: red -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: yellow -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1594800000, Alarm: red -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: yellow -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1598400000, Alarm: red -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: yellow -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1602000000, Alarm: red -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: yellow -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1605600000, Alarm: red -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: yellow -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1609200000, Alarm: red -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1612800000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1616400000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: yellow -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1620000000, Alarm: red -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: yellow -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1630800000, Alarm: red -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: yellow -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1638000000, Alarm: red -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: yellow -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1645200000, Alarm: red -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: yellow -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1648800000, Alarm: red -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: yellow -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1652400000, Alarm: red -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: yellow -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1656000000, Alarm: red -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: yellow -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1659600000, Alarm: red -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: yellow -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1663200000, Alarm: red -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1666800000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: yellow -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1670400000, Alarm: red -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: yellow -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1674000000, Alarm: red -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: yellow -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1677600000, Alarm: red -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: yellow -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1684800000, Alarm: red -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: yellow -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1688400000, Alarm: red -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: yellow -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1692000000, Alarm: red -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: yellow -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1695600000, Alarm: red -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: yellow -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1699200000, Alarm: red -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: yellow -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1702800000, Alarm: red -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: yellow -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1706400000, Alarm: red -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: yellow -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1720800000, Alarm: red -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: yellow -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1724400000, Alarm: red -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: yellow -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1728000000, Alarm: red -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: yellow -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1731600000, Alarm: red -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: yellow -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1735200000, Alarm: red -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: yellow -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1738800000, Alarm: red -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: yellow -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1742400000, Alarm: red -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: yellow -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1749600000, Alarm: red -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: yellow -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1753200000, Alarm: red -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: yellow -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1756800000, Alarm: red -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: yellow -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1760400000, Alarm: red -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1764000000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: yellow -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1771200000, Alarm: red -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: yellow -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1778400000, Alarm: red -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: yellow -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1782000000, Alarm: red -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: yellow -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1818000000, Alarm: red -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: yellow -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1821600000, Alarm: red -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1825200000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: yellow -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1828800000, Alarm: red -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: yellow -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1832400000, Alarm: red -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: yellow -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1836000000, Alarm: red -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1839600000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1861200000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: yellow -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1908000000, Alarm: red -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: yellow -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1911600000, Alarm: red -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: yellow -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1915200000, Alarm: red -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: yellow -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1918800000, Alarm: red -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: yellow -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1922400000, Alarm: red -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: yellow -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1926000000, Alarm: red -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: yellow -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1929600000, Alarm: red -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: yellow -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1933200000, Alarm: red -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: yellow -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1936800000, Alarm: red -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: yellow -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1940400000, Alarm: red -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: yellow -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1944000000, Alarm: red -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: yellow -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1947600000, Alarm: red -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: yellow -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1951200000, Alarm: red -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: yellow -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1954800000, Alarm: red -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: yellow -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1962000000, Alarm: red -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: yellow -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1965600000, Alarm: red -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1969200000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: yellow -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1980000000, Alarm: red -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: yellow -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1983600000, Alarm: red -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: yellow -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1987200000, Alarm: red -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: yellow -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1990800000, Alarm: red -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: yellow -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1994400000, Alarm: red -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: yellow -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 1998000000, Alarm: red -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: yellow -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2001600000, Alarm: red -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2005200000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2008800000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2012400000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2016000000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: yellow -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2019600000, Alarm: red -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: yellow -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2023200000, Alarm: red -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: yellow -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2026800000, Alarm: red -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: yellow -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2030400000, Alarm: red -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: yellow -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2041200000, Alarm: red -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: yellow -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2044800000, Alarm: red -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: yellow -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2048400000, Alarm: red -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: yellow -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2062800000, Alarm: red -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: yellow -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2066400000, Alarm: red -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2070000000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2073600000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2084400000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: yellow -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2098800000, Alarm: red -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: yellow -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2113200000, Alarm: red -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: yellow -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2116800000, Alarm: red -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2120400000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: yellow -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2124000000, Alarm: red -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: yellow -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2127600000, Alarm: red -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: yellow -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2138400000, Alarm: red -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: yellow -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2145600000, Alarm: red -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: yellow -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2149200000, Alarm: red -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: yellow -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2152800000, Alarm: red -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: yellow -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2156400000, Alarm: red -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2163600000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: yellow -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2167200000, Alarm: red -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: yellow -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2170800000, Alarm: red -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: yellow -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2174400000, Alarm: red -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: yellow -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2178000000, Alarm: red -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: yellow -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2181600000, Alarm: red -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: yellow -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2185200000, Alarm: red -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: yellow -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2188800000, Alarm: red -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: yellow -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2192400000, Alarm: red -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: yellow -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2199600000, Alarm: red -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2206800000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: yellow -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2214000000, Alarm: red -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: yellow -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2217600000, Alarm: red -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2221200000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: yellow -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2224800000, Alarm: red -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2228400000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: yellow -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2232000000, Alarm: red -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: yellow -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2239200000, Alarm: red -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: yellow -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2242800000, Alarm: red -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2246400000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: yellow -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2250000000, Alarm: red -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: yellow -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2253600000, Alarm: red -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: yellow -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2257200000, Alarm: red -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2260800000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2264400000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2268000000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2271600000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2275200000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: yellow -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2278800000, Alarm: red -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: yellow -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2282400000, Alarm: red -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: yellow -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2286000000, Alarm: red -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2289600000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2293200000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2296800000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: yellow -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2300400000, Alarm: red -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2304000000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2307600000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: yellow -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2311200000, Alarm: red -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: yellow -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2314800000, Alarm: red -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: yellow -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2318400000, Alarm: red -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2329200000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2332800000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2336400000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2340000000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2343600000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2347200000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2350800000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2354400000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2358000000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2361600000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2365200000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2368800000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2372400000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2376000000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2379600000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: yellow -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2383200000, Alarm: red -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: yellow -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2386800000, Alarm: red -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: yellow -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2390400000, Alarm: red -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: yellow -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2394000000, Alarm: red -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2397600000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2401200000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: yellow -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2412000000, Alarm: red -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: yellow -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2415600000, Alarm: red -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: yellow -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2419200000, Alarm: red -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: yellow -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2422800000, Alarm: red -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2426400000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2430000000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2433600000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2437200000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2440800000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2444400000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2448000000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2451600000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: yellow -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2455200000, Alarm: red -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: yellow -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2458800000, Alarm: red -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: yellow -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2462400000, Alarm: red -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: yellow -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2466000000, Alarm: red -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: yellow -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2469600000, Alarm: red -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: yellow -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2473200000, Alarm: red -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2487600000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2491200000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2502000000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: yellow -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2509200000, Alarm: red -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: yellow -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2512800000, Alarm: red -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: yellow -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2516400000, Alarm: red -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: yellow -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2520000000, Alarm: red -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: yellow -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2523600000, Alarm: red -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2527200000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2530800000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2534400000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: yellow -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2538000000, Alarm: red -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: yellow -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2541600000, Alarm: red -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: yellow -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2545200000, Alarm: red -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2548800000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2552400000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: yellow -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2556000000, Alarm: red -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2559600000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2563200000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2566800000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2570400000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2592000000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: yellow -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2595600000, Alarm: red -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: yellow -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2599200000, Alarm: red -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: yellow -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2602800000, Alarm: red -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: yellow -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2606400000, Alarm: red -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: yellow -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2610000000, Alarm: red -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: yellow -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2613600000, Alarm: red -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: yellow -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2617200000, Alarm: red -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: yellow -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2620800000, Alarm: red -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: yellow -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2624400000, Alarm: red -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: yellow -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2631600000, Alarm: red -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: yellow -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2635200000, Alarm: red -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: yellow -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2638800000, Alarm: red -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: yellow -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2642400000, Alarm: red -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2646000000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2649600000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: yellow -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red -Timestamp: 2678400000, Alarm: red diff --git a/results/src/experiment3/figures/25_Jun_2026_155717.pdf b/results/src/experiment3/figures/25_Jun_2026_155717.pdf Binary files differdeleted file mode 100644 index 55215079..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_155717.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/25_Jun_2026_155814.pdf b/results/src/experiment3/figures/25_Jun_2026_155814.pdf Binary files differdeleted file mode 100644 index e73fa403..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_155814.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/25_Jun_2026_160523.pdf b/results/src/experiment3/figures/25_Jun_2026_160523.pdf Binary files differdeleted file mode 100644 index 42313b82..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_160523.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/25_Jun_2026_160832.pdf b/results/src/experiment3/figures/25_Jun_2026_160832.pdf Binary files differdeleted file mode 100644 index 94743383..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_160832.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/25_Jun_2026_161021.pdf b/results/src/experiment3/figures/25_Jun_2026_161021.pdf Binary files differdeleted file mode 100644 index 84101f7a..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_161021.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/25_Jun_2026_161052.pdf b/results/src/experiment3/figures/25_Jun_2026_161052.pdf Binary files differdeleted file mode 100644 index e99d8343..00000000 --- a/results/src/experiment3/figures/25_Jun_2026_161052.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_150806.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_150806.pdf Binary files differdeleted file mode 100644 index 07b4b216..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_150806.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151055.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151055.pdf Binary files differdeleted file mode 100644 index d4d5dfb0..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151055.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151204.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151204.pdf Binary files differdeleted file mode 100644 index 9ed93df9..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151204.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151245.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151245.pdf Binary files differdeleted file mode 100644 index 71e65c28..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151245.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151338.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151338.pdf Binary files differdeleted file mode 100644 index 43363460..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151338.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151430.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151430.pdf Binary files differdeleted file mode 100644 index 9d9e32a1..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_151430.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152255.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152255.pdf Binary files differdeleted file mode 100644 index 53096947..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152255.pdf +++ /dev/null diff --git a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152341.pdf b/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152341.pdf Binary files differdeleted file mode 100644 index e659026a..00000000 --- a/results/src/experiment3/figures/failure_amount_counted/25_Jun_2026_152341.pdf +++ /dev/null diff --git a/results/src/experiment3/plots.py b/results/src/experiment3/plots.py deleted file mode 100644 index 6dcf48f6..00000000 --- a/results/src/experiment3/plots.py +++ /dev/null @@ -1,62 +0,0 @@ -import numpy as np -import matplotlib.pyplot as plt -from matplotlib.pyplot import figure -import time -from time import strftime, gmtime - - -def get_name() -> str: - - curr = time.time() - s = strftime("%d_%b_%Y_%H%M%S", gmtime(curr)) - return s - - -width = 0.4 - - -kernels = ["Gmail", "WhatsApp", "Youtube", "Twitter", "Facebook"] - -x = np.arange(5) -values = (8.13, 4.15, 10.06, 16.75, 18.84) - -print(values) - -# Standard deviations (error values) -# errors = [np.std(poly), np.std(rbf), np.std(sigmoid)] -# errors2 = [np.std(baseline_poly), np.std(baseline_rbf), np.std(baseline_sigmoid)] -# print(errors) -# print(errors2) - -# Create bar chart with error bars -fig, ax = plt.subplots() -# plt.bar(x-0.22, values, width, yerr=errors, capsize=8, color='moccasin', edgecolor='black', label='Sunfish') -# plt.bar(x+0.22,values2, width, yerr=errors2, capsize=8, color='slategrey', edgecolor='black', label='OpenDC') - - -plt.bar( - x, - values, - width, - capsize=8, - color="thistle", - edgecolor="black", - label="Red + Yellow Alarms / Total Failures", -) - -# Add labels and title -plt.xlabel("Mean Failure Intensity (Trace)", fontweight="bold", size=10) -plt.ylabel("Failures Detection Rate", fontweight="bold", size=10) -loc = range(len(kernels)) -labels = kernels -plt.xticks(loc, kernels, size=10) -plt.grid(True, color="lightgray", linewidth=1, linestyle="-.") - - -plt.legend(fontsize=10, loc="upper left") -plt.yticks(size=10) -# ax.set_yscale("log") - -# Show plot -location: str = "figures/%s.pdf" % get_name() -plt.savefig(location, dpi=300, bbox_inches="tight") diff --git a/results/src/experiment3/stats b/results/src/experiment3/stats deleted file mode 100644 index a10be8fd..00000000 --- a/results/src/experiment3/stats +++ /dev/null @@ -1,19 +0,0 @@ -Facebook: (7293 yellows, 13831 reds) 112115 -Twitter: (4084 yellows, 6660 reds) 64128 -WhatsApp: (770 yellows, 1567 reds) 56286 -Gmail: (517 yellows, 1090 reds) 19769 -YouTube: (2162 yellows, 3397 reds) 55222 - -Mean Failure Intensity (Statistically it makes sense to use the mean) -Gmail: 0.5723787167449139 -WhatsApp: 0.5797 -Twitter: 0.65 -Facebook: 0.640 -YouTube: 0.621 - -Failure Detection Rate: -Facebook: 18.84% -Twitter: 16.75% -Gmail: 8.13% -WhatsApp: 4.15% -YouTube: 10.06% |
